2015-08-13 00:20:08 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-08-13 00:20:08 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-08-13 00:20:08 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_External\Lib\Backend;
|
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_External\Lib\Auth\AuthMechanism;
|
|
|
|
use OCA\Files_External\Lib\Auth\PublicKey\RSA;
|
|
|
|
use OCA\Files_External\Lib\DefinitionParameter;
|
|
|
|
use OCP\IL10N;
|
2015-08-13 00:20:08 +03:00
|
|
|
|
|
|
|
class SFTP_Key extends Backend {
|
2015-09-17 19:01:55 +03:00
|
|
|
public function __construct(IL10N $l, RSA $legacyAuth, SFTP $sftpBackend) {
|
2015-08-13 00:20:08 +03:00
|
|
|
$this
|
|
|
|
->setIdentifier('\OC\Files\Storage\SFTP_Key')
|
2016-04-14 01:18:07 +03:00
|
|
|
->setStorageClass('\OCA\Files_External\Lib\Storage\SFTP')
|
2015-09-17 19:01:55 +03:00
|
|
|
->setText($l->t('SFTP with secret key login'))
|
2015-08-13 00:20:08 +03:00
|
|
|
->addParameters([
|
2018-01-27 01:46:40 +03:00
|
|
|
new DefinitionParameter('host', $l->t('Host')),
|
2015-08-13 00:20:08 +03:00
|
|
|
(new DefinitionParameter('root', $l->t('Remote subfolder')))
|
|
|
|
->setFlag(DefinitionParameter::FLAG_OPTIONAL),
|
|
|
|
])
|
|
|
|
->addAuthScheme(AuthMechanism::SCHEME_PUBLICKEY)
|
|
|
|
->setLegacyAuthMechanism($legacyAuth)
|
2015-09-17 19:01:55 +03:00
|
|
|
->deprecateTo($sftpBackend)
|
2015-08-13 00:20:08 +03:00
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|