source: trunk/Modules/User/User.php@ 874

Last change on this file since 874 was 874, checked in by chronos, 5 years ago
  • Modified: Do not use parenthesis around returned value.
File size: 14.1 KB
Line 
1<?php
2
3include_once(dirname(__FILE__).'/UserModel.php');
4include_once(dirname(__FILE__).'/UserList.php');
5include_once(dirname(__FILE__).'/UserPage.php');
6
7class ModuleUser extends AppModule
8{
9 var $UserPanel;
10
11 function __construct($System)
12 {
13 parent::__construct($System);
14 $this->Name = 'User';
15 $this->Version = '1.0';
16 $this->Creator = 'Chronos';
17 $this->License = 'GNU/GPLv3';
18 $this->Description = 'User management';
19 $this->Dependencies = array();
20 $this->UserPanel = array();
21 }
22
23 function DoInstall()
24 {
25 $this->Database->query("CREATE TABLE IF NOT EXISTS `User` (
26 `Id` int(11) NOT NULL AUTO_INCREMENT,
27 `Login` varchar(64) NOT NULL,
28 `Name` varchar(128) NOT NULL,
29 `Password` varchar(255) NOT NULL,
30 `Salt` varchar(255) NOT NULL,
31 `Email` varchar(128) NOT NULL DEFAULT '',
32 `LastIpAddress` varchar(16) NOT NULL DEFAULT '',
33 `LastLoginTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
34 `RegistrationTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
35 `Locked` tinyint(1) NOT NULL DEFAULT '0',
36 `InitPassword` varchar(255) NOT NULL,
37 PRIMARY KEY (`Id`),
38 UNIQUE KEY `Name` (`Login`),
39 UNIQUE KEY `Nick` (`Name`)
40) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;");
41 $this->Database->query("CREATE TABLE IF NOT EXISTS `UserOnline` (
42 `Id` int(11) NOT NULL AUTO_INCREMENT,
43 `User` int(11) DEFAULT NULL COMMENT 'User.Id',
44 `ActivityTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
45 `LoginTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
46 `SessionId` varchar(255) NOT NULL DEFAULT '',
47 `IpAddress` varchar(16) NOT NULL DEFAULT '',
48 `HostName` varchar(255) NOT NULL DEFAULT '',
49 `ScriptName` varchar(255) NOT NULL,
50 `StayLogged` INT NOT NULL,
51 `StayLoggedHash` VARCHAR(40) NOT NULL,
52 PRIMARY KEY (`Id`),
53 KEY `User` (`User`)
54) ENGINE=MEMORY DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;");
55 $this->Database->query("CREATE TABLE IF NOT EXISTS `PermissionGroup` (
56 `Id` int(11) NOT NULL AUTO_INCREMENT,
57 `Description` varchar(255) NOT NULL DEFAULT '',
58 PRIMARY KEY (`Id`)
59 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;");
60
61 $this->Database->query("CREATE TABLE IF NOT EXISTS `PermissionGroupAssignment` (
62 `Id` int(11) NOT NULL AUTO_INCREMENT,
63 `Group` int(11) NOT NULL DEFAULT '0',
64 `AssignedGroup` int(11) DEFAULT NULL,
65 `AssignedOperation` int(11) DEFAULT NULL,
66 PRIMARY KEY (`Id`),
67 KEY `Group` (`Group`),
68 KEY `AssignedGroup` (`AssignedGroup`),
69 KEY `AssignedOperation` (`AssignedOperation`)
70 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;");
71
72 $this->Database->query("CREATE TABLE IF NOT EXISTS `PermissionOperation` (
73 `Id` int(11) NOT NULL AUTO_INCREMENT,
74 `Module` int(11) NOT NULL,
75 `Operation` varchar(128) NOT NULL DEFAULT '',
76 `Item` varchar(64) NOT NULL DEFAULT '',
77 `ItemId` int(11) NOT NULL DEFAULT '0',
78 PRIMARY KEY (`Id`),
79 KEY `Module` (`Module`),
80 KEY `Operation` (`Operation`),
81 KEY `Item` (`Item`),
82 KEY `ItemId` (`ItemId`)
83 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;");
84
85 $this->Database->query("CREATE TABLE IF NOT EXISTS `PermissionUserAssignment` (
86 `Id` int(11) NOT NULL AUTO_INCREMENT,
87 `User` int(11) DEFAULT NULL,
88 `AssignedGroup` int(11) DEFAULT NULL,
89 `AssignedOperation` int(11) DEFAULT NULL,
90 PRIMARY KEY (`Id`),
91 KEY `User` (`User`),
92 KEY `AssignedGroup` (`AssignedGroup`),
93 KEY `AssignedOperation` (`AssignedOperation`)
94 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;");
95
96 $this->Database->query("ALTER TABLE `PermissionGroupAssignment`
97 ADD CONSTRAINT `PermissionGroupAssignment_ibfk_1` FOREIGN KEY (`Group`) REFERENCES `PermissionGroup` (`Id`),
98 ADD CONSTRAINT `PermissionGroupAssignment_ibfk_2` FOREIGN KEY (`AssignedGroup`) REFERENCES `PermissionGroup` (`Id`),
99 ADD CONSTRAINT `PermissionGroupAssignment_ibfk_3` FOREIGN KEY (`AssignedOperation`) REFERENCES `PermissionOperation` (`Id`);");
100
101 $this->Database->query("ALTER TABLE `PermissionOperation`
102 ADD CONSTRAINT `PermissionOperation_ibfk_1` FOREIGN KEY (`Module`) REFERENCES `Module` (`Id`);");
103
104 $this->Database->query("ALTER TABLE `PermissionUserAssignment`
105 ADD CONSTRAINT `PermissionUserAssignment_ibfk_2` FOREIGN KEY (`AssignedGroup`) REFERENCES `PermissionGroup` (`Id`),
106 ADD CONSTRAINT `PermissionUserAssignment_ibfk_3` FOREIGN KEY (`AssignedOperation`) REFERENCES `PermissionOperation` (`Id`),
107 ADD CONSTRAINT `PermissionUserAssignment_ibfk_4` FOREIGN KEY (`User`) REFERENCES `User` (`Id`);");
108 }
109
110 function DoUninstall()
111 {
112 $this->Database->query('DROP TABLE `PermissionUserAssignment`');
113 $this->Database->query('DROP TABLE `PermissionGroupAssignment`');
114 $this->Database->query('DROP TABLE `PermissionGroup`');
115 $this->Database->query('DROP TABLE `PermissionOperation`');
116 $this->Database->query('DROP TABLE `UserOnline`');
117 $this->Database->query('DROP TABLE `User`');
118 }
119
120 function DoUpgrade()
121 {
122 /*
123
124 if ($this->InstalledVersion == '1.0') {
125 $this->System->Database->Query('SELECT * FROM User WHERE Id=1');
126 $this->InstalledVersion = '1.1';
127 }
128 */
129 }
130
131 function DoStart()
132 {
133 $this->System->User = new User($this->System);
134 if (isset($_SERVER['REMOTE_ADDR'])) $this->System->User->Check();
135 $this->System->RegisterPage('userlist', 'PageUserList');
136 $this->System->RegisterPage('user', 'PageUser');
137 $this->System->RegisterPageBarItem('Top', 'User', array($this, 'TopBarCallback'));
138 $this->System->FormManager->RegisterClass('UserLogin', array(
139 'Title' => 'Přihlášení uživatele',
140 'SubmitText' => 'Přihlásit',
141 'Table' => '',
142 'Items' => array(
143 'Username' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
144 'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
145 'StayLogged' => array('Type' => 'Boolean', 'Caption' => 'Zůstat přihlášen', 'Default' => '0'),
146 ),
147 ));
148 $this->System->FormManager->RegisterClass('UserOptions', array(
149 'Title' => 'Základní nastavení',
150 'Table' => 'User',
151 'SubmitText' => 'Uložit',
152 'Items' => array(
153 'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
154 'Salt' => array('Type' => 'RandomHash', 'Caption' => 'Sůl', 'Default' => ''),
155 'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
156 'Name' => array('Type' => 'String', 'Caption' => 'Zobrazované jméno', 'Default' => ''),
157 'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
158 ),
159 ));
160 $this->System->FormManager->RegisterClass('UserRegister', array(
161 'Title' => 'Registrace uživatele',
162 'SubmitText' => 'Registrovat',
163 'Table' => 'User',
164 'Items' => array(
165 'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
166 'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
167 'Password2' => array('Type' => 'Password', 'Caption' => 'Potvrzení hesla', 'Default' => ''),
168 'Name' => array('Type' => 'String', 'Caption' => 'Zobrazované jméno', 'Default' => ''),
169 'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
170 ),
171 ));
172 $this->System->FormManager->RegisterClass('PasswordRecovery', array(
173 'Title' => 'Obnova hesla',
174 'SubmitText' => 'Obnovit',
175 'Table' => '',
176 'Items' => array(
177 'Name' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
178 'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
179 ),
180 ));
181 $this->System->FormManager->RegisterClass('APIToken', array(
182 'Title' => 'Přístupový token',
183 'Table' => 'APIToken',
184 'Items' => array(
185 'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => ''),
186 'Token' => array('Type' => 'String', 'Caption' => 'Token', 'Default' => ''),
187 ),
188 ));
189 $this->System->FormManager->RegisterClass('User', array(
190 'Title' => 'Uživatelé',
191 'Table' => 'User',
192 'DefaultSortColumn' => 'Name',
193 'Items' => array(
194 'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
195 'Name' => array('Type' => 'String', 'Caption' => 'Celé jméno', 'Default' => ''),
196 'Salt' => array('Type' => 'RandomHash', 'Caption' => 'Sůl', 'Default' => '', 'NotInList' => true),
197 'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => '', 'Method' => 'DoubleSHA1', 'NotInList' => true),
198 'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
199 'LastIpAddress' => array('Type' => 'IPv4Address', 'Caption' => 'Poslední IP adresa', 'Default' => '', 'ReadOnly' => true),
200 'LastLoginTime' => array('Type' => 'DateTime', 'Caption' => 'Poslední čas přihlášení', 'Default' => '', 'ReadOnly' => true),
201 'RegistrationTime' => array('Type' => 'DateTime', 'Caption' => 'Čas registrace', 'Default' => ''),
202 'Locked' => array('Type' => 'Boolean', 'Caption' => 'Uzamčen', 'Default' => ''),
203 'UserRel' => array('Type' => 'TUserCustomerRelListUser', 'Caption' => 'Přístup k zákazníkům', 'Default' => ''),
204 'Permission' => array('Type' => 'TPermissionUserAssignmentListUser', 'Caption' => 'Oprávnění', 'Default' => ''),
205 'Contatcs' => array('Type' => 'TContactListUser', 'Caption' => 'Kontakty', 'Default' => ''),
206 ),
207 ));
208 $this->System->FormManager->RegisterClass('PermissionUserAssignment', array(
209 'Title' => 'Oprávnění uživatelů',
210 'Table' => 'PermissionUserAssignment',
211 'Items' => array(
212 'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => ''),
213 'AssignedGroup' => array('Type' => 'TPermissionGroup', 'Caption' => 'Přiřazené skupiny', 'Default' => '', 'Null' => true),
214 'AssignedOperation' => array('Type' => 'TPermissionOperation', 'Caption' => 'Přiřazené operace', 'Default' => '', 'Null' => true),
215 ),
216 ));
217 $this->System->FormManager->RegisterClass('PermissionGroup', array(
218 'Title' => 'Skupiny oprávnění',
219 'Table' => 'PermissionGroup',
220 'Items' => array(
221 'Description' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),
222 'AssignedGroup' => array('Type' => 'TPermissionGroupAssignmentListGroup', 'Caption' => 'Přiřazené skupiny a operace', 'Default' => '', 'Null' => true),
223 'AssignedGroup2' => array('Type' => 'TPermissionGroupAssignmentListAssignedGroup', 'Caption' => 'Použito ve skupinách', 'Default' => '', 'Null' => true),
224 ),
225 ));
226 $this->System->FormManager->RegisterClass('PermissionGroupAssignment', array(
227 'Title' => 'Přiřazení skupin oprávnění',
228 'Table' => 'PermissionGroupAssignment',
229 'Items' => array(
230 'Group' => array('Type' => 'TPermissionGroup', 'Caption' => 'Skupina', 'Default' => ''),
231 'AssignedGroup' => array('Type' => 'TPermissionGroup', 'Caption' => 'Přiřazené skupiny', 'Default' => '', 'Null' => true),
232 'AssignedOperation' => array('Type' => 'TPermissionOperation', 'Caption' => 'Přiřazené operace', 'Default' => '', 'Null' => true),
233 ),
234 ));
235 $this->System->FormManager->RegisterClass('PermissionOperation', array(
236 'Title' => 'Operace oprávnění',
237 'Table' => 'PermissionOperation',
238 'Items' => array(
239 'Module' => array('Type' => 'TModule', 'Caption' => 'Modul', 'Default' => ''),
240 'Operation' => array('Type' => 'String', 'Caption' => 'Operace', 'Default' => ''),
241 'Item' => array('Type' => 'String', 'Caption' => 'Položka', 'Default' => ''),
242 'ItemId' => array('Type' => 'Integer', 'Caption' => 'Index položky', 'Default' => ''),
243 'AssignedGroup' => array('Type' => 'TPermissionGroupAssignmentListOperation', 'Caption' => 'Použito ve skupinách', 'Default' => '', 'Null' => true),
244 ),
245 ));
246 $this->System->FormManager->RegisterFormType('TUser', array(
247 'Type' => 'Reference',
248 'Table' => 'User',
249 'Id' => 'Id',
250 'Name' => 'Name',
251 'Filter' => '1',
252 ));
253 $this->System->FormManager->RegisterFormType('TPermissionGroup', array(
254 'Type' => 'Reference',
255 'Table' => 'PermissionGroup',
256 'Id' => 'Id',
257 'Name' => 'Description',
258 'Filter' => '1',
259 ));
260 $this->System->FormManager->RegisterFormType('TPermissionGroupAssignment', array(
261 'Type' => 'Reference',
262 'Table' => 'PermissionGroupAssignment',
263 'Id' => 'Id',
264 'Name' => 'Id',
265 'Filter' => '1',
266 ));
267 $this->System->FormManager->RegisterFormType('TPermissionOperation', array(
268 'Type' => 'Reference',
269 'Table' => 'PermissionOperation',
270 'Id' => 'Id',
271 'Name' => 'Id',
272 'Filter' => '1',
273 ));
274 $this->System->ModuleManager->Modules['IS']->RegisterDashboardItem('User',
275 array('ModuleUser', 'ShowDashboardItem'));
276 }
277
278 function ShowDashboardItem()
279 {
280 $DbResult = $this->Database->select('User', 'COUNT(*)', '1');
281 $DbRow = $DbResult->fetch_row();
282 $Output = 'Uživatelů: '.$DbRow['0'].'<br/>';
283 return $Output;
284 }
285
286 function DoStop()
287 {
288 }
289
290 function TopBarCallback()
291 {
292 if ($this->System->User->User['Id'] == null)
293 {
294 $Output = '<a href="'.$this->System->Link('/user/?Action=LoginForm').'">Přihlášení</a> '.
295 '<a href="'.$this->System->Link('/user/?Action=UserRegister').'">Registrace</a>';
296 } else
297 {
298 $Output = $this->System->User->User['Name'].
299 ' <a href="'.$this->System->Link('/user/?Action=UserMenu').'">Nabídka</a>'.
300 ' <a href="'.$this->System->Link('/user/?Action=Logout').'">Odhlásit</a>';
301 // <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>';
302 }
303 return $Output;
304 }
305}
Note: See TracBrowser for help on using the repository browser.