Update api_usergroup.php
[bugdar.git] / includes / api_usergroup.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright ©2002-2007 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 require_once ISSO . '/Api.php';
23 require_once('./includes/functions_datastore.php');
24
25 /**
26 * API: Usergroup
27 *
28 * @author Blue Static
29 * @copyright Copyright ©2002 - 2007, Blue Static
30 * @version $Revision$
31 * @package Bugdar
32 *
33 */
34 class UsergroupAPI extends BSApi
35 {
36 /**
37 * Fields
38 * @var array
39 */
40 protected $fields = array(
41 'usergroupid' => array(TYPE_UINT, REQ_AUTO),
42 'title' => array(TYPE_STR, REQ_YES),
43 'displaytitle' => array(TYPE_STR, REQ_NO),
44 'permissions' => array(TYPE_UINT, REQ_NO)
45 );
46
47 /**
48 * Database table
49 * @var string
50 */
51 protected $table = 'usergroup';
52
53 /**
54 * Table prefix
55 * @var string
56 */
57 protected $prefix = TABLE_PREFIX;
58
59 /**
60 * Post-insert
61 */
62 protected function post_insert()
63 {
64 build_usergroups();
65 }
66
67 /**
68 * Post-update
69 */
70 protected function post_update()
71 {
72 build_usergroups();
73 build_assignedto();
74 }
75
76 /**
77 * Pre-delete
78 */
79 protected function pre_delete()
80 {
81 if ($this->values['usergroupid'] < 7)
82 {
83 throw new FieldException(T('You can\'t delete a default usergroup.'), 'usergroupid');
84 return false;
85 }
86 }
87
88 /**
89 * Post-delete
90 */
91 protected function post_delete()
92 {
93 BSApp::$db->query("DELETE FROM " . TABLE_PREFIX . "permission WHERE usergroupid = " . $this->values['usergroupid']);
94 BSApp::$db->query("DELETE FROM " . TABLE_PREFIX . "bugfieldpermission WHERE usergroupid = " . $this->values['usergroupid']);
95 BSApp::$db->query("UPDATE " . TABLE_PREFIX . "user SET usergroupid = 2 WHERE usergroupid = " . $this->values['usergroupid']);
96 build_usergroups();
97 build_permissions();
98 build_assignedto();
99 }
100
101 /**
102 * Validate: usergroupid
103 */
104 protected function validate_usergroupid($field)
105 {
106 return $this->_verifyIsNotZero($field);
107 }
108
109 /**
110 * Validate: usergroup
111 */
112 protected function validate_usergroup($field)
113 {
114 return $this->_verifyIsNotEmpty($field);
115 }
116 }
117
118 /*=====================================================================*\
119 || ###################################################################
120 || # $HeadURL$
121 || # $Id$
122 || ###################################################################
123 \*=====================================================================*/
124 ?>