1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php
$tables = array(
'users_quota_units' => "
user_id I4 PRIMARY,
units I4 NOTNULL
",
'quotas' => "
quota_id I4 PRIMARY,
disk_usage I8,
monthly_transfer I8,
title C(160) NOTNULL,
description X
",
'quotas_group_map' => "
quota_id I4 PRIMARY,
group_id I4 PRIMARY
CONSTRAINT ', CONSTRAINT `quotas_group_ref` FOREIGN KEY (`group_id`) REFERENCES `".BIT_DB_PREFIX."users_groups`( `group_id` )
, CONSTRAINT `quotas_map_ref` FOREIGN KEY (`quota_id`) REFERENCES `".BIT_DB_PREFIX."quotas`( `quota_id` )'
",
);
global $gBitInstaller;
foreach( array_keys( $tables ) AS $tableName ) {
$gBitInstaller->registerSchemaTable( QUOTA_PKG_NAME, $tableName, $tables[$tableName] );
}
$gBitInstaller->registerPackageInfo( QUOTA_PKG_NAME, array(
'description' => "Quota system limits user disk and bandwidth usage for Liberty content",
'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>',
) );
// ### Indexes
$indices = array (
'quotas_group_idx' => array( 'table' => 'quotas_group_map', 'cols' => 'group_id', 'opts' => array( 'UNIQUE' ) ),
);
$gBitInstaller->registerSchemaIndexes( QUOTA_PKG_NAME, $indices );
// ### Sequences
$sequences = array (
'quota_id_seq' => array( 'start' => 3 )
);
$gBitInstaller->registerSchemaSequences( QUOTA_PKG_NAME, $sequences );
$gBitInstaller->registerUserPermissions( QUOTA_PKG_NAME, array(
array('p_quota_create', 'Can create a quota', 'registered', QUOTA_PKG_NAME),
array('p_quota_edit', 'Can edit any quota', 'editors', QUOTA_PKG_NAME),
array('p_quota_admin', 'Can admin quota', 'editors', QUOTA_PKG_NAME),
array('p_quota_read', 'Can read quota', 'basic', QUOTA_PKG_NAME),
) );
$gBitInstaller->registerPreferences( QUOTA_PKG_NAME, array(
array(QUOTA_PKG_NAME, 'quota_default_ordering','title_desc'),
array(QUOTA_PKG_NAME, 'quota_list_content_id','y'),
array(QUOTA_PKG_NAME, 'quota_list_title','y'),
array(QUOTA_PKG_NAME, 'quota_list_description','y'),
) );
$gBitInstaller->registerSchemaDefault( QUOTA_PKG_NAME, array(
"INSERT INTO `".BIT_DB_PREFIX."quotas` ( `quota_id`, `disk_usage`, `monthly_transfer`, `title`, `description` ) VALUES ('1', 2000000, 20000000, 'Free Trial', 'A little space to try out site features' )",
"INSERT INTO `".BIT_DB_PREFIX."quotas` ( `quota_id`, `disk_usage`, `monthly_transfer`, `title`, `description` ) VALUES ('2', 10000000, 100000000, 'Site Supporters', 'Extra space for site supporters.' )",
"INSERT INTO `".BIT_DB_PREFIX."quotas_group_map` ( `quota_id`, `group_id` ) VALUES ( 1, 3 )",
"INSERT INTO `".BIT_DB_PREFIX."quotas_group_map` ( `quota_id`, `group_id` ) VALUES ( 2, 2 )",
) );
// Last two INSERTs should be moved to installer pump page to avoid CONSTRAINT issues
?>
|