diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-12-05 18:04:06 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-12-05 18:04:06 +0100 |
commit | 89db2a027701503ea758380b20b10ca7f5a244d9 (patch) | |
tree | 954707203e58c2f6421a3ab34e90934ee68b5aaf /apps | |
parent | 5f66cb32502c88d7182c3dc5994ef733762fa665 (diff) | |
parent | 805be635fae19ecd3ce236b57aa54a9227508a95 (diff) | |
download | nextcloud-server-89db2a027701503ea758380b20b10ca7f5a244d9.tar.gz nextcloud-server-89db2a027701503ea758380b20b10ca7f5a244d9.zip |
Merge pull request #12523 from owncloud/port-11747
Only store user credentials when SMB_OC storage is enabled
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/smb_oc.php | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index e6f3aaf4052..a7c93d97fd1 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -13,12 +13,16 @@ require_once __DIR__ . '/../3rdparty/smb4php/smb.php'; class SMB_OC extends \OC\Files\Storage\SMB { private $username_as_share; + /** + * @param array $params + * @throws \Exception + */ public function __construct($params) { if (isset($params['host']) && \OC::$server->getSession()->exists('smb-credentials')) { $host=$params['host']; $this->username_as_share = ($params['username_as_share'] === 'true'); - $params_auth = \OC::$server->getSession()->get('smb-credentials'); + $params_auth = json_decode(\OC::$server->getCrypto()->decrypt(\OC::$server->getSession()->get('smb-credentials')), true); $user = \OC::$server->getSession()->get('loginname'); $password = $params_auth['password']; @@ -44,14 +48,35 @@ class SMB_OC extends \OC\Files\Storage\SMB { } } - public static function login( $params ) { - \OC::$server->getSession()->set('smb-credentials', $params); + + /** + * Intercepts the user credentials on login and stores them + * encrypted inside the session if SMB_OC storage is enabled. + * @param array $params + */ + public static function login($params) { + $mountpoints = \OC_Mount_Config::getAbsoluteMountPoints($params['uid']); + $mountpointClasses = array(); + foreach($mountpoints as $mountpoint) { + $mountpointClasses[$mountpoint['class']] = true; + } + if(isset($mountpointClasses['\OC\Files\Storage\SMB_OC'])) { + \OC::$server->getSession()->set('smb-credentials', \OC::$server->getCrypto()->encrypt(json_encode($params))); + } } + /** + * @param string $path + * @return boolean + */ public function isSharable($path) { return false; } + /** + * @param bool $isPersonal + * @return bool + */ public function test($isPersonal = true) { if ($isPersonal) { if ($this->stat('')) { |