Update groups.php

This commit is contained in:
FusionPBX 2019-07-28 15:34:21 -06:00 committed by GitHub
parent f89b3b61be
commit 65d74aa7f8
1 changed files with 94 additions and 101 deletions

View File

@ -17,7 +17,7 @@
The Initial Developer of the Original Code is The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2016 Portions created by the Initial Developer are Copyright (C) 2016-2019
the Initial Developer. All Rights Reserved. the Initial Developer. All Rights Reserved.
Contributor(s): Contributor(s):
@ -82,114 +82,107 @@ if (!class_exists('groups')) {
public function defaults() { public function defaults() {
//if the are no groups add the default groups //if the are no groups add the default groups
$sql = "SELECT * FROM v_groups "; $sql = "select * from v_groups ";
$sql .= "WHERE domain_uuid is null "; $sql .= "where domain_uuid is null ";
$result = $this->db->query($sql)->fetch(); $database = new database;
$prep_statement = $this->db->prepare(check_sql($sql)); $result = $database->select($sql, null, 'all');
if ($prep_statement) { if (count($result) == 0) {
$prep_statement->execute(); $x = 0;
$result = $prep_statement->fetchAll(PDO::FETCH_ASSOC); $array['groups']['group_uuid'] = uuid();
if (count($result) == 0) { $array['groups']['domain_uuid'] = null;
$x = 0; $array['groups'][$x]['group_name'] = 'superadmin';
//$groups[$x]['group_uuid'] = ''; $array['groups'][$x]['group_level'] = '80';
$groups[$x]['group_name'] = 'superadmin'; $array['groups'][$x]['group_description'] = 'Super Administrator Group';
$groups[$x]['group_level'] = '80'; $array['groups'][$x]['group_protected'] = 'false';
$groups[$x]['group_description'] = 'Super Administrator Group'; $x++;
$groups[$x]['group_protected'] = 'false'; $array['groups'][$x]['group_uuid'] = uuid();
$x++; $array['groups'][$x]['domain_uuid'] = null;
//$groups[$x]['group_uuid'] = ''; $array['groups'][$x]['group_name'] = 'admin';
$groups[$x]['group_name'] = 'admin'; $array['groups'][$x]['group_level'] = '50';
$groups[$x]['group_level'] = '50'; $array['groups'][$x]['group_description'] = 'Administrator Group';
$groups[$x]['group_description'] = 'Administrator Group'; $array['groups'][$x]['group_protected'] = 'false';
$groups[$x]['group_protected'] = 'false'; $x++;
$x++; $array['groups'][$x]['group_uuid'] = uuid();
//$groups[$x]['group_uuid'] = ''; $array['groups'][$x]['domain_uuid'] = null;
$groups[$x]['group_name'] = 'user'; $array['groups'][$x]['group_name'] = 'user';
$groups[$x]['group_level'] = '30'; $array['groups'][$x]['group_level'] = '30';
$groups[$x]['group_description'] = 'User Group'; $array['groups'][$x]['group_description'] = 'User Group';
$groups[$x]['group_protected'] = 'false'; $array['groups'][$x]['group_protected'] = 'false';
$x++; $x++;
//$groups[$x]['group_uuid'] = ''; $array['groups'][$x]['group_uuid'] = uuid();
$groups[$x]['group_name'] = 'agent'; $array['groups'][$x]['domain_uuid'] = null;
$groups[$x]['group_level'] = '20'; $array['groups'][$x]['group_name'] = 'agent';
$groups[$x]['group_description'] = 'Call Center Agent Group'; $array['groups'][$x]['group_level'] = '20';
$groups[$x]['group_protected'] = 'false'; $array['groups'][$x]['group_description'] = 'Call Center Agent Group';
$x++; $array['groups'][$x]['group_protected'] = 'false';
//$groups[$x]['group_uuid'] = ''; $x++;
$groups[$x]['group_name'] = 'public'; $array['groups'][$x]['group_uuid'] = uuid();
$groups[$x]['group_level'] = '10'; $array['groups'][$x]['domain_uuid'] = null;
$groups[$x]['group_description'] = 'Public Group'; $array['groups'][$x]['group_name'] = 'public';
$groups[$x]['group_protected'] = 'false'; $array['groups'][$x]['group_level'] = '10';
//$x++; $array['groups'][$x]['group_description'] = 'Public Group';
$this->db->beginTransaction(); $array['groups'][$x]['group_protected'] = 'false';
foreach($groups as $row) {
if (strlen($row['group_name']) > 0) { //add the temporary permissions
$sql = "insert into v_groups "; $p = new permissions;
$sql .= "("; $p->add("group_add", "temp");
$sql .= "domain_uuid, "; $p->add("group_edit", "temp");
$sql .= "group_uuid, ";
$sql .= "group_name, "; //save the data to the database
$sql .= "group_description, "; $database = new database;
$sql .= "group_protected "; $database->app_name = 'groups';
$sql .= ")"; $database->app_uuid = '2caf27b0-540a-43d5-bb9b-c9871a1e4f84';
$sql .= "values "; $database->save($array);
$sql .= "("; unset($array);
$sql .= "null, ";
$sql .= "'".uuid()."', "; //remove the temporary permission
$sql .= "'".$row['group_name']."', "; $p->delete("group_add", "temp");
$sql .= "'".$row['group_description']."', "; $p->delete("group_edit", "temp");
$sql .= "'".$row['group_protected']."' ";
$sql .= ")";
$this->db->exec($sql);
unset($sql);
}
}
$this->db->commit();
}
unset($prep_statement, $result);
} }
unset($result);
//if there are no permissions listed in v_group_permissions then set the default permissions //if there are no permissions listed in v_group_permissions then set the default permissions
$sql = "select count(*) as count from v_group_permissions "; $sql = "select count(*) from v_group_permissions ";
$sql .= "where domain_uuid is null "; $sql .= "where domain_uuid is null ";
$prep_statement = $this->db->prepare($sql); $database = new database;
$prep_statement->execute(); $num_rows = $database->select($sql, null, 'column');
$result = $prep_statement->fetch(PDO::FETCH_ASSOC); if ($num_rows == 0) {
unset ($prep_statement);
if ($result['count'] == 0) {
//build the apps array //build the apps array
$config_list = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/app_config.php"); $config_list = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/app_config.php");
$x = 0; $x = 0;
foreach ($config_list as &$config_path) { foreach ($config_list as &$config_path) {
include($config_path); include($config_path);
$x++; $x++;
} }
//no permissions found add the defaults //no permissions found add the defaults
$this->db->beginTransaction(); foreach($apps as $app) {
foreach($apps as $app) { if (is_array($app['permissions'])) foreach ($app['permissions'] as $row) {
if (is_array($app['permissions'])) foreach ($app['permissions'] as $row) { if (is_array($row['groups'])) foreach ($row['groups'] as $group) {
if (is_array($row['groups'])) foreach ($row['groups'] as $group) { $x++;
//add the record $array['group_permissions'][$x]['group_permission_uuid'] = uuid();
$sql = "insert into v_group_permissions "; $array['group_permissions'][$x]['domain_uuid'] = null;
$sql .= "("; $array['group_permissions'][$x]['permission_name'] = $row['name'];
$sql .= "group_permission_uuid, "; $array['group_permissions'][$x]['group_name'] = $group;
$sql .= "domain_uuid, ";
$sql .= "permission_name, ";
$sql .= "group_name ";
$sql .= ")";
$sql .= "values ";
$sql .= "(";
$sql .= "'".uuid()."', ";
$sql .= "null, ";
$sql .= "'".$row['name']."', ";
$sql .= "'".$group."' ";
$sql .= ")";
$this->db->exec($sql);
unset($sql);
}
} }
} }
$this->db->commit(); }
//add the temporary permissions
$p = new permissions;
$p->add("group_permission_add", "temp");
$p->add("group_permission_edit", "temp");
//save the data to the database
$database = new database;
$database->app_name = 'groups';
$database->app_uuid = '2caf27b0-540a-43d5-bb9b-c9871a1e4f84';
$database->save($array);
unset($array);
//remove the temporary permission
$p->delete("group_permission_add", "temp");
$p->delete("group_permission_edit", "temp");
} }
} }
} //end scripts class } //end scripts class