384 lines
14 KiB
PHP
384 lines
14 KiB
PHP
<?php
|
|
/**
|
|
* The control file of group module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package group
|
|
* @version $Id: control.php 4648 2013-04-15 02:45:49Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class group extends control
|
|
{
|
|
/**
|
|
* Construct function.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function __construct($moduleName = '', $methodName = '')
|
|
{
|
|
parent::__construct($moduleName, $methodName);
|
|
$this->loadModel('company')->setMenu();
|
|
$this->loadModel('user');
|
|
}
|
|
|
|
/**
|
|
* Browse groups.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function browse()
|
|
{
|
|
$title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->browse;
|
|
$position[] = $this->lang->group->browse;
|
|
|
|
$groups = $this->group->getList();
|
|
$groupUsers = array();
|
|
foreach($groups as $group)
|
|
{
|
|
if($group->role == 'projectAdmin')
|
|
{
|
|
$groupUsers[$group->id] = $this->dao->select('t1.account, t2.realname')->from(TABLE_PROJECTADMIN)->alias('t1')->leftJoin(TABLE_USER)->alias('t2')->on('t1.account = t2.account')->fetchPairs();
|
|
}
|
|
else
|
|
{
|
|
$groupUsers[$group->id] = $this->group->getUserPairs($group->id);
|
|
}
|
|
}
|
|
|
|
$this->view->title = $title;
|
|
$this->view->position = $position;
|
|
$this->view->groups = $groups;
|
|
$this->view->groupUsers = $groupUsers;
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Create a group.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function create()
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$groupID = $this->group->create();
|
|
if(dao::isError()) return print(js::error(dao::getError()));
|
|
if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $groupID));
|
|
if(isonlybody()) return print(js::closeModal('parent.parent', 'this'));
|
|
return print(js::locate($this->createLink('group', 'browse'), 'parent'));
|
|
}
|
|
|
|
$this->view->title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->create;
|
|
$this->view->position[] = $this->lang->group->create;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Edit a group.
|
|
*
|
|
* @param int $groupID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function edit($groupID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->group->update($groupID);
|
|
if(dao::isError()) return print(js::error(dao::getError()));
|
|
if(isonlybody()) return print(js::closeModal('parent.parent', 'this'));
|
|
return print(js::locate($this->createLink('group', 'browse'), 'parent'));
|
|
}
|
|
|
|
$title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->edit;
|
|
$position[] = $this->lang->group->edit;
|
|
|
|
$this->view->title = $title;
|
|
$this->view->position = $position;
|
|
$this->view->group = $this->group->getById($groupID);
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Copy a group.
|
|
*
|
|
* @param int $groupID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function copy($groupID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->group->copy($groupID);
|
|
if(dao::isError()) return print(js::error(dao::getError()));
|
|
if(isonlybody()) return print(js::closeModal('parent.parent', 'this'));
|
|
return print(js::locate($this->createLink('group', 'browse'), 'parent'));
|
|
}
|
|
|
|
$this->view->title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->copy;
|
|
$this->view->position[] = $this->lang->group->copy;
|
|
$this->view->group = $this->group->getById($groupID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Manage view.
|
|
*
|
|
* @param int $groupID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function manageView($groupID)
|
|
{
|
|
if($_POST)
|
|
{
|
|
$this->group->updateView($groupID);
|
|
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
|
|
|
|
$link = isonlybody() ? 'parent' : $this->createLink('group', 'browse');
|
|
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $link));
|
|
}
|
|
|
|
/* Get the group data by id. */
|
|
$group = $this->group->getByID($groupID);
|
|
$this->view->title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageView;
|
|
|
|
/* Get the list of data sets under administrator permission. */
|
|
if(!$this->app->user->admin)
|
|
{
|
|
$this->app->user->admin = true;
|
|
$changeAdmin = true;
|
|
}
|
|
|
|
$executionProject = $this->dao->select('t1.id, t2.name')->from(TABLE_EXECUTION)->alias('t1')
|
|
->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.project = t2.id')
|
|
->where('t1.deleted')->eq('0')
|
|
->andWhere('t1.id')->in($this->app->user->view->sprints)
|
|
->fetchPairs();
|
|
|
|
$executions = $this->loadModel('execution')->getPairs(0, 'all', 'all');
|
|
foreach($executions as $id => $name)
|
|
{
|
|
if(isset($executionProject[$id])) $executions[$id] = $executionProject[$id] . ' / ' . $name;
|
|
}
|
|
|
|
$this->view->group = $group;
|
|
$this->view->programs = $this->loadModel('program')->getParentPairs('', '', false);
|
|
$this->view->projects = $this->loadModel('project')->getPairsByProgram('', 'all', true, 'order_desc');
|
|
$this->view->executions = $executions;
|
|
$this->view->products = $this->loadModel('product')->getPairs();
|
|
if(!empty($changeAdmin)) $this->app->user->admin = false;
|
|
|
|
$navGroup = array();
|
|
foreach($this->lang->navGroup as $moduleName => $groupName)
|
|
{
|
|
if($groupName == $moduleName) continue;
|
|
if($moduleName == 'testcase') $moduleName = 'case';
|
|
|
|
$navGroup[$groupName][$moduleName] = $moduleName;
|
|
}
|
|
$this->view->navGroup = $navGroup;
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Manage privleges of a group.
|
|
*
|
|
* @param int $groupID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function managePriv($type = 'byGroup', $param = 0, $menu = '', $version = '')
|
|
{
|
|
if($type == 'byGroup') $groupID = $param;
|
|
|
|
$this->view->type = $type;
|
|
foreach($this->lang->resource as $moduleName => $action)
|
|
{
|
|
if($this->group->checkMenuModule($menu, $moduleName) or $type != 'byGroup') $this->app->loadLang($moduleName);
|
|
}
|
|
|
|
if(!empty($_POST))
|
|
{
|
|
if($type == 'byGroup') $result = $this->group->updatePrivByGroup($groupID, $menu, $version);
|
|
if($type == 'byModule') $result = $this->group->updatePrivByModule();
|
|
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
|
|
|
|
if($type == 'byGroup') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'reload'));
|
|
if($type == 'byModule') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent'));
|
|
}
|
|
|
|
if($type == 'byGroup')
|
|
{
|
|
$this->group->sortResource();
|
|
$group = $this->group->getById($groupID);
|
|
$groupPrivs = $this->group->getPrivs($groupID);
|
|
|
|
$this->view->title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->managePriv;
|
|
$this->view->position[] = $group->name;
|
|
$this->view->position[] = $this->lang->group->managePriv;
|
|
|
|
/* Join changelog when be equal or greater than this version.*/
|
|
$realVersion = str_replace('_', '.', $version);
|
|
$changelog = array();
|
|
foreach($this->lang->changelog as $currentVersion => $currentChangeLog)
|
|
{
|
|
if(version_compare($currentVersion, $realVersion, '>=')) $changelog[] = join(',', $currentChangeLog);
|
|
}
|
|
|
|
$this->lang->custom->common = $this->lang->group->config;
|
|
if($this->config->edition == 'max' and $this->config->vision == 'rnd' and isset($this->lang->baseline)) $this->lang->baseline->common = $this->lang->group->docTemplate;
|
|
|
|
$this->view->group = $group;
|
|
$this->view->changelogs = ',' . join(',', $changelog) . ',';
|
|
$this->view->groupPrivs = $groupPrivs;
|
|
$this->view->groupID = $groupID;
|
|
$this->view->menu = $menu;
|
|
$this->view->version = $version;
|
|
}
|
|
elseif($type == 'byModule')
|
|
{
|
|
$this->group->sortResource();
|
|
$this->view->title = $this->lang->company->common . $this->lang->colon . $this->lang->group->managePriv;
|
|
$this->view->position[] = $this->lang->group->managePriv;
|
|
|
|
foreach($this->lang->resource as $module => $moduleActions)
|
|
{
|
|
$modules[$module] = $this->lang->$module->common;
|
|
foreach($moduleActions as $key => $action)
|
|
{
|
|
$actions[$module][$key] = $this->lang->$module->$action;
|
|
}
|
|
}
|
|
$this->view->groups = $this->group->getPairs();
|
|
$this->view->modules = $modules;
|
|
$this->view->actions = $actions;
|
|
}
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Manage members of a group.
|
|
*
|
|
* @param int $groupID
|
|
* @param int $deptID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function manageMember($groupID, $deptID = 0)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->group->updateUser($groupID);
|
|
if(isonlybody()) return print(js::closeModal('parent.parent', 'this'));
|
|
return print(js::locate($this->createLink('group', 'browse'), 'parent'));
|
|
}
|
|
$group = $this->group->getById($groupID);
|
|
$groupUsers = $this->group->getUserPairs($groupID);
|
|
$allUsers = $this->loadModel('dept')->getDeptUserPairs($deptID);
|
|
$otherUsers = array_diff_assoc($allUsers, $groupUsers);
|
|
$outsideUsers = $this->user->getPairs('outside|noclosed|noletter|noempty');
|
|
|
|
$this->view->outsideUsers = array_diff_assoc($outsideUsers, $groupUsers);
|
|
|
|
$title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageMember;
|
|
$position[] = $group->name;
|
|
$position[] = $this->lang->group->manageMember;
|
|
|
|
$this->view->title = $title;
|
|
$this->view->position = $position;
|
|
$this->view->group = $group;
|
|
$this->view->deptTree = $this->loadModel('dept')->getTreeMenu($rooteDeptID = 0, array('deptModel', 'createGroupManageMemberLink'), $groupID);
|
|
$this->view->groupUsers = $groupUsers;
|
|
$this->view->otherUsers = $otherUsers;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Manage members of a group.
|
|
*
|
|
* @param int $groupID
|
|
* @param int $deptID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function manageProjectAdmin($groupID, $deptID = 0)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->group->updateProjectAdmin($groupID);
|
|
return print(js::locate(inlink('manageProjectAdmin', "group=$groupID"), 'parent'));
|
|
}
|
|
|
|
list($programs, $projects, $products, $executions) = $this->group->getObject4AdminGroup();
|
|
|
|
$group = $this->group->getById($groupID);
|
|
$groupUsers = $this->dao->select('t1.account, t2.realname')->from(TABLE_PROJECTADMIN)->alias('t1')->leftJoin(TABLE_USER)->alias('t2')->on('t1.account = t2.account')->fetchPairs();
|
|
|
|
$title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageMember;
|
|
$position[] = $group->name;
|
|
$position[] = $this->lang->group->manageMember;
|
|
|
|
$this->view->title = $title;
|
|
$this->view->position = $position;
|
|
$this->view->allUsers = array('' => '') + $groupUsers + $this->loadModel('dept')->getDeptUserPairs($deptID);
|
|
$this->view->groupID = $groupID;
|
|
$this->view->deptID = $deptID;
|
|
$this->view->deptName = $deptID ? $this->dao->findById($deptID)->from(TABLE_DEPT)->fetch('name') : '';
|
|
$this->view->programs = $programs;
|
|
$this->view->projects = $projects;
|
|
$this->view->products = $products;
|
|
$this->view->executions = $executions;
|
|
$this->view->deptTree = $this->loadModel('dept')->getTreeMenu($rooteDeptID = 0, array('deptModel', 'createManageProjectAdminLink'), $groupID);
|
|
$this->view->projectAdmins = $this->group->getProjectAdmins();
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Delete a group.
|
|
*
|
|
* @param int $groupID
|
|
* @param string $confirm yes|no
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($groupID, $confirm = 'no')
|
|
{
|
|
if($confirm == 'no')
|
|
{
|
|
return print(js::confirm($this->lang->group->confirmDelete, $this->createLink('group', 'delete', "groupID=$groupID&confirm=yes")));
|
|
}
|
|
else
|
|
{
|
|
$this->group->delete($groupID);
|
|
|
|
/* if ajax request, send result. */
|
|
if($this->server->ajax)
|
|
{
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
}
|
|
else
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = '';
|
|
}
|
|
return $this->send($response);
|
|
}
|
|
return print(js::locate($this->createLink('group', 'browse'), 'parent'));
|
|
}
|
|
}
|
|
}
|