-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move files_external mount config to the database #20370
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,222 @@ | ||
<database> | ||
<name>*dbname*</name> | ||
<create>true</create> | ||
<overwrite>false</overwrite> | ||
<charset>utf8</charset> | ||
<table> | ||
<name>*dbprefix*external_mounts</name> | ||
<declaration> | ||
<field> | ||
<name>mount_id</name> | ||
<type>integer</type> | ||
<default>0</default> | ||
<notnull>true</notnull> | ||
<autoincrement>1</autoincrement> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
<name>mount_point</name> | ||
<type>text</type> | ||
<length>128</length> | ||
<notnull>true</notnull> | ||
</field> | ||
<field> | ||
<name>storage_backend</name> | ||
<type>text</type> | ||
<length>64</length> | ||
<notnull>true</notnull> | ||
</field> | ||
<field> | ||
<name>auth_backend</name> | ||
<type>text</type> | ||
<length>64</length> | ||
<notnull>true</notnull> | ||
</field> | ||
<field> | ||
<name>priority</name> | ||
<type>integer</type> | ||
<default>100</default> | ||
<length>4</length> | ||
<notnull>true</notnull> | ||
</field> | ||
<!-- admin = 1, personal = 2--> | ||
<field> | ||
<name>type</name> | ||
<type>integer</type> | ||
<length>4</length> | ||
<notnull>true</notnull> | ||
</field> | ||
</declaration> | ||
</table> | ||
<table> | ||
<name>*dbprefix*external_applicable</name> | ||
<declaration> | ||
<field> | ||
<name>applicable_id</name> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. id |
||
<type>integer</type> | ||
<default>0</default> | ||
<notnull>true</notnull> | ||
<autoincrement>1</autoincrement> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
<!--foreign key: external_mounts.mount_id--> | ||
<name>mount_id</name> | ||
<type>integer</type> | ||
<notnull>true</notnull> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
<!-- possible mount types: global = 1, group = 2, user = 3 --> | ||
<name>type</name> | ||
<type>integer</type> | ||
<length>4</length> | ||
<notnull>true</notnull> | ||
</field> | ||
<field> | ||
<!-- user_id, group_id or null for global mounts --> | ||
<name>value</name> | ||
<type>text</type> | ||
<length>64</length> | ||
</field> | ||
<index> | ||
<name>mount_id_app_index</name> | ||
<field> | ||
<name>mount_id</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
<index> | ||
<name>applicable_value_index</name> | ||
<field> | ||
<name>type</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
<field> | ||
<name>value</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
<index> | ||
<name>applicable_value_mount_index</name> | ||
<unique>true</unique> | ||
<field> | ||
<name>type</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
<field> | ||
<name>value</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
<field> | ||
<name>mount_id</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
</declaration> | ||
</table> | ||
<table> | ||
<name>*dbprefix*external_config</name> | ||
<declaration> | ||
<field> | ||
<name>config_id</name> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. id |
||
<type>integer</type> | ||
<default>0</default> | ||
<notnull>true</notnull> | ||
<autoincrement>1</autoincrement> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
<!--foreign key: external_mounts.mount_id--> | ||
<name>mount_id</name> | ||
<type>integer</type> | ||
<notnull>true</notnull> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
<name>key</name> | ||
<type>text</type> | ||
<notnull>true</notnull> | ||
<length>64</length> | ||
</field> | ||
<field> | ||
<name>value</name> | ||
<type>text</type> | ||
<notnull>true</notnull> | ||
<length>4096</length> | ||
</field> | ||
|
||
<index> | ||
<name>config_mount_id</name> | ||
<field> | ||
<name>mount_id</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
<index> | ||
<name>config_mount_key</name> | ||
<unique>true</unique> | ||
<field> | ||
<name>mount_id</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
<field> | ||
<name>key</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
</declaration> | ||
</table> | ||
<table> | ||
<name>*dbprefix*external_options</name> | ||
<declaration> | ||
<field> | ||
<name>option_id</name> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. id |
||
<type>integer</type> | ||
<default>0</default> | ||
<notnull>true</notnull> | ||
<autoincrement>1</autoincrement> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe add a comment There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
<!--foreign key: external_mounts.mount_id--> | ||
<name>mount_id</name> | ||
<type>integer</type> | ||
<notnull>true</notnull> | ||
<length>6</length> | ||
</field> | ||
<field> | ||
<name>key</name> | ||
<type>text</type> | ||
<notnull>true</notnull> | ||
<length>64</length> | ||
</field> | ||
<field> | ||
<name>value</name> | ||
<type>text</type> | ||
<notnull>true</notnull> | ||
<length>256</length> | ||
</field> | ||
|
||
<index> | ||
<name>option_mount_id</name> | ||
<field> | ||
<name>mount_id</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
<index> | ||
<name>option_mount_key</name> | ||
<unique>true</unique> | ||
<field> | ||
<name>mount_id</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
<field> | ||
<name>key</name> | ||
<sorting>ascending</sorting> | ||
</field> | ||
</index> | ||
</declaration> | ||
</table> | ||
</database> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
/** | ||
* @author Robin Appelman <[email protected]> | ||
* | ||
* @copyright Copyright (c) 2015, ownCloud, Inc. | ||
* @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/> | ||
* | ||
*/ | ||
|
||
$installedVersion = \OC::$server->getConfig()->getAppValue('files_external', 'installed_version'); | ||
|
||
$app = new \OCA\Files_external\Appinfo\Application(); | ||
|
||
// Migration to db config | ||
if (version_compare($installedVersion, '0.5.0', '<')) { | ||
$migrator = $app->getContainer()->query('OCA\Files_external\Migration\StorageMigrator'); | ||
$migrator->migrateGlobal(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id is enough
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer to keep the column names a bit more descriptive to make the queries more readable