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.
30 lines
763 B
30 lines
763 B
# coding: utf-8
|
|
# @ 2016 Florian DA COSTA @ Akretion
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
import logging
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
try:
|
|
from fs import sftpfs
|
|
except ImportError:
|
|
_logger.debug('Cannot `import fs`.')
|
|
|
|
|
|
class SftpTask(sftpfs.SFTPFS):
|
|
|
|
_key = 'sftp'
|
|
_name = 'SFTP'
|
|
_synchronize_type = None
|
|
_default_port = 22
|
|
_hide_login = False
|
|
_hide_password = False
|
|
_hide_port = False
|
|
|
|
@staticmethod
|
|
def connect(location):
|
|
connection_string = "{}:{}".format(location.address, location.port)
|
|
conn = SftpTask(connection=connection_string,
|
|
username=location.login,
|
|
password=location.password)
|
|
return conn
|