3 class mw_data_sql_users extends mw_data{
10 # ----------------------------------------------------------------------------------------
14 public function users($start = 0, $alpha = null, $id_role = null){
15 $sgbd = $this->sgbd();
17 $users = array("list" => array(), "total" => 0);
19 $SELECT = "SELECT #--users.*";
20 $FROM = " FROM #--users";
22 $WHERE .= (isset($alpha) ? ($WHERE ? " AND" : " WHERE")." LEFT(login, 1)=".$this->eq($alpha) : "");
24 $SELECT .= ", #--users_roles.id_role";
26 " LEFT JOIN #--users_roles ON ("
27 ." #--users_roles.id_user=#--users.id"
28 ." AND #--users_roles.id_role=".$this->eq($id_role)
30 $WHERE .= ($WHERE ? " AND" : " WHERE")." mw_users_roles.id_role IS NOT NULL";
32 $LIMIT = ($env->config("max_list") ? " LIMIT ".$env->config("max_list")." OFFSET ".$start : "");
33 $sql = "SELECT count(*) as n FROM(".$SELECT.$FROM.$WHERE.") res";
34 $rst = $sgbd->query($sql);
35 if($v_rst = $sgbd->fetch_assoc($rst)) $users["total"] = $v_rst["n"];
36 $sgbd->free_result($rst);
37 if($users["total"] > 0){
38 $sql = "SELECT * FROM(".$SELECT.$FROM.$WHERE.$LIMIT.") res";
39 $rst = $sgbd->query($sql);
40 while($v_rst = $sgbd->fetch_assoc($rst)) $users["list"][$v_rst["id"]] = $v_rst;
41 $sgbd->free_result($rst);
42 foreach($users["list"] as $id_user => $user){
43 if(($roles = $this->list_user_roles($id_user)) !== false){
44 $users["list"][$id_user]["roles"] = $roles;
53 catch(Exception $e) { $users = false; }
57 public function list_user_roles($id_user){
58 $sgbd = $this->sgbd();
61 $rst = $sgbd->query("SELECT id_role FROM #--users_roles WHERE id_user=".$this->eq($id_user));
62 while($v_rst = $sgbd->fetch_assoc($rst)) $roles[] = $v_rst["id_role"];
63 $sgbd->free_result($rst);
65 catch(Exception $e) { $roles = false; }
69 public function user_by_id($id){
71 $user = $env->get_model("users");
72 if($user->load("id", $id) === false) return false;
73 return $user->get_values();
76 public function user($login){
78 $user = $env->get_model("users");
79 if($user->load("login", $login) === false) return false;
80 return $user->get_values();
83 public function user_exists($login){
84 $sgbd = $this->sgbd();
87 $sql = "SELECT count(*) as n from #--users WHERE login=".$this->eq($login);
88 $rst = $sgbd->query($sql);
89 if($v_rst = $sgbd->fetch_assoc($rst)) $EXISTS = $v_rst["n"];
90 $sgbd->free_result($rst);
92 catch(Exception $e) { $EXISTS = false; }
96 public function add_user($login, $password, $email, $roles){
97 $sgbd = $this->sgbd();
101 "INSERT INTO #--users(login, password, email) VALUES"
102 ."( ".$this->eq($login)
103 .", ".$this->eq($password)
104 .", ".$this->eq($email)
107 $user_id = $sgbd->insert_id();
108 foreach($roles as $id_role){
110 "INSERT INTO #--users_roles(id_user, id_role) VALUES"
112 .", ".$this->eq($id_role)
117 catch(Exception $e) { $user_id = false; }
121 public function set_user($id, $login, $password, $email, $roles){
122 $sgbd = $this->sgbd();
125 "UPDATE #--users SET"
126 ." login=".$this->eq($login)
127 .", password=".$this->eq($password)
128 .", email=".$this->eq($email)
129 ." WHERE id=".$this->eq($id);
131 if(!$this->clear_user_roles($id)) return false;
132 foreach($roles as $id_role){
133 if(!$this->add_user_role($id, $id_role)) return false;
136 catch(Exception $e) { return false; }
140 public function clear_user_roles($id_user){
141 $sgbd = $this->sgbd();
143 $sql = "DELETE FROM #--users_roles WHERE id_user=".$this->eq($id_user);
146 catch(Exception $e) { return false; }
150 public function add_user_role($id_user, $id_role){
151 $sgbd = $this->sgbd();
154 "INSERT INTO #--users_roles(id_user, id_role) VALUES"
155 ."( ".$this->eq($id_user)
156 .", ".$this->eq($id_role)
160 catch(Exception $e) { return false; }
164 public function del_user($login){
165 if(($user = $this->user($login)) !== false){
166 $sgbd = $this->sgbd();
168 $sql = "DELETE FROM #--users_roles WHERE id_user=".$user["id"];
170 $sql = "DELETE FROM #--users WHERE login=".$this->eq($login)." AND id=".$user["id"];
173 catch(Exception $e) { return false; }
179 # ----------------------------------------------------------------------------------------
183 public function init_roles(){
184 $sgbd = $this->sgbd();
185 $this->roles = array();
187 $sql = "SELECT * FROM #--roles";
188 $rst = $sgbd->query($sql);
189 while($v_rst = $sgbd->fetch_assoc($rst)) $this->roles[$v_rst["id"]] = $v_rst;
190 $sgbd->free_result($rst);
192 catch(Exception $e) { $this->roles = false; }
196 public function roles(){
197 if(!isset($this->roles)) return false;
201 public function add_role($nom, $intitule){
202 $sgbd = $this->sgbd();
205 "INSERT INTO #--roles(nom, intitule) VALUES("
207 .", ".$this->eq($intitule)
209 $rst = $sgbd->query($sql);
210 $id_role = $sgbd->insert_id();
212 catch(Exception $e) { $id_role = false; }
216 public function get_role($id){
217 if($id === "0") return array(
222 $sgbd = $this->sgbd();
225 $sql = "SELECT * FROM #--roles WHERE id=".$this->eq($id);
226 $rst = $sgbd->query($sql);
227 if($v_rst = $sgbd->fetch_assoc($rst)) $role = $v_rst;
228 $sgbd->free_result($rst);
230 catch(Exception $e) { $role = false; }
234 public function set_role($id, $nom, $intitule){
235 $sgbd = $this->sgbd();
238 "UPDATE #--roles SET"
239 ." nom=".$this->eq($nom)
240 .", intitule=".$this->eq($intitule)
241 ." WHERE id=".$this->eq($id);
242 $rst = $sgbd->query($sql);
244 catch(Exception $e) { return false; }
248 public function clear_role_actions($id_role){
249 $sgbd = $this->sgbd();
251 $sql = "DELETE FROM #--actions_roles WHERE id_role=".$this->eq($id_role);
254 catch(Exception $e) { return false; }
258 public function clear_role_users($id_role){
259 $sgbd = $this->sgbd();
261 $sql = "DELETE FROM #--users_roles WHERE id_role=".$this->eq($id_role);
264 catch(Exception $e) { return false; }
268 public function add_role_action($id_role, $action){
269 $sgbd = $this->sgbd();
271 $sql = "INSERT INTO #--actions_roles(action, id_role) VALUES(".$this->eq($action).", ".$this->eq($id_role).")";
273 $id_action_role = $sgbd->insert_id();
275 catch(Exception $e) { $id_action_role = false; }
276 return $id_action_role;
279 public function del_role($id_role){
280 $sgbd = $this->sgbd();
282 $sql = "DELETE FROM #--roles WHERE id=".$this->eq($id_role);
285 catch(Exception $e) { return false; }
289 public function get_user_roles(){
290 $user_roles = array();
291 $user = $this->get_session_user();
292 if($user && isset($user["id"])){
293 $sgbd = $this->sgbd();
295 $sql = "SELECT id_role FROM #--users_roles WHERE id_user=".$this->eq($user["id"]);
296 $rst = $sgbd->query($sql);
297 while($v_rst = $sgbd->fetch_assoc($rst)) $user_roles[] = $v_rst["id_role"];
298 $sgbd->free_result($rst);
300 catch(Exception $_e){ return false; }
302 else $user_roles[] = 0;
303 if(!$user_roles) $user_roles[] = 0;
307 public function init_actions_roles(){
308 if(!isset($this->roles)) return false;
309 $this->actions_roles = $this->read_actions_roles();
310 return $this->actions_roles;
313 public function read_actions_roles($params = array()){
314 $group_by_action = isset($params["group_by_action"]) ? $params["group_by_action"] : false;
315 $sgbd = $this->sgbd();
316 $actions_roles = array();
318 $sql = "SELECT * FROM #--actions_roles";
319 $rst = $sgbd->query($sql);
320 while($v_rst = $sgbd->fetch_assoc($rst)){
321 if($group_by_action){
322 if(!isset($actions_roles[$v_rst["action"]])) $actions_roles[$v_rst["action"]] = array();
323 $actions_roles[$v_rst["action"]][] = $v_rst["id_role"];
325 else $actions_roles[$v_rst["id"]] = $v_rst;
327 $sgbd->free_result($rst);
329 catch(Exception $e) { $actions_roles = false; }
330 return $actions_roles;
333 public function get_action_roles($mod, $controller = "index", $action = "index"){
334 $sgbd = $this->sgbd();
338 "SELECT action, id_role"
339 ." FROM #--actions_roles"
340 ." WHERE action=".$this->eq($mod)
341 ." OR action=".$this->eq($mod."/".$controller)
342 ." OR action=".$this->eq($mod."/".$controller."/".$action);
343 $rst = $sgbd->query($sql);
344 while($v_rst = $sgbd->fetch_assoc($rst)){
345 if(!isset($roles[$v_rst["action"]])) $roles[$v_rst["action"]] = array();
346 $roles[$v_rst["action"]][$v_rst["id_role"]] = true;
348 $sgbd->free_result($rst);
350 catch(Exception $e) { $roles = false; }
354 public function get_actions($id_role = null){
356 if($actions = $env->get_actions()){
357 if(($actions_roles = $this->read_actions_roles(array("group_by_action" => true))) !== false){
358 foreach($actions as $module_name => $module){
359 if(isset($id_role)) $actions[$module_name]["module_allowed"] =
360 isset($actions_roles[$module_name])
361 && in_array($id_role, $actions_roles[$module_name]);
362 $actions[$module_name]["is_public"] =
363 isset($actions_roles[$module_name])
364 && in_array(0, $actions_roles[$module_name]);
365 foreach($module["controleurs"] as $controleur_name => $controleur){
366 if(isset($id_role)) $actions[$module_name]["controleurs"][$controleur_name]["controleur_allowed"] =
367 isset($actions_roles[$module_name."/".$controleur_name])
368 && in_array($id_role, $actions_roles[$module_name."/".$controleur_name]);
369 $actions[$module_name]["controleurs"][$controleur_name]["is_public"] =
370 isset($actions_roles[$module_name."/".$controleur_name])
371 && in_array(0, $actions_roles[$module_name."/".$controleur_name]);
372 foreach($controleur["als"] as $index_als => $al){
375 $HAS_ACTION_NOT_ALLOWED = false;
376 foreach($al["actions"] as $action_name){
378 !isset($actions_roles[$module_name."/".$controleur_name."/".$action_name])
379 || !in_array($id_role, $actions_roles[$module_name."/".$controleur_name."/".$action_name])
381 $HAS_ACTION_NOT_ALLOWED = true;
385 if(!$HAS_ACTION_NOT_ALLOWED){
386 $actions[$module_name]["controleurs"][$controleur_name]["als"][$index_als]["action_allowed"] = true;
389 $HAS_ACTION_NOT_ALLOWED = false;
390 foreach($al["actions"] as $action_name){
392 !isset($actions_roles[$module_name."/".$controleur_name."/".$action_name])
393 || !in_array(0, $actions_roles[$module_name."/".$controleur_name."/".$action_name])
395 $HAS_ACTION_NOT_ALLOWED = true;
399 if(!$HAS_ACTION_NOT_ALLOWED){
400 $actions[$module_name]["controleurs"][$controleur_name]["als"][$index_als]["is_public"] = true;