9 changed files with 156 additions and 3 deletions
-
1apps/files_external/appinfo/application.php
-
7apps/files_external/appinfo/routes.php
-
10apps/files_external/controller/ajaxcontroller.php
-
27apps/files_external/js/settings.js
-
85apps/files_external/lib/auth/password/globalauth.php
-
4apps/files_external/lib/failedcache.php
-
4apps/files_external/personal.php
-
4apps/files_external/settings.php
-
17apps/files_external/templates/settings.php
@ -0,0 +1,85 @@ |
|||
<?php |
|||
/** |
|||
* @author Robin Appelman <icewind@owncloud.com> |
|||
* |
|||
* @copyright Copyright (c) 2015, ownCloud, Inc. |
|||
* @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\Auth\Password; |
|||
|
|||
use OCA\Files_External\Lib\Auth\IUserProvided; |
|||
use OCA\Files_External\Lib\DefinitionParameter; |
|||
use OCA\Files_External\Service\BackendService; |
|||
use OCP\IL10N; |
|||
use OCP\IUser; |
|||
use OCA\Files_External\Lib\Auth\AuthMechanism; |
|||
use OCA\Files_External\Lib\StorageConfig; |
|||
use OCP\Security\ICredentialsManager; |
|||
use OCP\Files\Storage; |
|||
use OCA\Files_External\Lib\InsufficientDataForMeaningfulAnswerException; |
|||
|
|||
/** |
|||
* Global Username and Password |
|||
*/ |
|||
class GlobalAuth extends AuthMechanism { |
|||
|
|||
const CREDENTIALS_IDENTIFIER = 'password::global'; |
|||
|
|||
/** @var ICredentialsManager */ |
|||
protected $credentialsManager; |
|||
|
|||
public function __construct(IL10N $l, ICredentialsManager $credentialsManager) { |
|||
$this->credentialsManager = $credentialsManager; |
|||
|
|||
$this |
|||
->setIdentifier('password::global') |
|||
->setVisibility(BackendService::VISIBILITY_DEFAULT) |
|||
->setScheme(self::SCHEME_PASSWORD) |
|||
->setText($l->t('Global Credentails')); |
|||
} |
|||
|
|||
public function getAuth($uid) { |
|||
$auth = $this->credentialsManager->retrieve($uid, self::CREDENTIALS_IDENTIFIER); |
|||
if (!is_array($auth)) { |
|||
return []; |
|||
} else { |
|||
return $auth; |
|||
} |
|||
} |
|||
|
|||
public function saveAuth($uid, $user, $password) { |
|||
$this->credentialsManager->store($uid, self::CREDENTIALS_IDENTIFIER, [ |
|||
'user' => $user, |
|||
'password' => $password |
|||
]); |
|||
} |
|||
|
|||
public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|||
if ($storage->getType() === StorageConfig::MOUNT_TYPE_ADMIN) { |
|||
$uid = ''; |
|||
} else { |
|||
$uid = $user->getUID(); |
|||
} |
|||
$credentials = $this->credentialsManager->retrieve($uid, self::CREDENTIALS_IDENTIFIER); |
|||
|
|||
if (is_array($credentials)) { |
|||
$storage->setBackendOption('user', $credentials['user']); |
|||
$storage->setBackendOption('password', $credentials['password']); |
|||
} |
|||
} |
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue