芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/uol/db/migrations/20220203145712_applications_tweaks_migration.php
. */ use Phinx\Migration\AbstractMigration; /** * Application Tweaks Migration * --------------------- * Add new aauth link table for storing authorised applications * Add more scopes and routes * Add more fields to oauth_clients table * @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace */ class ApplicationsTweaksMigration extends AbstractMigration { public function change() { // make sure the oauth_client table uses utf8. // without this change, for old CMS instances where it was using latin1, // it will cause issues creating FK in the new oauth_lkclientuser table. $this->execute(' ALTER TABLE `oauth_clients` CHARACTER SET utf8 COLLATE utf8_general_ci, CHANGE COLUMN `id` `id` VARCHAR(254) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, CHANGE COLUMN `secret` `secret` VARCHAR(254) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, CHANGE COLUMN `name` `name` VARCHAR(254) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL '); $this->table('oauth_lkclientuser', ['id' => 'lkClientUserId']) ->addColumn('clientId', 'string') ->addColumn('userId', 'integer') ->addColumn('approvedDate', 'datetime', ['null' => true, 'default' => null]) ->addColumn('approvedIp', 'string', ['null' => true, 'default' => null]) ->addIndex(['clientId', 'userId'], ['unique' => true]) ->addForeignKey('clientId', 'oauth_clients', 'id') ->addForeignKey('userId', 'user', 'userId') ->create(); $this->table('oauth_scopes') ->addColumn('useRegex', 'integer', ['limit' => \Phinx\Db\Adapter\MysqlAdapter::INT_TINY, 'default' => 0]) ->insert([ [ 'id' => 'design', 'description' => 'Access to Library, Layouts, Playlists and Widgets', 'useRegex' => 1 ], [ 'id' => 'designDelete', 'description' => 'Access to deleting content from Library, Layouts, Playlists and Widgets', 'useRegex' => 1 ], [ 'id' => 'displays', 'description' => 'Access to Displays and Display Groups', 'useRegex' => 1 ], [ 'id' => 'displaysDelete', 'description' => 'Access to deleting Displays and Display Groups', 'useRegex' => 0 ], [ 'id' => 'schedule', 'description' => 'Access to Scheduling', 'useRegex' => 1 ], [ 'id' => 'scheduleDelete', 'description' => 'Access to deleting Scheduled Events', 'useRegex' => 1 ], [ 'id' => 'datasets', 'description' => 'Access to DataSets', 'useRegex' => 1 ], [ 'id' => 'datasetsDelete', 'description' => 'Access to deleting DataSets', 'useRegex' => 1 ] ])->save(); $this->table('oauth_scope_routes') ->changeColumn('method', 'string', ['limit' => 50]) ->save(); $this->table('oauth_scope_routes') ->insert([ ['scopeId' => 'design', 'route' => '/library', 'method' => 'GET,POST,PUT'], ['scopeId' => 'design', 'route' => '/layout', 'method' => 'GET,POST,PUT'], ['scopeId' => 'design', 'route' => '/playlist', 'method' => 'GET,POST,PUT'], ['scopeId' => 'designDelete', 'route' => '/library', 'method' => 'DELETE'], ['scopeId' => 'designDelete', 'route' => '/layout', 'method' => 'DELETE'], ['scopeId' => 'designDelete', 'route' => '/playlist', 'method' => 'DELETE'], ['scopeId' => 'displays', 'route' => '/display', 'method' => 'GET,POST,PUT'], ['scopeId' => 'displays', 'route' => '/displaygroup', 'method' => 'GET,POST,PUT'], ['scopeId' => 'displaysDelete', 'route' => '/display/{id}', 'method' => 'DELETE'], ['scopeId' => 'displaysDelete', 'route' => '/displaygroup/{id}', 'method' => 'DELETE'], ['scopeId' => 'schedule', 'route' => '/schedule', 'method' => 'GET,POST,PUT'], ['scopeId' => 'scheduleDelete', 'route' => '/schedule', 'method' => 'DELETE'], ['scopeId' => 'datasets', 'route' => '/dataset', 'method' => 'GET,POST,PUT'], ['scopeId' => 'datasetsDelete', 'route' => '/dataset', 'method' => 'DELETE'] ])->save(); $this->table('oauth_clients') ->addColumn('description', 'string', ['limit' => 254, 'null' => true, 'default' => null]) ->addColumn('logo', 'string', ['limit' => 254, 'null' => true, 'default' => null]) ->addColumn('coverImage', 'string', ['limit' => 254, 'null' => true, 'default' => null]) ->addColumn('companyName', 'string', ['limit' => 254, 'null' => true, 'default' => null]) ->addColumn('termsUrl', 'string', ['limit' => 254, 'null' => true, 'default' => null]) ->addColumn('privacyUrl', 'string', ['limit' => 254, 'null' => true, 'default' => null]) ->save(); } }