/ansel/migration/9_ansel_upgrade_sqlng.php
https://github.com/ewandor/horde · PHP · 198 lines · 159 code · 14 blank · 25 comment · 0 complexity · 840d2fc8dea2329b346c8898af4182ad MD5 · raw file
- <?php
- /**
- * @author Michael J Rubinsky <mrubinsk@horde.org>
- * @category Horde
- * @license http://www.horde.org/licenses/gpl GPL
- * @package Ansel
- */
- /**
- * Adds tables for the Sqlng share driver.
- *
- * Copyright 2011-2012 Horde LLC (http://www.horde.org/)
- *
- * See the enclosed file COPYING for license information (GPL). If you
- * did not receive this file, see http://www.horde.org/licenses/gpl.
- *
- * @author Michael J Rubinsky <mrubinsk@horde.org>
- * @category Horde
- * @license http://www.horde.org/licenses/gpl GPL
- * @package Ansel
- */
- class AnselUpgradeSqlng extends Horde_Db_Migration_Base
- {
- /**
- * Upgrade.
- */
- public function up()
- {
- $t = $this->createTable('ansel_sharesng', array('autoincrementKey' => 'share_id'));
- $t->column('share_name', 'string', array('limit' => 255, 'null' => false));
- $t->column('share_owner', 'string', array('limit' => 255));
- $t->column('share_flags', 'integer', array('default' => 0, 'null' => false));
- $t->column('share_parents', 'text');
- $t->column('perm_creator_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_creator_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_creator_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_creator_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_default_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_default_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_default_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_default_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_guest_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_guest_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_guest_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_guest_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false));
- $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false));
- $t->column('attribute_desc', 'string', array('limit' => 255));
- $t->column('attribute_default', 'integer');
- $t->column('attribute_default_type', 'string', array('limit' => 6));
- $t->column('attribute_default_prettythumb', 'text');
- $t->column('attribute_style', 'text');
- $t->column('attribute_last_modified', 'integer');
- $t->column('attribute_date_created', 'integer');
- $t->column('attribute_images', 'integer', array('null' => false, 'default' => 0));
- $t->column('attribute_has_subgalleries', 'integer', array('null' => false, 'default' => 0));
- $t->column('attribute_slug', 'string', array('limit' => 255));
- $t->column('attribute_age', 'integer', array('null' => false, 'default' => 0));
- $t->column('attribute_download', 'string', array('limit' => 255));
- $t->column('attribute_passwd', 'string', array('limit' => 255));
- $t->column('attribute_faces', 'integer', array('null' => false, 'default' => 0));
- $t->column('attribute_view_mode', 'string', array('limit' => 255, 'default' => 'Normal', 'null' => false));
- $t->end();
- $this->addIndex('ansel_sharesng', array('share_name'));
- $this->addIndex('ansel_sharesng', array('share_owner'));
- $this->addIndex('ansel_sharesng', array('perm_creator_' . Horde_Perms::SHOW));
- $this->addIndex('ansel_sharesng', array('perm_creator_' . Horde_Perms::READ));
- $this->addIndex('ansel_sharesng', array('perm_creator_' . Horde_Perms::EDIT));
- $this->addIndex('ansel_sharesng', array('perm_creator_' . Horde_Perms::DELETE));
- $this->addIndex('ansel_sharesng', array('perm_default_' . Horde_Perms::SHOW));
- $this->addIndex('ansel_sharesng', array('perm_default_' . Horde_Perms::READ));
- $this->addIndex('ansel_sharesng', array('perm_default_' . Horde_Perms::EDIT));
- $this->addIndex('ansel_sharesng', array('perm_default_' . Horde_Perms::DELETE));
- $this->addIndex('ansel_sharesng', array('perm_guest_' . Horde_Perms::SHOW));
- $this->addIndex('ansel_sharesng', array('perm_guest_' . Horde_Perms::READ));
- $this->addIndex('ansel_sharesng', array('perm_guest_' . Horde_Perms::EDIT));
- $this->addIndex('ansel_sharesng', array('perm_guest_' . Horde_Perms::DELETE));
- $t = $this->createTable('ansel_sharesng_groups', array('autoincrementKey' => false));
- $t->column('share_id', 'integer', array('null' => false));
- $t->column('group_uid', 'string', array('limit' => 255, 'null' => false));
- $t->column('perm_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false));
- $t->end();
- $this->addIndex('ansel_sharesng_groups', array('share_id'));
- $this->addIndex('ansel_sharesng_groups', array('group_uid'));
- $this->addIndex('ansel_sharesng_groups', array('perm_' . Horde_Perms::SHOW));
- $this->addIndex('ansel_sharesng_groups', array('perm_' . Horde_Perms::READ));
- $this->addIndex('ansel_sharesng_groups', array('perm_' . Horde_Perms::EDIT));
- $this->addIndex('ansel_sharesng_groups', array('perm_' . Horde_Perms::DELETE));
- $t = $this->createTable('ansel_sharesng_users', array('autoincrementKey' => false));
- $t->column('share_id', 'integer', array('null' => false));
- $t->column('user_uid', 'string', array('limit' => 255, 'null' => false));
- $t->column('perm_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false));
- $t->column('perm_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false));
- $t->end();
- $this->addIndex('ansel_sharesng_users', array('share_id'));
- $this->addIndex('ansel_sharesng_users', array('user_uid'));
- $this->addIndex('ansel_sharesng_users', array('perm_' . Horde_Perms::SHOW));
- $this->addIndex('ansel_sharesng_users', array('perm_' . Horde_Perms::READ));
- $this->addIndex('ansel_sharesng_users', array('perm_' . Horde_Perms::EDIT));
- $this->addIndex('ansel_sharesng_users', array('perm_' . Horde_Perms::DELETE));
- $this->dataUp();
- }
- /**
- * Downgrade
- */
- public function down()
- {
- $this->dropTable('ansel_sharesng');
- $this->dropTable('ansel_sharesng_groups');
- $this->dropTable('ansel_sharesng_users');
- }
- public function dataUp()
- {
- $whos = array('creator', 'default', 'guest');
- $perms = array(Horde_Perms::SHOW,
- Horde_Perms::READ,
- Horde_Perms::EDIT,
- Horde_Perms::DELETE);
- $sql = 'INSERT INTO ansel_sharesng (share_id, share_owner, share_parents, share_name, '
- . 'share_flags, attribute_name, attribute_desc, attribute_default, '
- . 'attribute_default_type, attribute_default_prettythumb, attribute_style, '
- . 'attribute_last_modified, attribute_date_created, attribute_images, '
- . 'attribute_has_subgalleries, attribute_slug, attribute_age, '
- . 'attribute_download, attribute_passwd, attribute_faces, attribute_view_mode';
- $count = 0;
- foreach ($whos as $who) {
- foreach ($perms as $perm) {
- $sql .= ', perm_' . $who . '_' . $perm;
- $count++;
- }
- }
- $sql .= ') VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?' . str_repeat(', ?', $count) . ')';
- foreach ($this->select('SELECT * FROM ansel_shares') as $share) {
- $values = array($share['share_id'],
- $share['share_owner'],
- $share['share_parents'],
- $share['share_name'],
- $share['share_flags'],
- $share['attribute_name'],
- $share['attribute_desc'],
- $share['attribute_default'],
- $share['attribute_default_type'],
- $share['attribute_default_prettythumb'],
- $share['attribute_style'],
- $share['attribute_last_modified'],
- $share['attribute_date_created'],
- $share['attribute_images'],
- $share['attribute_has_subgalleries'],
- $share['attribute_slug'],
- $share['attribute_age'],
- $share['attribute_download'],
- $share['attribute_passwd'],
- $share['attribute_faces'],
- $share['attribute_view_mode']
- );
- foreach ($whos as $who) {
- foreach ($perms as $perm) {
- $values[] = (bool)($share['perm_' . $who] & $perm);
- }
- }
- $this->insert($sql, $values, null, 'share_id', $share['share_id']);
- }
- foreach (array('user', 'group') as $what) {
- $sql = 'INSERT INTO ansel_sharesng_' . $what . 's (share_id, ' . $what . '_uid';
- $count = 0;
- foreach ($perms as $perm) {
- $sql .= ', perm_' . $perm;
- $count++;
- }
- $sql .= ') VALUES (?, ?' . str_repeat(', ?', $count) . ')';
- foreach ($this->select('SELECT * FROM ansel_shares_' . $what . 's') as $share) {
- $values = array($share['share_id'],
- $share[$what . '_uid']);
- foreach ($perms as $perm) {
- $values[] = (bool)($share['perm'] & $perm);
- }
- $this->insert($sql, $values);
- }
- }
- }
- }