2020-11-10 09:33:29 +01:00
|
|
|
<?php
|
2020-11-10 15:43:34 +01:00
|
|
|
|
2020-11-10 09:33:29 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-05-24 19:43:47 +02:00
|
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-11-10 09:33:29 +01:00
|
|
|
*/
|
|
|
|
namespace OC\Core\Migrations;
|
|
|
|
|
|
|
|
use Closure;
|
|
|
|
use OCP\DB\ISchemaWrapper;
|
2021-01-12 10:20:12 +01:00
|
|
|
use OCP\DB\Types;
|
2020-11-10 09:33:29 +01:00
|
|
|
use OCP\IDBConnection;
|
|
|
|
use OCP\Migration\IOutput;
|
|
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
|
|
|
|
|
|
class Version20000Date20201109081918 extends SimpleMigrationStep {
|
2023-06-23 22:50:49 +03:30
|
|
|
public function __construct(
|
|
|
|
protected IDBConnection $connection,
|
|
|
|
) {
|
2020-11-10 09:33:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IOutput $output
|
|
|
|
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
|
|
|
* @param array $options
|
|
|
|
* @return null|ISchemaWrapper
|
|
|
|
*/
|
|
|
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
|
|
|
/** @var ISchemaWrapper $schema */
|
|
|
|
$schema = $schemaClosure();
|
|
|
|
|
2020-11-12 15:03:21 +01:00
|
|
|
if (!$schema->hasTable('storages_credentials')) {
|
|
|
|
$table = $schema->createTable('storages_credentials');
|
2021-01-03 15:28:31 +01:00
|
|
|
$table->addColumn('id', Types::BIGINT, [
|
2020-11-12 15:03:21 +01:00
|
|
|
'autoincrement' => true,
|
|
|
|
'notnull' => true,
|
|
|
|
'length' => 64,
|
|
|
|
]);
|
2021-01-03 15:28:31 +01:00
|
|
|
$table->addColumn('user', Types::STRING, [
|
2020-11-12 15:03:21 +01:00
|
|
|
'notnull' => false,
|
|
|
|
'length' => 64,
|
|
|
|
]);
|
2021-01-03 15:28:31 +01:00
|
|
|
$table->addColumn('identifier', Types::STRING, [
|
2020-11-12 15:03:21 +01:00
|
|
|
'notnull' => true,
|
|
|
|
'length' => 64,
|
|
|
|
]);
|
2021-01-03 15:28:31 +01:00
|
|
|
$table->addColumn('credentials', Types::TEXT, [
|
2020-11-12 15:03:21 +01:00
|
|
|
'notnull' => false,
|
|
|
|
]);
|
|
|
|
$table->setPrimaryKey(['id']);
|
|
|
|
$table->addUniqueIndex(['user', 'identifier'], 'stocred_ui');
|
|
|
|
$table->addIndex(['user'], 'stocred_user');
|
|
|
|
}
|
2020-11-10 09:33:29 +01:00
|
|
|
|
|
|
|
return $schema;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
|
|
|
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {
|
|
|
|
if (!$this->connection->tableExists('credentials')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$query->select('*')
|
|
|
|
->from('credentials');
|
|
|
|
|
|
|
|
$insert = $this->connection->getQueryBuilder();
|
|
|
|
$insert->insert('storages_credentials')
|
2020-11-12 15:03:21 +01:00
|
|
|
->setValue('user', $insert->createParameter('user'))
|
|
|
|
->setValue('identifier', $insert->createParameter('identifier'))
|
|
|
|
->setValue('credentials', $insert->createParameter('credentials'));
|
2020-11-10 09:33:29 +01:00
|
|
|
|
|
|
|
$result = $query->execute();
|
|
|
|
while ($row = $result->fetch()) {
|
|
|
|
$insert->setParameter('user', (string)$row['user'])
|
|
|
|
->setParameter('identifier', (string)$row['identifier'])
|
|
|
|
->setParameter('credentials', (string)$row['credentials']);
|
|
|
|
$insert->execute();
|
|
|
|
}
|
|
|
|
$result->closeCursor();
|
|
|
|
}
|
|
|
|
}
|