2008-07-25 08:26:05 +00:00
|
|
|
<?php
|
|
|
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# This file is part of InDefero, an open source project management application.
|
|
|
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
|
|
|
#
|
|
|
|
# InDefero is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# InDefero 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup of a clean InDefero.
|
|
|
|
*
|
|
|
|
* It creates all the tables for the application.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function IDF_Migrations_Install_setup($params=null)
|
|
|
|
{
|
|
|
|
$models = array(
|
|
|
|
'IDF_Project',
|
|
|
|
'IDF_Tag',
|
|
|
|
'IDF_Issue',
|
|
|
|
'IDF_IssueComment',
|
|
|
|
'IDF_Conf',
|
2008-08-03 22:42:05 +00:00
|
|
|
'IDF_Upload',
|
2008-08-13 16:26:36 +00:00
|
|
|
'IDF_Search_Occ',
|
2008-11-12 19:40:58 +00:00
|
|
|
'IDF_IssueFile',
|
2008-11-22 09:59:15 +00:00
|
|
|
'IDF_Commit',
|
2008-11-21 12:19:02 +00:00
|
|
|
'IDF_Timeline',
|
2008-11-22 22:51:23 +00:00
|
|
|
'IDF_WikiPage',
|
|
|
|
'IDF_WikiRevision',
|
2008-11-30 09:26:05 +00:00
|
|
|
'IDF_Review',
|
|
|
|
'IDF_Review_Patch',
|
2009-07-16 14:01:48 +00:00
|
|
|
'IDF_Review_Comment',
|
2008-11-30 09:26:05 +00:00
|
|
|
'IDF_Review_FileComment',
|
2009-01-14 22:05:52 +00:00
|
|
|
'IDF_Key',
|
2009-05-27 15:59:50 +00:00
|
|
|
'IDF_Scm_Cache_Git',
|
2010-05-06 08:27:08 +00:00
|
|
|
'IDF_Queue',
|
2010-05-17 08:29:00 +00:00
|
|
|
'IDF_Gconf',
|
2008-07-25 08:26:05 +00:00
|
|
|
);
|
|
|
|
$db = Pluf::db();
|
|
|
|
$schema = new Pluf_DB_Schema($db);
|
|
|
|
foreach ($models as $model) {
|
|
|
|
$schema->model = new $model();
|
|
|
|
$schema->createTables();
|
|
|
|
}
|
|
|
|
// Install the permissions
|
|
|
|
$perm = new Pluf_Permission();
|
|
|
|
$perm->name = 'Project membership';
|
|
|
|
$perm->code_name = 'project-member';
|
|
|
|
$perm->description = 'Permission given to project members.';
|
|
|
|
$perm->application = 'IDF';
|
|
|
|
$perm->create();
|
|
|
|
$perm = new Pluf_Permission();
|
|
|
|
$perm->name = 'Project ownership';
|
|
|
|
$perm->code_name = 'project-owner';
|
|
|
|
$perm->description = 'Permission given to project owners.';
|
|
|
|
$perm->application = 'IDF';
|
|
|
|
$perm->create();
|
2008-11-25 08:38:10 +00:00
|
|
|
$perm = new Pluf_Permission();
|
|
|
|
$perm->name = 'Project authorized users';
|
|
|
|
$perm->code_name = 'project-authorized-user';
|
|
|
|
$perm->description = 'Permission given to users allowed to access a project.';
|
|
|
|
$perm->application = 'IDF';
|
|
|
|
$perm->create();
|
2008-07-25 08:26:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function IDF_Migrations_Install_teardown($params=null)
|
|
|
|
{
|
|
|
|
$perm = Pluf_Permission::getFromString('IDF.project-member');
|
|
|
|
if ($perm) $perm->delete();
|
|
|
|
$perm = Pluf_Permission::getFromString('IDF.project-owner');
|
|
|
|
if ($perm) $perm->delete();
|
2008-11-25 08:38:10 +00:00
|
|
|
$perm = Pluf_Permission::getFromString('IDF.project-authorized-user');
|
|
|
|
if ($perm) $perm->delete();
|
2008-07-25 08:26:05 +00:00
|
|
|
$models = array(
|
2010-05-17 08:29:00 +00:00
|
|
|
'IDF_Gconf',
|
2010-05-06 08:27:08 +00:00
|
|
|
'IDF_Queue',
|
2009-05-27 15:59:50 +00:00
|
|
|
'IDF_Scm_Cache_Git',
|
2009-01-14 22:05:52 +00:00
|
|
|
'IDF_Key',
|
2008-11-30 09:26:05 +00:00
|
|
|
'IDF_Review_FileComment',
|
2009-07-16 08:04:58 +00:00
|
|
|
'IDF_Review_Comment',
|
2009-07-16 14:01:48 +00:00
|
|
|
'IDF_Review_Patch',
|
2008-11-30 09:26:05 +00:00
|
|
|
'IDF_Review',
|
2008-11-22 22:51:23 +00:00
|
|
|
'IDF_WikiRevision',
|
|
|
|
'IDF_WikiPage',
|
2008-11-21 12:19:02 +00:00
|
|
|
'IDF_Timeline',
|
|
|
|
'IDF_IssueFile',
|
2008-08-13 16:26:36 +00:00
|
|
|
'IDF_Search_Occ',
|
2008-08-03 22:42:05 +00:00
|
|
|
'IDF_Upload',
|
2008-07-25 08:26:05 +00:00
|
|
|
'IDF_Conf',
|
|
|
|
'IDF_IssueComment',
|
|
|
|
'IDF_Issue',
|
|
|
|
'IDF_Tag',
|
2008-11-22 09:59:15 +00:00
|
|
|
'IDF_Commit',
|
2008-07-25 08:26:05 +00:00
|
|
|
'IDF_Project',
|
|
|
|
);
|
|
|
|
$db = Pluf::db();
|
|
|
|
$schema = new Pluf_DB_Schema($db);
|
|
|
|
foreach ($models as $model) {
|
|
|
|
$schema->model = new $model();
|
|
|
|
$schema->dropTables();
|
|
|
|
}
|
|
|
|
}
|