2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2014-12-26 16:47:37 +01:00
|
|
|
if ($domains_processed == 1) {
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2016-04-03 19:54:09 +02:00
|
|
|
//if the default groups do not exist add them
|
|
|
|
|
$group = new groups;
|
|
|
|
|
$group->defaults();
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-12-26 16:47:37 +01:00
|
|
|
//find rows that have a null group_uuid and set the correct group_uuid
|
2019-02-09 15:57:56 +01:00
|
|
|
$sql = "select * from v_user_groups ";
|
2014-12-26 16:47:37 +01:00
|
|
|
$sql .= "where group_uuid is null; ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
2015-06-25 23:25:22 +02:00
|
|
|
$db->beginTransaction();
|
2014-12-26 16:47:37 +01:00
|
|
|
foreach($result as $row) {
|
|
|
|
|
if (strlen($row['group_name']) > 0) {
|
|
|
|
|
//get the group_uuid
|
|
|
|
|
$sql = "select group_uuid from v_groups ";
|
|
|
|
|
$sql .= "where group_name = '".$row['group_name']."' ";
|
|
|
|
|
$prep_statement_sub = $db->prepare($sql);
|
|
|
|
|
$prep_statement_sub->execute();
|
|
|
|
|
$sub_result = $prep_statement_sub->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
unset ($prep_statement_sub);
|
|
|
|
|
$group_uuid = $sub_result['group_uuid'];
|
|
|
|
|
//set the group_uuid
|
2019-02-09 15:57:56 +01:00
|
|
|
$sql = "update v_user_groups set ";
|
2014-12-26 16:47:37 +01:00
|
|
|
$sql .= "group_uuid = '".$group_uuid."' ";
|
|
|
|
|
$sql .= "where group_user_uuid = '".$row['group_user_uuid']."'; ";
|
|
|
|
|
$db->exec($sql);
|
|
|
|
|
unset($sql);
|
|
|
|
|
}
|
2014-07-24 00:00:03 +02:00
|
|
|
}
|
2015-06-25 23:25:22 +02:00
|
|
|
$db->commit();
|
2014-12-26 16:47:37 +01:00
|
|
|
unset ($prep_statement);
|
2014-07-24 00:00:03 +02:00
|
|
|
}
|
2012-08-10 17:53:02 +02:00
|
|
|
|
2014-12-26 16:47:37 +01:00
|
|
|
}
|
2012-08-10 17:53:02 +02:00
|
|
|
|
2019-02-09 15:57:56 +01:00
|
|
|
?>
|