123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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\Service;
- use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\IDBConnection;
- use OCP\Security\ICrypto;
- /**
- * Stores the mount config in the database
- */
- class DBConfigService {
- public const MOUNT_TYPE_ADMIN = 1;
- public const MOUNT_TYPE_PERSONAl = 2;
- public const APPLICABLE_TYPE_GLOBAL = 1;
- public const APPLICABLE_TYPE_GROUP = 2;
- public const APPLICABLE_TYPE_USER = 3;
- /**
- * @var IDBConnection
- */
- private $connection;
- /**
- * @var ICrypto
- */
- private $crypto;
- /**
- * DBConfigService constructor.
- *
- * @param IDBConnection $connection
- * @param ICrypto $crypto
- */
- public function __construct(IDBConnection $connection, ICrypto $crypto) {
- $this->connection = $connection;
- $this->crypto = $crypto;
- }
- /**
- * @param int $mountId
- * @return array
- */
- public function getMountById($mountId) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select(['mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'type'])
- ->from('external_mounts', 'm')
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $mounts = $this->getMountsFromQuery($query);
- if (count($mounts) > 0) {
- return $mounts[0];
- } else {
- return null;
- }
- }
- /**
- * Get all configured mounts
- *
- * @return array
- */
- public function getAllMounts() {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select(['mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'type'])
- ->from('external_mounts');
- return $this->getMountsFromQuery($query);
- }
- public function getMountsForUser($userId, $groupIds) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select(['m.mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'm.type'])
- ->from('external_mounts', 'm')
- ->innerJoin('m', 'external_applicable', 'a', $builder->expr()->eq('m.mount_id', 'a.mount_id'))
- ->where($builder->expr()->orX(
- $builder->expr()->andX( // global mounts
- $builder->expr()->eq('a.type', $builder->createNamedParameter(self::APPLICABLE_TYPE_GLOBAL, IQueryBuilder::PARAM_INT)),
- $builder->expr()->isNull('a.value')
- ),
- $builder->expr()->andX( // mounts for user
- $builder->expr()->eq('a.type', $builder->createNamedParameter(self::APPLICABLE_TYPE_USER, IQueryBuilder::PARAM_INT)),
- $builder->expr()->eq('a.value', $builder->createNamedParameter($userId))
- ),
- $builder->expr()->andX( // mounts for group
- $builder->expr()->eq('a.type', $builder->createNamedParameter(self::APPLICABLE_TYPE_GROUP, IQueryBuilder::PARAM_INT)),
- $builder->expr()->in('a.value', $builder->createNamedParameter($groupIds, IQueryBuilder::PARAM_STR_ARRAY))
- )
- ));
- return $this->getMountsFromQuery($query);
- }
- public function modifyMountsOnUserDelete(string $uid): void {
- $this->modifyMountsOnDelete($uid, self::APPLICABLE_TYPE_USER);
- }
- public function modifyMountsOnGroupDelete(string $gid): void {
- $this->modifyMountsOnDelete($gid, self::APPLICABLE_TYPE_GROUP);
- }
- protected function modifyMountsOnDelete(string $applicableId, int $applicableType): void {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select(['a.mount_id', $builder->func()->count('a.mount_id', 'count')])
- ->from('external_applicable', 'a')
- ->leftJoin('a', 'external_applicable', 'b', $builder->expr()->eq('a.mount_id', 'b.mount_id'))
- ->where($builder->expr()->andX(
- $builder->expr()->eq('b.type', $builder->createNamedParameter($applicableType, IQueryBuilder::PARAM_INT)),
- $builder->expr()->eq('b.value', $builder->createNamedParameter($applicableId))
- )
- )
- ->groupBy(['a.mount_id']);
- $stmt = $query->execute();
- $result = $stmt->fetchAll();
- $stmt->closeCursor();
- foreach ($result as $row) {
- if ((int)$row['count'] > 1) {
- $this->removeApplicable($row['mount_id'], $applicableType, $applicableId);
- } else {
- $this->removeMount($row['mount_id']);
- }
- }
- }
- /**
- * Get admin defined mounts
- *
- * @return array
- */
- public function getAdminMounts() {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->select(['mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'type'])
- ->from('external_mounts')
- ->where($builder->expr()->eq('type', $builder->expr()->literal(self::MOUNT_TYPE_ADMIN, IQueryBuilder::PARAM_INT)));
- return $this->getMountsFromQuery($query);
- }
- protected function getForQuery(IQueryBuilder $builder, $type, $value) {
- $query = $builder->select(['m.mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'm.type'])
- ->from('external_mounts', 'm')
- ->innerJoin('m', 'external_applicable', 'a', $builder->expr()->eq('m.mount_id', 'a.mount_id'))
- ->where($builder->expr()->eq('a.type', $builder->createNamedParameter($type, IQueryBuilder::PARAM_INT)));
- if (is_null($value)) {
- $query = $query->andWhere($builder->expr()->isNull('a.value'));
- } else {
- $query = $query->andWhere($builder->expr()->eq('a.value', $builder->createNamedParameter($value)));
- }
- return $query;
- }
- /**
- * Get mounts by applicable
- *
- * @param int $type any of the self::APPLICABLE_TYPE_ constants
- * @param string|null $value user_id, group_id or null for global mounts
- * @return array
- */
- public function getMountsFor($type, $value) {
- $builder = $this->connection->getQueryBuilder();
- $query = $this->getForQuery($builder, $type, $value);
- return $this->getMountsFromQuery($query);
- }
- /**
- * Get admin defined mounts by applicable
- *
- * @param int $type any of the self::APPLICABLE_TYPE_ constants
- * @param string|null $value user_id, group_id or null for global mounts
- * @return array
- */
- public function getAdminMountsFor($type, $value) {
- $builder = $this->connection->getQueryBuilder();
- $query = $this->getForQuery($builder, $type, $value);
- $query->andWhere($builder->expr()->eq('m.type', $builder->expr()->literal(self::MOUNT_TYPE_ADMIN, IQueryBuilder::PARAM_INT)));
- return $this->getMountsFromQuery($query);
- }
- /**
- * Get admin defined mounts for multiple applicable
- *
- * @param int $type any of the self::APPLICABLE_TYPE_ constants
- * @param string[] $values user_ids or group_ids
- * @return array
- */
- public function getAdminMountsForMultiple($type, array $values) {
- $builder = $this->connection->getQueryBuilder();
- $params = array_map(function ($value) use ($builder) {
- return $builder->createNamedParameter($value, IQueryBuilder::PARAM_STR);
- }, $values);
- $query = $builder->select(['m.mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'm.type'])
- ->from('external_mounts', 'm')
- ->innerJoin('m', 'external_applicable', 'a', $builder->expr()->eq('m.mount_id', 'a.mount_id'))
- ->where($builder->expr()->eq('a.type', $builder->createNamedParameter($type, IQueryBuilder::PARAM_INT)))
- ->andWhere($builder->expr()->in('a.value', $params));
- $query->andWhere($builder->expr()->eq('m.type', $builder->expr()->literal(self::MOUNT_TYPE_ADMIN, IQueryBuilder::PARAM_INT)));
- return $this->getMountsFromQuery($query);
- }
- /**
- * Get user defined mounts by applicable
- *
- * @param int $type any of the self::APPLICABLE_TYPE_ constants
- * @param string|null $value user_id, group_id or null for global mounts
- * @return array
- */
- public function getUserMountsFor($type, $value) {
- $builder = $this->connection->getQueryBuilder();
- $query = $this->getForQuery($builder, $type, $value);
- $query->andWhere($builder->expr()->eq('m.type', $builder->expr()->literal(self::MOUNT_TYPE_PERSONAl, IQueryBuilder::PARAM_INT)));
- return $this->getMountsFromQuery($query);
- }
- /**
- * Add a mount to the database
- *
- * @param string $mountPoint
- * @param string $storageBackend
- * @param string $authBackend
- * @param int $priority
- * @param int $type self::MOUNT_TYPE_ADMIN or self::MOUNT_TYPE_PERSONAL
- * @return int the id of the new mount
- */
- public function addMount($mountPoint, $storageBackend, $authBackend, $priority, $type) {
- if (!$priority) {
- $priority = 100;
- }
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->insert('external_mounts')
- ->values([
- 'mount_point' => $builder->createNamedParameter($mountPoint, IQueryBuilder::PARAM_STR),
- 'storage_backend' => $builder->createNamedParameter($storageBackend, IQueryBuilder::PARAM_STR),
- 'auth_backend' => $builder->createNamedParameter($authBackend, IQueryBuilder::PARAM_STR),
- 'priority' => $builder->createNamedParameter($priority, IQueryBuilder::PARAM_INT),
- 'type' => $builder->createNamedParameter($type, IQueryBuilder::PARAM_INT)
- ]);
- $query->execute();
- return $query->getLastInsertId();
- }
- /**
- * Remove a mount from the database
- *
- * @param int $mountId
- */
- public function removeMount($mountId) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->delete('external_mounts')
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- $query = $builder->delete('external_applicable')
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- $query = $builder->delete('external_config')
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- $query = $builder->delete('external_options')
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- }
- /**
- * @param int $mountId
- * @param string $newMountPoint
- */
- public function setMountPoint($mountId, $newMountPoint) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->update('external_mounts')
- ->set('mount_point', $builder->createNamedParameter($newMountPoint))
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- }
- /**
- * @param int $mountId
- * @param string $newAuthBackend
- */
- public function setAuthBackend($mountId, $newAuthBackend) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->update('external_mounts')
- ->set('auth_backend', $builder->createNamedParameter($newAuthBackend))
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)));
- $query->execute();
- }
- /**
- * @param int $mountId
- * @param string $key
- * @param string $value
- */
- public function setConfig($mountId, $key, $value) {
- if ($key === 'password') {
- $value = $this->encryptValue($value);
- }
- try {
- $builder = $this->connection->getQueryBuilder();
- $builder->insert('external_config')
- ->setValue('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT))
- ->setValue('key', $builder->createNamedParameter($key, IQueryBuilder::PARAM_STR))
- ->setValue('value', $builder->createNamedParameter($value, IQueryBuilder::PARAM_STR))
- ->execute();
- } catch (UniqueConstraintViolationException $e) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->update('external_config')
- ->set('value', $builder->createNamedParameter($value, IQueryBuilder::PARAM_STR))
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)))
- ->andWhere($builder->expr()->eq('key', $builder->createNamedParameter($key, IQueryBuilder::PARAM_STR)));
- $query->execute();
- }
- }
- /**
- * @param int $mountId
- * @param string $key
- * @param string $value
- */
- public function setOption($mountId, $key, $value) {
- try {
- $builder = $this->connection->getQueryBuilder();
- $builder->insert('external_options')
- ->setValue('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT))
- ->setValue('key', $builder->createNamedParameter($key, IQueryBuilder::PARAM_STR))
- ->setValue('value', $builder->createNamedParameter(json_encode($value), IQueryBuilder::PARAM_STR))
- ->execute();
- } catch (UniqueConstraintViolationException $e) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->update('external_options')
- ->set('value', $builder->createNamedParameter(json_encode($value), IQueryBuilder::PARAM_STR))
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)))
- ->andWhere($builder->expr()->eq('key', $builder->createNamedParameter($key, IQueryBuilder::PARAM_STR)));
- $query->execute();
- }
- }
- public function addApplicable($mountId, $type, $value) {
- try {
- $builder = $this->connection->getQueryBuilder();
- $builder->insert('external_applicable')
- ->setValue('mount_id', $builder->createNamedParameter($mountId))
- ->setValue('type', $builder->createNamedParameter($type))
- ->setValue('value', $builder->createNamedParameter($value))
- ->execute();
- } catch (UniqueConstraintViolationException $e) {
- // applicable exists already
- }
- }
- public function removeApplicable($mountId, $type, $value) {
- $builder = $this->connection->getQueryBuilder();
- $query = $builder->delete('external_applicable')
- ->where($builder->expr()->eq('mount_id', $builder->createNamedParameter($mountId, IQueryBuilder::PARAM_INT)))
- ->andWhere($builder->expr()->eq('type', $builder->createNamedParameter($type, IQueryBuilder::PARAM_INT)));
- if (is_null($value)) {
- $query = $query->andWhere($builder->expr()->isNull('value'));
- } else {
- $query = $query->andWhere($builder->expr()->eq('value', $builder->createNamedParameter($value, IQueryBuilder::PARAM_STR)));
- }
- $query->execute();
- }
- private function getMountsFromQuery(IQueryBuilder $query) {
- $result = $query->execute();
- $mounts = $result->fetchAll();
- $uniqueMounts = [];
- foreach ($mounts as $mount) {
- $id = $mount['mount_id'];
- if (!isset($uniqueMounts[$id])) {
- $uniqueMounts[$id] = $mount;
- }
- }
- $uniqueMounts = array_values($uniqueMounts);
- $mountIds = array_map(function ($mount) {
- return $mount['mount_id'];
- }, $uniqueMounts);
- $mountIds = array_values(array_unique($mountIds));
- $applicable = $this->getApplicableForMounts($mountIds);
- $config = $this->getConfigForMounts($mountIds);
- $options = $this->getOptionsForMounts($mountIds);
- return array_map(function ($mount, $applicable, $config, $options) {
- $mount['type'] = (int)$mount['type'];
- $mount['priority'] = (int)$mount['priority'];
- $mount['applicable'] = $applicable;
- $mount['config'] = $config;
- $mount['options'] = $options;
- return $mount;
- }, $uniqueMounts, $applicable, $config, $options);
- }
- /**
- * Get mount options from a table grouped by mount id
- *
- * @param string $table
- * @param string[] $fields
- * @param int[] $mountIds
- * @return array [$mountId => [['field1' => $value1, ...], ...], ...]
- */
- private function selectForMounts($table, array $fields, array $mountIds) {
- if (count($mountIds) === 0) {
- return [];
- }
- $builder = $this->connection->getQueryBuilder();
- $fields[] = 'mount_id';
- $placeHolders = array_map(function ($id) use ($builder) {
- return $builder->createPositionalParameter($id, IQueryBuilder::PARAM_INT);
- }, $mountIds);
- $query = $builder->select($fields)
- ->from($table)
- ->where($builder->expr()->in('mount_id', $placeHolders));
- $result = $query->execute();
- $rows = $result->fetchAll();
- $result->closeCursor();
- $result = [];
- foreach ($mountIds as $mountId) {
- $result[$mountId] = [];
- }
- foreach ($rows as $row) {
- if (isset($row['type'])) {
- $row['type'] = (int)$row['type'];
- }
- $result[$row['mount_id']][] = $row;
- }
- return $result;
- }
- /**
- * @param int[] $mountIds
- * @return array [$id => [['type' => $type, 'value' => $value], ...], ...]
- */
- public function getApplicableForMounts($mountIds) {
- return $this->selectForMounts('external_applicable', ['type', 'value'], $mountIds);
- }
- /**
- * @param int[] $mountIds
- * @return array [$id => ['key1' => $value1, ...], ...]
- */
- public function getConfigForMounts($mountIds) {
- $mountConfigs = $this->selectForMounts('external_config', ['key', 'value'], $mountIds);
- return array_map([$this, 'createKeyValueMap'], $mountConfigs);
- }
- /**
- * @param int[] $mountIds
- * @return array [$id => ['key1' => $value1, ...], ...]
- */
- public function getOptionsForMounts($mountIds) {
- $mountOptions = $this->selectForMounts('external_options', ['key', 'value'], $mountIds);
- $optionsMap = array_map([$this, 'createKeyValueMap'], $mountOptions);
- return array_map(function (array $options) {
- return array_map(function ($option) {
- return json_decode($option);
- }, $options);
- }, $optionsMap);
- }
- /**
- * @param array $keyValuePairs [['key'=>$key, 'value=>$value], ...]
- * @return array ['key1' => $value1, ...]
- */
- private function createKeyValueMap(array $keyValuePairs) {
- $decryptedPairts = array_map(function ($pair) {
- if ($pair['key'] === 'password') {
- $pair['value'] = $this->decryptValue($pair['value']);
- }
- return $pair;
- }, $keyValuePairs);
- $keys = array_map(function ($pair) {
- return $pair['key'];
- }, $decryptedPairts);
- $values = array_map(function ($pair) {
- return $pair['value'];
- }, $decryptedPairts);
- return array_combine($keys, $values);
- }
- private function encryptValue($value) {
- return $this->crypto->encrypt($value);
- }
- private function decryptValue($value) {
- try {
- return $this->crypto->decrypt($value);
- } catch (\Exception $e) {
- return $value;
- }
- }
- }
|