2015-08-13 00:13:27 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-08-13 00:13:27 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_External\Lib\Backend;
|
|
|
|
|
|
|
|
use \OCP\IL10N;
|
|
|
|
use \OCA\Files_External\Lib\Backend\Backend;
|
|
|
|
use \OCA\Files_External\Lib\DefinitionParameter;
|
|
|
|
use \OCA\Files_External\Lib\Auth\AuthMechanism;
|
|
|
|
use \OCA\Files_External\Service\BackendService;
|
2015-09-17 02:24:01 +03:00
|
|
|
use \OCA\Files_External\Lib\StorageConfig;
|
2015-09-01 12:25:33 +03:00
|
|
|
use \OCA\Files_External\Lib\LegacyDependencyCheckPolyfill;
|
2015-08-13 00:13:27 +03:00
|
|
|
|
|
|
|
use \OCA\Files_External\Lib\Auth\Password\Password;
|
2015-08-24 18:32:44 +03:00
|
|
|
use OCP\IUser;
|
2015-08-13 00:13:27 +03:00
|
|
|
|
|
|
|
class SMB extends Backend {
|
|
|
|
|
2015-09-01 12:25:33 +03:00
|
|
|
use LegacyDependencyCheckPolyfill;
|
|
|
|
|
2015-08-13 00:13:27 +03:00
|
|
|
public function __construct(IL10N $l, Password $legacyAuth) {
|
|
|
|
$this
|
|
|
|
->setIdentifier('smb')
|
|
|
|
->addIdentifierAlias('\OC\Files\Storage\SMB') // legacy compat
|
2016-04-14 01:18:07 +03:00
|
|
|
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
|
2015-08-13 00:13:27 +03:00
|
|
|
->setText($l->t('SMB / CIFS'))
|
|
|
|
->addParameters([
|
|
|
|
(new DefinitionParameter('host', $l->t('Host'))),
|
|
|
|
(new DefinitionParameter('share', $l->t('Share'))),
|
|
|
|
(new DefinitionParameter('root', $l->t('Remote subfolder')))
|
|
|
|
->setFlag(DefinitionParameter::FLAG_OPTIONAL),
|
2015-08-21 12:30:42 +03:00
|
|
|
(new DefinitionParameter('domain', $l->t('Domain')))
|
|
|
|
->setFlag(DefinitionParameter::FLAG_OPTIONAL),
|
2015-08-13 00:13:27 +03:00
|
|
|
])
|
|
|
|
->addAuthScheme(AuthMechanism::SCHEME_PASSWORD)
|
|
|
|
->setLegacyAuthMechanism($legacyAuth)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2015-08-21 12:30:42 +03:00
|
|
|
/**
|
|
|
|
* @param StorageConfig $storage
|
2015-08-24 18:32:44 +03:00
|
|
|
* @param IUser $user
|
2015-08-21 12:30:42 +03:00
|
|
|
*/
|
2015-08-24 18:32:44 +03:00
|
|
|
public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
|
2015-08-21 12:30:42 +03:00
|
|
|
$user = $storage->getBackendOption('user');
|
|
|
|
if ($domain = $storage->getBackendOption('domain')) {
|
|
|
|
$storage->setBackendOption('user', $domain.'\\'.$user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-13 00:13:27 +03:00
|
|
|
}
|