* * @author Joas Schilling * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * 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 * along with this program. If not, see . * */ namespace OCA\Circles\Migration; use OCA\Circles\Model\DeprecatedCircle; use OCA\Circles\Model\DeprecatedMember; use OCP\IConfig; use OCP\IDBConnection; use OCP\Migration\IOutput; use OCP\Migration\IRepairStep; use OCP\Share; /** * Class ImportOwncloudCustomGroups * * @package OCA\Circles\Migration */ class ImportOwncloudCustomGroups implements IRepairStep { /** @var IDBConnection */ protected $connection; /** @var IConfig */ protected $config; /** @var array */ protected $circlesById = []; /** @var array */ protected $circlesByUri = []; /** @var array */ protected $circleHasAdmin = []; public function __construct(IDBConnection $connection, IConfig $config) { $this->connection = $connection; $this->config = $config; } /** * Returns the step's name * * @return string * @since 9.1.0 */ public function getName() { return 'Fix the share type of guest shares when migrating from ownCloud'; } /** * @param IOutput $output */ public function run(IOutput $output) { if (!$this->shouldRun()) { return; } $this->createCircles($output); $this->createMemberships($output); $this->updateShares($output); $this->config->setAppValue('circles', 'imported_custom_groups', 'true'); } /** * @param IOutput $output */ public function createCircles(IOutput $output) { $output->info('Creating circles'); $select = $this->connection->getQueryBuilder(); $select->select('*') ->from('custom_group') ->orderBy('group_id'); $insert = $this->connection->getQueryBuilder(); $insert->insert('circle_circles') ->values([ 'name' => $insert->createParameter('name'), 'type' => $insert->createParameter('type'), 'creation' => $insert->createFunction('NOW()'), ]); $output->startProgress(); $result = $select->execute(); while ($row = $result->fetch()) { $insert->setParameter('name', $row['display_name']) ->setParameter('type', DeprecatedCircle::CIRCLES_CLOSED); $insert->execute(); $output->advance(); $this->circlesById[$row['groud_id']] = $insert->getLastInsertId(); $this->circlesByUri[$row['uri']] = $this->circlesById[$row['groud_id']]; } $result->closeCursor(); $output->finishProgress(); } /** * @param IOutput $output */ public function createMemberships(IOutput $output) { $output->info('Creating memberships'); $select = $this->connection->getQueryBuilder(); $select->select('*') ->from('custom_group_member') ->orderBy('group_id'); $insert = $this->connection->getQueryBuilder(); $insert->insert('circle_members') ->values([ 'circle_id' => $insert->createParameter('circle_id'), 'user_id' => $insert->createParameter('user_id'), 'level' => $insert->createParameter('level'), 'status' => $insert->createParameter('status'), 'joined' => $insert->createFunction('NOW()'), ]); $output->startProgress(); $result = $select->execute(); while ($row = $result->fetch()) { if (!isset($this->circlesById[$row['group_id']])) { // Stray membership continue; } $level = (int) $row['role'] === 1 ? DeprecatedMember::LEVEL_OWNER : DeprecatedMember::LEVEL_MEMBER; if ($level === DeprecatedMember::LEVEL_OWNER) { if (isset($this->circleHasAdmin[$this->circlesById[$row['group_id']]])) { $level = DeprecatedMember::LEVEL_MODERATOR; } else { $this->circleHasAdmin[$this->circlesById[$row['group_id']]] = $row['user_id']; } } $insert->setParameter('circle_id', $this->circlesById[$row['group_id']]) ->setParameter('user_id', $row['user_id']) ->setParameter('level', $level) ->setParameter('status', 'Member'); $insert->execute(); $output->advance(); } $result->closeCursor(); $output->finishProgress(); } /** * Update shares * - type 7 instead of 1 * - with circle ID instead of `customgroup_` + group URI * * @param IOutput $output */ public function updateShares(IOutput $output) { $output->info('Update shares from custom groups to circles'); $select = $this->connection->getQueryBuilder(); $select->select('*') ->from('share') ->where($select->expr()->eq('share_type', $select->createNamedParameter(Share::SHARE_TYPE_GROUP))); $update = $this->connection->getQueryBuilder(); $update->update('share') ->set('share_type', $update->createParameter('type')) ->set('share_with', $update->createParameter('with')) ->where($update->expr()->eq('id', $update->createParameter('id'))); $output->startProgress(); $result = $select->execute(); while ($row = $result->fetch()) { $with = $row['share_with']; if (strpos($with, 'customgroup_') !== 0) { // Stray membership continue; } $groupUri = substr($with, strlen('customgroup_')); if ($groupUri === '' || !isset($this->circlesByUri[$groupUri])) { // Not a customgroup continue; } $update->setParameter('type', Share::SHARE_TYPE_CIRCLE) ->setParameter('with', $this->circlesByUri[$groupUri]) ->setParameter('id', $row['id']); $update->execute(); $output->advance(); } $result->closeCursor(); $output->finishProgress(); } protected function shouldRun() { $alreadyImported = $this->config->getAppValue('circles', 'imported_custom_groups', 'false'); return !$alreadyImported && $this->connection->tableExists('custom_group') && $this->connection->tableExists('custom_group_member'); } }