mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
503 B
18 lines
503 B
from terminal.models import default_storage
|
|
from .base import BaseStorageHandler
|
|
|
|
|
|
class FTPFileStorageHandler(BaseStorageHandler):
|
|
NAME = 'FTP'
|
|
|
|
def get_file_path(self, **kwargs):
|
|
return self.obj.filepath, self.obj.filepath
|
|
|
|
def find_local(self):
|
|
local_path = self.obj.filepath
|
|
# 去default storage中查找
|
|
if default_storage.exists(local_path):
|
|
url = default_storage.url(local_path)
|
|
return local_path, url
|
|
return None, None
|