2018-06-07 07:31:39 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2024-06-06 03:55:47 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-06-07 07:31:39 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\Files_External\Lib\Auth\PublicKey;
|
|
|
|
|
|
2019-11-22 14:52:10 -05:00
|
|
|
use OCA\Files_External\Lib\Auth\AuthMechanism;
|
|
|
|
|
use OCA\Files_External\Lib\DefinitionParameter;
|
|
|
|
|
use OCA\Files_External\Lib\StorageConfig;
|
|
|
|
|
use OCP\IConfig;
|
|
|
|
|
use OCP\IL10N;
|
2018-06-07 07:31:39 -04:00
|
|
|
use OCP\IUser;
|
2019-11-22 14:52:10 -05:00
|
|
|
use phpseclib\Crypt\RSA as RSACrypt;
|
2018-06-07 07:31:39 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* RSA public key authentication
|
|
|
|
|
*/
|
|
|
|
|
class RSAPrivateKey extends AuthMechanism {
|
|
|
|
|
|
|
|
|
|
/** @var IConfig */
|
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
|
|
public function __construct(IL10N $l, IConfig $config) {
|
|
|
|
|
$this->config = $config;
|
|
|
|
|
|
|
|
|
|
$this
|
|
|
|
|
->setIdentifier('publickey::rsa_private')
|
|
|
|
|
->setScheme(self::SCHEME_PUBLICKEY)
|
|
|
|
|
->setText($l->t('RSA private key'))
|
|
|
|
|
->addParameters([
|
2024-02-13 08:37:09 -05:00
|
|
|
new DefinitionParameter('user', $l->t('Login')),
|
2018-06-07 07:31:39 -04:00
|
|
|
(new DefinitionParameter('password', $l->t('Password')))
|
|
|
|
|
->setFlag(DefinitionParameter::FLAG_OPTIONAL)
|
|
|
|
|
->setType(DefinitionParameter::VALUE_PASSWORD),
|
|
|
|
|
new DefinitionParameter('private_key', $l->t('Private key')),
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-28 12:15:01 -04:00
|
|
|
/**
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2024-03-28 11:13:19 -04:00
|
|
|
public function manipulateStorageConfig(StorageConfig &$storage, ?IUser $user = null) {
|
2018-06-07 07:31:39 -04:00
|
|
|
$auth = new RSACrypt();
|
|
|
|
|
$auth->setPassword($this->config->getSystemValue('secret', ''));
|
|
|
|
|
if (!$auth->loadKey($storage->getBackendOption('private_key'))) {
|
2022-12-05 09:26:36 -05:00
|
|
|
// Add fallback routine for a time where secret was not enforced to be exists
|
2022-12-05 05:28:52 -05:00
|
|
|
$auth->setPassword('');
|
|
|
|
|
if (!$auth->loadKey($storage->getBackendOption('private_key'))) {
|
|
|
|
|
throw new \RuntimeException('unable to load private key');
|
|
|
|
|
}
|
2018-06-07 07:31:39 -04:00
|
|
|
}
|
|
|
|
|
$storage->setBackendOption('public_key_auth', $auth);
|
|
|
|
|
}
|
|
|
|
|
}
|