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.
27 lines
605 B
27 lines
605 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 osfs
|
|
except ImportError:
|
|
_logger.debug('Cannot `import fs`.')
|
|
|
|
|
|
class FileStoreTask(osfs.OSFS):
|
|
|
|
_key = 'filestore'
|
|
_name = 'File Store'
|
|
_default_port = None
|
|
_hide_login = True
|
|
_hide_password = True
|
|
_hide_port = True
|
|
|
|
@staticmethod
|
|
def connect(location):
|
|
rootpath = location.filestore_rootpath or '/'
|
|
conn = FileStoreTask(rootpath)
|
|
return conn
|