1256 lines
49 KiB
PHP
1256 lines
49 KiB
PHP
<?php
|
|
/**
|
|
* The model file of tree module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv11.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package tree
|
|
* @version $Id: model.php 5149 2013-07-16 01:47:01Z zhujinyonging@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php
|
|
class treeModel extends model
|
|
{
|
|
/**
|
|
* Get module by ID.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return object
|
|
*/
|
|
public function getByID($moduleID)
|
|
{
|
|
return $this->dao->findById((int)$moduleID)->from(TABLE_MODULE)->fetch();
|
|
}
|
|
|
|
/**
|
|
* Build the sql query.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $type
|
|
* @param int $startModule
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function buildMenuQuery($rootID, $type, $startModule, $branch = 0)
|
|
{
|
|
/* Set the start module. */
|
|
$startModulePath = '';
|
|
if($startModule > 0)
|
|
{
|
|
$startModule = $this->getById($startModule);
|
|
if($startModule) $startModulePath = $startModule->path . '%';
|
|
}
|
|
|
|
if($type == 'bug' or $type == 'case')
|
|
{
|
|
/* Get createdVersion. */
|
|
$createdVersion = $this->dao->select('createdVersion')->from(TABLE_PRODUCT)
|
|
->where('id')->eq($rootID)
|
|
->fetch('createdVersion');
|
|
|
|
if($createdVersion and version_compare($createdVersion, '4.1', '>'))
|
|
{
|
|
return $this->dao->select('*')->from(TABLE_MODULE)
|
|
->where('root')->eq((int)$rootID)
|
|
->andWhere('type')->in("story,$type")
|
|
->beginIF($startModulePath)->andWhere('path')->like($startModulePath)->fi()
|
|
->beginIF($branch === 'null')->andWhere('branch')->eq(0)->fi()
|
|
->beginIF((!empty($branch) and $branch != 'null'))->andWhere("branch")->eq($branch)->fi()
|
|
->orderBy('grade desc, type desc, `order`')
|
|
->get();
|
|
}
|
|
}
|
|
|
|
/* $createdVersion < 4.1 or $type == 'story','task'. */
|
|
return $this->dao->select('*')->from(TABLE_MODULE)
|
|
->where('root')->eq((int)$rootID)
|
|
->andWhere('type')->eq($type)
|
|
->beginIF($startModulePath)->andWhere('path')->like($startModulePath)->fi()
|
|
->beginIF($branch === 'null')->andWhere('branch')->eq(0)->fi()
|
|
->beginIF((!empty($branch) and $branch != 'null'))->andWhere("branch")->eq($branch)->fi()
|
|
->orderBy('grade desc, `order`')
|
|
->get();
|
|
}
|
|
|
|
/**
|
|
* Create an option menu in html.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $type
|
|
* @param int $startModule
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getOptionMenu($rootID, $type = 'story', $startModule = 0, $branch = 0)
|
|
{
|
|
$branches = array($branch => '');
|
|
if(strpos('story|bug|case', $type) !== false)
|
|
{
|
|
$product = $this->loadModel('product')->getById($rootID);
|
|
if($product->type != 'normal')
|
|
{
|
|
$branches = array('null' => '') + $this->loadModel('branch')->getPairs($rootID, 'noempty');
|
|
if($branch)
|
|
{
|
|
$newBranches['null'] = '';
|
|
$newBranches[$branch] = $branches[$branch];
|
|
$branches = $newBranches;
|
|
}
|
|
}
|
|
}
|
|
|
|
$treeMenu = array();
|
|
foreach($branches as $branchID => $branch)
|
|
{
|
|
$stmt = $this->dbh->query($this->buildMenuQuery($rootID, $type, $startModule, $branchID));
|
|
$modules = array();
|
|
while($module = $stmt->fetch()) $modules[$module->id] = $module;
|
|
|
|
foreach($modules as $module) $this->buildTreeArray($treeMenu, $modules, $module, (empty($branch) or $branch == 'null') ? '/' : "/$branch/");
|
|
}
|
|
|
|
ksort($treeMenu);
|
|
$topMenu = @array_shift($treeMenu);
|
|
$topMenu = explode("\n", trim($topMenu));
|
|
$lastMenu[] = '/';
|
|
foreach($topMenu as $menu)
|
|
{
|
|
if(!strpos($menu, '|')) continue;
|
|
list($label, $moduleID) = explode('|', $menu);
|
|
$lastMenu[$moduleID] = $label;
|
|
}
|
|
|
|
return $lastMenu;
|
|
}
|
|
|
|
/**
|
|
* Create an option menu of task in html.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $startModule
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getTaskOptionMenu($rootID, $productID = 0, $startModule = 0)
|
|
{
|
|
/* If createdVersion <= 4.1, go to getOptionMenu(). */
|
|
$createdVersion = $this->dao->select('openedVersion')->from(TABLE_PROJECT)->where('id')->eq($rootID)->fetch('openedVersion');
|
|
$products = $this->loadModel('product')->getProductsByProject($rootID);
|
|
$branchGroups = $this->loadModel('branch')->getByProducts(array_keys($products));
|
|
|
|
if(!$createdVersion or version_compare($createdVersion, '4.1', '<=') or !$products) return $this->getOptionMenu($rootID, 'task', $startModule);
|
|
|
|
/* createdVersion > 4.1. */
|
|
$startModulePath = '';
|
|
if($startModule > 0)
|
|
{
|
|
$startModule = $this->getById($startModule);
|
|
if($startModule)
|
|
{
|
|
$startModulePath = $startModule->path . '%';
|
|
$modulePaths = explode(",", $startModulePath);
|
|
$rootModule = $this->getById($modulePaths[0]);
|
|
$productID = $rootModule->root;
|
|
}
|
|
}
|
|
$treeMenu = array();
|
|
$lastMenu[] = '/';
|
|
$projectModules = $this->getTaskTreeModules($rootID, false, false);
|
|
$noProductModules = $this->dao->select('*')->from(TABLE_MODULE)->where("root = $rootID and type = 'task' and parent = 0")->fetchPairs('id', 'name');
|
|
|
|
/* Fix for not in product modules. */
|
|
$productNum = count($products);
|
|
foreach(array('product' => $products, 'noProduct' => $noProductModules) as $type => $rootModules)
|
|
{
|
|
foreach($rootModules as $id => $rootModule)
|
|
{
|
|
if($type == 'product')
|
|
{
|
|
$modules = $this->dao->select('*')->from(TABLE_MODULE)->where("((root = $rootID and type = 'task') OR (root = $id and type = 'story'))")
|
|
->beginIF($startModulePath)->andWhere('path')->like($startModulePath)->fi()
|
|
->orderBy('grade desc, type, `order`')
|
|
->fetchAll('id');
|
|
}
|
|
else
|
|
{
|
|
$modules = $this->dao->select('*')->from(TABLE_MODULE)->where("root = $rootID and type = 'task' and path like '%,$id,%'")
|
|
->beginIF($startModulePath)->andWhere('path')->like($startModulePath)->fi()
|
|
->orderBy('grade desc, type, `order`')
|
|
->fetchAll('id');
|
|
}
|
|
|
|
foreach($modules as $module)
|
|
{
|
|
$parentModules = explode(',', trim($module->path, ','));
|
|
if($type == 'product' and isset($noProductModules[$parentModules[0]])) continue;
|
|
$rootName = $rootModule;
|
|
if($type == 'product' and $module->branch and isset($branchGroups[$id][$module->branch])) $rootName .= '/' . $branchGroups[$id][$module->branch];
|
|
$this->buildTreeArray($treeMenu, $modules, $module, $productNum > 1 ? "/$rootName/" : '/');
|
|
}
|
|
|
|
ksort($treeMenu);
|
|
$topMenu = @array_shift($treeMenu);
|
|
$topMenu = explode("\n", trim($topMenu));
|
|
foreach($topMenu as $menu)
|
|
{
|
|
if(!strpos($menu, '|')) continue;
|
|
list($label, $moduleID) = explode('|', $menu);
|
|
if(isset($projectModules[$moduleID])) $lastMenu[$moduleID] = $label;
|
|
}
|
|
foreach($topMenu as $moduleID => $moduleName)
|
|
{
|
|
if(!isset($projectModules[$moduleID])) unset($treeMenu[$moduleID]);
|
|
}
|
|
}
|
|
}
|
|
return $lastMenu;
|
|
}
|
|
|
|
/**
|
|
* Build tree array.
|
|
*
|
|
* @param $&treeMenu
|
|
* @param array $modules
|
|
* @param object $module
|
|
* @param string $moduleName
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function buildTreeArray(& $treeMenu, $modules, $module, $moduleName = '/')
|
|
{
|
|
$parentModules = explode(',', $module->path);
|
|
foreach($parentModules as $parentModuleID)
|
|
{
|
|
if(empty($parentModuleID)) continue;
|
|
$moduleName .= $modules[$parentModuleID]->name . '/';
|
|
}
|
|
$moduleName = rtrim($moduleName, '/');
|
|
$moduleName .= "|$module->id\n";
|
|
|
|
if(isset($treeMenu[$module->id]) and !empty($treeMenu[$module->id]))
|
|
{
|
|
if(isset($treeMenu[$module->parent]))
|
|
{
|
|
$treeMenu[$module->parent] .= $moduleName;
|
|
}
|
|
else
|
|
{
|
|
$treeMenu[$module->parent] = $moduleName;;
|
|
}
|
|
$treeMenu[$module->parent] .= $treeMenu[$module->id];
|
|
}
|
|
else
|
|
{
|
|
if(isset($treeMenu[$module->parent]) and !empty($treeMenu[$module->parent]))
|
|
{
|
|
$treeMenu[$module->parent] .= $moduleName;
|
|
}
|
|
else
|
|
{
|
|
$treeMenu[$module->parent] = $moduleName;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the tree menu in html.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $type
|
|
* @param int $startModule
|
|
* @param string $userFunc the function used to create link
|
|
* @param string $extra extra params
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getTreeMenu($rootID, $type = 'root', $startModule = 0, $userFunc, $extra = '', $branch = 0)
|
|
{
|
|
$branches = array($branch => '');
|
|
$manage = $userFunc[1] == 'createManageLink' ? true : false;
|
|
if(strpos('story|bug|case', $type) !== false and empty($branch))
|
|
{
|
|
$product = $this->loadModel('product')->getById($rootID);
|
|
if($product->type != 'normal') $branches = array('null' => '') + $this->loadModel('branch')->getPairs($rootID, 'noempty');
|
|
}
|
|
|
|
/* Add for task #1945. check the module has case or no. */
|
|
if($type == 'case' and !empty($extra)) $this->loadModel('testtask');
|
|
$lastMenu = '';
|
|
foreach($branches as $branchID => $branch)
|
|
{
|
|
$treeMenu = array();
|
|
$stmt = $this->dbh->query($this->buildMenuQuery($rootID, $type, $startModule, $branchID));
|
|
while($module = $stmt->fetch()) $this->buildTree($treeMenu, $module, $type, $userFunc, $extra, $branchID);
|
|
if($type == 'case' and !empty($extra) and empty($treeMenu)) continue;
|
|
ksort($treeMenu);
|
|
if(!empty($branchID) and $branch and $branchID != 'null')
|
|
{
|
|
$linkHtml = $manage ? html::a(inlink('browse', "root=$rootID&viewType=$type¤tModuleID=0&branch=$branchID"), $branch) : $this->createBranchLink($type, $rootID, $branchID, $branch);
|
|
$lastMenu .= "<li>$linkHtml<ul>" . @array_shift($treeMenu) . "</ul></li>\n";
|
|
}
|
|
else
|
|
{
|
|
$lastMenu .= array_shift($treeMenu);
|
|
}
|
|
}
|
|
|
|
$lastMenu = "<ul class='tree'>$lastMenu</ul>\n";
|
|
return $lastMenu;
|
|
}
|
|
|
|
/**
|
|
* Get the tree menu of task in html.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $productID
|
|
* @param int $startModule
|
|
* @param int $userFunc
|
|
* @param string $extra
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getTaskTreeMenu($rootID, $productID = 0, $startModule = 0, $userFunc, $extra = '')
|
|
{
|
|
$extra = array('projectID' => $rootID, 'productID' => $productID, 'tip' => true);
|
|
|
|
/* If createdVersion <= 4.1, go to getTreeMenu(). */
|
|
$createdVersion = $this->dao->select('openedVersion')->from(TABLE_PROJECT)
|
|
->where('id')->eq($rootID)
|
|
->fetch('openedVersion');
|
|
$products = $this->loadModel('product')->getProductsByProject($rootID);
|
|
$productGroups = $this->dao->select('product,branch')->from(TABLE_PROJECTPRODUCT)->where('project')->eq($rootID)->fetchGroup('product', 'branch');
|
|
if(!$createdVersion or version_compare($createdVersion, '4.1', '<=') or !$products)
|
|
{
|
|
$extra['tip'] = false;
|
|
return $this->getTreeMenu($rootID, 'task', $startModule, $userFunc, $extra);
|
|
}
|
|
|
|
/* createdVersion > 4.1. */
|
|
$menu = "<ul class='tree'>";
|
|
|
|
/* Set the start module. */
|
|
$startModulePath = '';
|
|
if($startModule > 0)
|
|
{
|
|
$startModule = $this->getById($startModule);
|
|
if($startModule) $startModulePath = $startModule->path . '%';
|
|
}
|
|
|
|
$manage = $userFunc[1] == 'createTaskManageLink' ? true : false;
|
|
|
|
/* if not manage, only get linked modules and ignore others. */
|
|
if(!$manage) $projectModules = $this->getTaskTreeModules($rootID, true);
|
|
|
|
/* Get module according to product. */
|
|
$productNum = count($products);
|
|
foreach($products as $id => $product)
|
|
{
|
|
$extra['productID'] = $id;
|
|
if($manage)
|
|
{
|
|
$menu .= "<li>" . $product;
|
|
}
|
|
else
|
|
{
|
|
$link = helper::createLink('project', 'task', "root=$rootID&status=byProduct&praram=$id");
|
|
if($productNum > 1) $menu .= "<li>" . html::a($link, $product, '_self', "id='product$id'");
|
|
}
|
|
|
|
/* tree menu. */
|
|
$treeMenu = array();
|
|
$query = $this->dao->select('*')->from(TABLE_MODULE)->where("((root = $rootID and type = 'task' and parent != 0) OR (root = $id and type = 'story' and branch in(0," . (isset($productGroups[$id]) ? join(',', array_keys($productGroups[$id])) : 0) . ")))")
|
|
->beginIF($startModulePath)->andWhere('path')->like($startModulePath)->fi()
|
|
->orderBy('grade desc, type, `order`')
|
|
->get();
|
|
$stmt = $this->dbh->query($query);
|
|
while($module = $stmt->fetch())
|
|
{
|
|
/* if not manage, ignore unused modules. */
|
|
if(!$manage and !isset($projectModules[$module->id])) continue;
|
|
$this->buildTree($treeMenu, $module, 'task', $userFunc, $extra);
|
|
}
|
|
|
|
$tree = isset($treeMenu[0]) ? $treeMenu[0] : '';
|
|
if($productNum > 1 or $manage) $tree = "<ul>" . $tree . "</ul>\n</li>";
|
|
$menu .= $tree;
|
|
}
|
|
|
|
/* Get project module. */
|
|
if($startModule == 0)
|
|
{
|
|
/* tree menu. */
|
|
$treeMenu = array();
|
|
$query = $this->dao->select('*')->from(TABLE_MODULE)->where("root = $rootID and type = 'task'")->orderBy('grade desc, type, `order`')->get();
|
|
$stmt = $this->dbh->query($query);
|
|
while($module = $stmt->fetch())
|
|
{
|
|
/* if not manage, ignore unused modules. */
|
|
if(!$manage and !isset($projectModules[$module->id])) continue;
|
|
$this->buildTree($treeMenu, $module, 'task', $userFunc, $extra);
|
|
}
|
|
|
|
$tree = isset($treeMenu[0]) ? $treeMenu[0] : '';
|
|
$menu .= $tree . '</li>';
|
|
}
|
|
$menu .= '</ul>';
|
|
return $menu;
|
|
}
|
|
|
|
/**
|
|
* Get project story tree menu.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $startModule
|
|
* @param array $userFunc
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getProjectStoryTreeMenu($rootID, $startModule = 0, $userFunc)
|
|
{
|
|
$extra['projectID'] = $rootID;
|
|
$menu = "<ul class='tree'>";
|
|
$startModulePath = '';
|
|
if($startModule > 0)
|
|
{
|
|
$startModule = $this->getById($startModule);
|
|
if($startModule) $startModulePath = $startModule->path . '%';
|
|
}
|
|
|
|
$projectModules = $this->getTaskTreeModules($rootID, true);
|
|
|
|
/* Get module according to product. */
|
|
$products = $this->loadModel('product')->getProductsByProject($rootID);
|
|
$productNum = count($products);
|
|
foreach($products as $id => $product)
|
|
{
|
|
$extra['productID'] = $id;
|
|
$link = helper::createLink('project', 'story', "project=$rootID&ordery=&status=byProduct&praram=$id");
|
|
if($productNum > 1) $menu .= "<li>" . html::a($link, $product, '_self', "id='product$id'");
|
|
|
|
/* tree menu. */
|
|
$treeMenu = array();
|
|
$query = $this->dao->select('*')->from(TABLE_MODULE)->where("(root = $id and type = 'story')")
|
|
->beginIF($startModulePath)->andWhere('path')->like($startModulePath)->fi()
|
|
->orderBy('grade desc, type, `order`')
|
|
->get();
|
|
$stmt = $this->dbh->query($query);
|
|
while($module = $stmt->fetch())
|
|
{
|
|
/* if not manage, ignore unused modules. */
|
|
if(!isset($projectModules[$module->id])) continue;
|
|
if(!isset($projectModules[$module->id])) continue;
|
|
$this->buildTree($treeMenu, $module, 'task', $userFunc, $extra);
|
|
}
|
|
|
|
$tree = isset($treeMenu[0]) ? $treeMenu[0] : '';
|
|
if($productNum > 1) $tree = "<ul>" . $tree . "</ul>\n</li>";
|
|
$menu .= $tree;
|
|
}
|
|
|
|
$menu .= '</ul>';
|
|
return $menu;
|
|
}
|
|
|
|
/**
|
|
* Build tree.
|
|
*
|
|
* @param & $&treeMenu
|
|
* @param object $module
|
|
* @param string $type
|
|
* @param array $userFunc
|
|
* @param array $extra
|
|
* @param int $branch
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function buildTree(& $treeMenu, $module, $type, $userFunc, $extra, $branch = 0)
|
|
{
|
|
/* Add for task #1945. check the module has case or no. */
|
|
if($type == 'case' and !empty($extra))
|
|
{
|
|
$modules = $this->getAllChildID($module->id);
|
|
$runs = $this->testtask->getRuns($extra, $modules, 'id');
|
|
if(empty($runs)) return;
|
|
}
|
|
|
|
$extra['branchID'] = $branch;
|
|
$linkHtml = call_user_func($userFunc, $type, $module, $extra);
|
|
|
|
if(isset($treeMenu[$module->id]) and !empty($treeMenu[$module->id]))
|
|
{
|
|
if(!isset($treeMenu[$module->parent])) $treeMenu[$module->parent] = '';
|
|
$treeMenu[$module->parent] .= "<li class='closed'>$linkHtml";
|
|
$treeMenu[$module->parent] .= "<ul>" . $treeMenu[$module->id] . "</ul>\n";
|
|
}
|
|
else
|
|
{
|
|
if(isset($treeMenu[$module->parent]) and !empty($treeMenu[$module->parent]))
|
|
{
|
|
$treeMenu[$module->parent] .= "<li>$linkHtml\n";
|
|
}
|
|
else
|
|
{
|
|
$treeMenu[$module->parent] = "<li>$linkHtml\n";
|
|
}
|
|
}
|
|
$treeMenu[$module->parent] .= "</li>\n";
|
|
}
|
|
|
|
/**
|
|
* Get project modules.
|
|
*
|
|
* @param int $projectID
|
|
* @param bool $parent
|
|
* @param bool $linkStory
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getTaskTreeModules($projectID, $parent = false, $linkStory = true)
|
|
{
|
|
$projectModules = array();
|
|
$field = $parent ? 'path' : 'id';
|
|
|
|
if($linkStory)
|
|
{
|
|
/* Get story paths of this project. */
|
|
$paths = $this->dao->select('DISTINCT t3.' . $field)->from(TABLE_PROJECTSTORY)->alias('t1')
|
|
->leftJoin(TABLE_STORY)->alias('t2')->on('t1.story = t2.id')
|
|
->leftJoin(TABLE_MODULE)->alias('t3')->on('t2.module = t3.id')
|
|
->where('t1.project')->eq($projectID)
|
|
->fetchPairs();
|
|
}
|
|
else
|
|
{
|
|
$productGroups = $this->dao->select('product,branch')->from(TABLE_PROJECTPRODUCT)->where('project')->eq($projectID)->fetchGroup('product', 'branch');
|
|
$modules = $this->dao->select('id,root,branch')->from(TABLE_MODULE)
|
|
->where('root')->in(array_keys($productGroups))
|
|
->andWhere('type')->eq('story')
|
|
->fetchAll();
|
|
|
|
$paths = array();
|
|
foreach($modules as $module)
|
|
{
|
|
if(empty($module->branch)) $paths[$module->id] = $module->id;
|
|
if(isset($productGroups[$module->root][$module->branch])) $paths[$module->id] = $module->id;
|
|
}
|
|
}
|
|
|
|
/* Add task paths of this project.*/
|
|
$paths += $this->dao->select($field)->from(TABLE_MODULE)
|
|
->where('root')->eq($projectID)
|
|
->andWhere('type')->eq('task')
|
|
->fetchPairs();
|
|
|
|
/* Add task paths of this project for has existed. */
|
|
$paths += $this->dao->select('DISTINCT t1.' . $field)->from(TABLE_MODULE)->alias('t1')
|
|
->leftJoin(TABLE_TASK)->alias('t2')->on('t1.id=t2.module')
|
|
->where('t2.module')->ne(0)
|
|
->andWhere('t2.project')->eq($projectID)
|
|
->andWhere('t2.deleted')->eq(0)
|
|
->andWhere('t1.type')->eq('story')
|
|
->fetchPairs();
|
|
|
|
/* Get all modules from paths. */
|
|
foreach($paths as $path)
|
|
{
|
|
$modules = explode(',', $path);
|
|
foreach($modules as $module) $projectModules[$module] = $module;
|
|
}
|
|
return $projectModules;
|
|
}
|
|
|
|
/**
|
|
* Get the tree menu of product document library.
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getProductDocTreeMenu()
|
|
{
|
|
$menu = "<ul class='tree'>";
|
|
$products = $this->loadModel('product')->getPairs('nocode');
|
|
|
|
$productModules = $this->getTreeMenu(0, 'productdoc', 0, array('treeModel', 'createDocLink'), 'product');
|
|
$productModules = substr($productModules, 17, strlen($productModules) - 23);
|
|
$projectModules = $this->getTreeMenu(0, 'projectdoc', 0, array('treeModel', 'createDocLink'), 'product');
|
|
$projectModules = substr($projectModules, 17, strlen($projectModules) - 23);
|
|
|
|
foreach($products as $productID =>$productName)
|
|
{
|
|
$menu .= '<li>';
|
|
$menu .= html::a(helper::createLink('doc', 'browse', "libID=product&module=0&productID=$productID"), $productName);
|
|
if(!empty($productModules))
|
|
{
|
|
$menu .= '<ul>';
|
|
$menu .= str_replace('%productID%', $productID, $productModules);
|
|
|
|
if(!empty($projectModules))
|
|
{
|
|
$menu .= '<li>';
|
|
$menu .= html::a(helper::createLink('doc', 'browse', "libID=product&module=0&productID=$productID&projectID=int"), $this->lang->tree->projectDoc);
|
|
$menu .= '<ul>';
|
|
$menu .= str_replace('%productID%', $productID, $projectModules);
|
|
$menu .= '</ul></li>';
|
|
}
|
|
$menu .= '</ul>';
|
|
}
|
|
$menu .='</li>';
|
|
}
|
|
$menu .= '</ul>';
|
|
return $menu;
|
|
}
|
|
|
|
/**
|
|
* Get the tree menu of project document library.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getProjectDocTreeMenu()
|
|
{
|
|
$menu = "<ul class='tree'>";
|
|
$products = $this->loadModel('product')->getPairs('nocode');
|
|
$projects = $this->loadModel('project')->getProductGroupList();
|
|
|
|
$projectModules = $this->getTreeMenu(0, 'projectdoc', 0, array('treeModel', 'createDocLink'), 'project');
|
|
$projectModules = substr($projectModules, 17, strlen($projectModules) - 23);
|
|
|
|
foreach($projects as $id => $project)
|
|
{
|
|
if($id == '')
|
|
{
|
|
$projects[0] = $projects[''];
|
|
unset($projects['']);
|
|
}
|
|
}
|
|
|
|
if(!empty($projects[0])) $products[0] = $this->lang->project->noProduct;
|
|
|
|
foreach($products as $productID => $productName)
|
|
{
|
|
$menu .= '<li>';
|
|
$menu .= $productName;
|
|
|
|
if(isset($projects[$productID]))
|
|
{
|
|
$menu .= '<ul>';
|
|
foreach($projects[$productID] as $project)
|
|
{
|
|
$menu .= '<li>' . html::a(helper::createLink('doc', 'browse', "libID=project&module=0&productID=0&projectID=$project->id"), $project->name);
|
|
if(!empty($projectModules))
|
|
{
|
|
$menu .= '<ul>';
|
|
$menu .= str_replace('%projectID%', $project->id, $projectModules);
|
|
$menu .= '</ul>';
|
|
}
|
|
$menu .= '</li>';
|
|
}
|
|
$menu .='</ul>';
|
|
}
|
|
$menu .='</li>';
|
|
}
|
|
|
|
$menu .= '</ul>';
|
|
return $menu;
|
|
}
|
|
|
|
/**
|
|
* Create link of a story.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createStoryLink($type, $module)
|
|
{
|
|
$linkHtml = html::a(helper::createLink('product', 'browse', "root={$module->root}&branch=&type=byModule¶m={$module->id}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create link of a task.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createTaskLink($type, $module, $extra)
|
|
{
|
|
$projectID = $extra['projectID'];
|
|
$productID = $extra['productID'];
|
|
$linkHtml = html::a(helper::createLink('project', 'task', "root={$projectID}&type=byModule¶m={$module->id}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create link of project story.
|
|
*
|
|
* @param string $type
|
|
* @param object $module
|
|
* @param array $extra
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createProjectStoryLink($type, $module, $extra)
|
|
{
|
|
$projectID = $extra['projectID'];
|
|
$productID = $extra['productID'];
|
|
$linkHtml = html::a(helper::createLink('project', 'story', "root={$projectID}&orderBy=&type=byModule¶m={$module->id}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create link of a doc.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createDocLink($type, $module, $extra = '')
|
|
{
|
|
$libID = $module->root;
|
|
$append = '';
|
|
if($extra == 'product')
|
|
{
|
|
$libID = 'product';
|
|
$append = '&productID=%productID%';
|
|
}
|
|
elseif($extra == 'project')
|
|
{
|
|
$libID = 'project';
|
|
$append = '&productID=0&projectID=%projectID%';
|
|
}
|
|
|
|
$linkHtml = html::a(helper::createLink('doc', 'browse', "libID={$libID}&module={$module->id}{$append}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create the manage link of a module.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createManageLink($type, $module, $extra)
|
|
{
|
|
$branchID = $extra['branchID'];
|
|
$tip = strpos('bug,case', $type) === false ? '' : ' <span style="font-size:smaller;">[' . strtoupper(substr($type, 0, 1)) . ']</span>';
|
|
static $users;
|
|
if(empty($users)) $users = $this->loadModel('user')->getPairs('noletter');
|
|
$linkHtml = $module->name;
|
|
$linkHtml .= $module->type != 'story' ? $tip : '';
|
|
if($type == 'bug' and $module->owner) $linkHtml .= '<span class="owner">[' . $users[$module->owner] . ']</span>';
|
|
if($type != 'story' and $module->type == 'story')
|
|
{
|
|
if(common::hasPriv('tree', 'edit') and $type == 'bug') $linkHtml .= ' ' . html::a(helper::createLink('tree', 'edit', "module={$module->id}&type=$type&branch=$branchID"), $this->lang->tree->edit, '', 'data-toggle="modal" data-type="ajax"');
|
|
if(common::hasPriv('tree', 'browse')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'browse', "root={$module->root}&type=$type&module={$module->id}&branch=$branchID"), $this->lang->tree->child);
|
|
}
|
|
else
|
|
{
|
|
if(common::hasPriv('tree', 'edit')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'edit', "module={$module->id}&type=$type&branch=$branchID"), $this->lang->tree->edit, '', 'data-toggle="modal" data-type="ajax" data-width="500"');
|
|
if(common::hasPriv('tree', 'browse') and strpos($this->config->tree->noBrowse, ",$module->type,") === false) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'browse', "root={$module->root}&type=$type&module={$module->id}&branch=$branchID"), $this->lang->tree->child);
|
|
if(common::hasPriv('tree', 'delete')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'delete', "root={$module->root}&module={$module->id}"), $this->lang->delete, 'hiddenwin');
|
|
if(common::hasPriv('tree', 'updateorder')) $linkHtml .= ' ' . html::input("orders[$module->id]", $module->order, 'class="text-center w-30px form-control inline input-sm"');
|
|
}
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create the task manage link of a module.
|
|
*
|
|
* @param int $productID
|
|
* @param int $module
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function createTaskManageLink($type, $module, $extra)
|
|
{
|
|
$projectID = $extra['projectID'];
|
|
$productID = $extra['productID'];
|
|
$tip = $extra['tip'];
|
|
$linkHtml = $module->name;
|
|
$linkHtml .= ($tip and $module->type != 'story') ? ' [T]' : '';
|
|
if($module->type == 'story')
|
|
{
|
|
if(common::hasPriv('tree', 'browseTask')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'browsetask', "rootID=$projectID&productID=$productID&module={$module->id}"), $this->lang->tree->child);
|
|
}
|
|
else
|
|
{
|
|
if(common::hasPriv('tree', 'edit')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'edit', "module={$module->id}&type=task"), $this->lang->tree->edit, '', 'data-toggle="modal" data-type="ajax"');
|
|
if(common::hasPriv('tree', 'browseTask')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'browsetask', "rootID=$projectID&productID=$productID&module={$module->id}"), $this->lang->tree->child);
|
|
if(common::hasPriv('tree', 'delete')) $linkHtml .= ' ' . html::a(helper::createLink('tree', 'delete', "root={$module->root}&module={$module->id}"), $this->lang->delete, 'hiddenwin');
|
|
if(common::hasPriv('tree', 'updateorder')) $linkHtml .= ' ' . html::input("orders[$module->id]", $module->order, 'style="width:30px;text-align:center"');
|
|
}
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create link of a bug.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createBugLink($type, $module)
|
|
{
|
|
$linkHtml = html::a(helper::createLink('bug', 'browse', "root={$module->root}&branch=&type=byModule¶m={$module->id}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create link of a test case.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createCaseLink($type, $module)
|
|
{
|
|
$linkHtml = html::a(helper::createLink('testcase', 'browse', "root={$module->root}&branch=&type=byModule¶m={$module->id}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
/**
|
|
* Create link of a test task.
|
|
*
|
|
* @param object $module
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function createTestTaskLink($type, $module, $extra)
|
|
{
|
|
$linkHtml = html::a(helper::createLink('testtask', 'cases', "taskID=$extra&type=byModule&module={$module->id}"), $module->name, '_self', "id='module{$module->id}'");
|
|
return $linkHtml;
|
|
}
|
|
|
|
public function createBranchLink($type, $rootID, $branchID, $branch)
|
|
{
|
|
if($type == 'story') return html::a(helper::createLink('product', 'browse', "productID={$rootID}&branch=$branchID"), $branch, '_self', "id='branch{$branchID}'");
|
|
if($type == 'bug') return html::a(helper::createLink('bug', 'browse', "productID={$rootID}&branch=$branchID"), $branch, '_self', "id='branch{$branchID}'");
|
|
if($type == 'case') return html::a(helper::createLink('testcase', 'browse', "productID={$rootID}&branch=$branchID"), $branch, '_self', "id='branch{$branchID}'");
|
|
}
|
|
|
|
/**
|
|
* Get sons of a module.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $moduleID
|
|
* @param string $type
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getSons($rootID, $moduleID, $type = 'root', $branch = 0)
|
|
{
|
|
$createdVersion = $this->dao->select('createdVersion')->from(TABLE_PRODUCT)
|
|
->where('id')->eq($rootID)
|
|
->fetch('createdVersion');
|
|
|
|
/* if createVersion <= 4.1 or type == 'story', only get modules of its type. */
|
|
if(!$createdVersion or version_compare($createdVersion, '4.1', '<=') or $type == 'story')
|
|
{
|
|
return $this->dao->select('*')->from(TABLE_MODULE)
|
|
->where('root')->eq((int)$rootID)
|
|
->andWhere('parent')->eq((int)$moduleID)
|
|
->andWhere('type')->eq($type)
|
|
->beginIF(empty($branch))->andWhere("branch")->eq(0)->fi()
|
|
->beginIF(!empty($branch))->andWhere("branch")->eq($branch)->fi()
|
|
->orderBy('`order`')
|
|
->fetchAll();
|
|
}
|
|
|
|
/* else get modules of its type and story type. */
|
|
if(strpos('task|case|bug', $type) !== false) $type = "$type,story";
|
|
return $this->dao->select('*')->from(TABLE_MODULE)
|
|
->where('root')->eq((int)$rootID)
|
|
->andWhere('parent')->eq((int)$moduleID)
|
|
->andWhere('type')->in($type)
|
|
->beginIF(empty($branch))->andWhere("branch")->eq(0)->fi()
|
|
->beginIF(!empty($branch))->andWhere("branch")->eq($branch)->fi()
|
|
->orderBy('type desc,`order`')
|
|
->fetchAll();
|
|
}
|
|
|
|
/**
|
|
* Get sons of a task module.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $productID
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getTaskSons($rootID, $productID, $moduleID)
|
|
{
|
|
if($moduleID)
|
|
{
|
|
return $this->dao->select('*')->from(TABLE_MODULE)
|
|
->where('root')->eq((int)$rootID)
|
|
->andWhere('parent')->eq((int)$moduleID)
|
|
->andWhere('type')->in("task,story")
|
|
->orderBy('type,`order`')
|
|
->fetchAll();
|
|
}
|
|
else
|
|
{
|
|
return $this->dao->select('*')->from(TABLE_MODULE)
|
|
->where('parent')->eq(0)
|
|
->andWhere("root = $rootID and type = 'task'")
|
|
->orWhere("root = $productID and type = 'story'")
|
|
->orderBy('type,`order`')
|
|
->fetchAll();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get id list of a module's childs.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getAllChildId($moduleID)
|
|
{
|
|
if($moduleID == 0) return array();
|
|
|
|
$module = $this->getById((int)$moduleID);
|
|
if(empty($module)) return array();
|
|
|
|
return $this->dao->select('id')->from(TABLE_MODULE)->where('path')->like($module->path . '%')->fetchPairs();
|
|
}
|
|
|
|
/**
|
|
* Get project module.
|
|
*
|
|
* @param int $projectID
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getProjectModule($projectID, $productID = 0)
|
|
{
|
|
$modules = array();
|
|
$rootModules = $this->dao->select('path')->from(TABLE_MODULE)
|
|
->where('root')->eq($productID)
|
|
->andWhere('type')->eq('story')
|
|
->andWhere('parent')->eq(0)
|
|
->fetchAll();
|
|
foreach($rootModules as $module)
|
|
{
|
|
$modules += $this->dao->select('id')->from(TABLE_MODULE)
|
|
->where('path')->like($module->path . '%')
|
|
->fetchPairs();
|
|
}
|
|
return $modules;
|
|
}
|
|
|
|
/**
|
|
* Get parents of a module.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getParents($moduleID)
|
|
{
|
|
if($moduleID == 0) return array();
|
|
$path = $this->dao->select('path')->from(TABLE_MODULE)->where('id')->eq((int)$moduleID)->fetch('path');
|
|
$path = trim($path, ',');
|
|
if(!$path) return array();
|
|
return $this->dao->select('*')->from(TABLE_MODULE)->where('id')->in($path)->orderBy('grade')->fetchAll();
|
|
}
|
|
|
|
/**
|
|
* Get product by moduleID.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getProduct($moduleID)
|
|
{
|
|
if($moduleID == 0) return '';
|
|
$path = $this->dao->select('path')->from(TABLE_MODULE)->where('id')->eq((int)$moduleID)->fetch('path');
|
|
$paths = explode(',', trim($path, ','));
|
|
if(!$path) return '';
|
|
$moduleID = $paths[0];
|
|
$module = $this->dao->select('*')->from(TABLE_MODULE)->where('id')->eq($moduleID)->fetch();
|
|
if($module->type != 'story' or !$module->root) return '';
|
|
return $this->dao->select('name')->from(TABLE_PRODUCT)->where('id')->eq($module->root)->fetch();
|
|
}
|
|
|
|
/**
|
|
* Get the module that its type == 'story'.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getStoryModule($moduleID)
|
|
{
|
|
$module = $this->dao->select('id,type,parent')->from(TABLE_MODULE)->where('id')->eq((int)$moduleID)->fetch();
|
|
if(empty($module)) return 0;
|
|
|
|
while(!empty($module) and $module->id and $module->type != 'story')
|
|
{
|
|
$module = $this->dao->select('id,type,parent')->from(TABLE_MODULE)->where('id')->eq($module->parent)->fetch();
|
|
}
|
|
|
|
return empty($module) ? 0 : $module->id;
|
|
}
|
|
|
|
/**
|
|
* Update modules' order.
|
|
*
|
|
* @param array $orders
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function updateOrder($orders)
|
|
{
|
|
asort($orders);
|
|
$orderInfo = $this->dao->select('id,grade, parent, branch')->from(TABLE_MODULE)->where('id')->in(array_keys($orders))->fetchAll('id');
|
|
$newOrders = array();
|
|
foreach($orders as $moduleID => $order)
|
|
{
|
|
$parent = $orderInfo[$moduleID]->parent;
|
|
$grade = $orderInfo[$moduleID]->grade;
|
|
$branch = $orderInfo[$moduleID]->branch;
|
|
|
|
if(!isset($newOrders[$parent][$grade][$branch]))
|
|
{
|
|
$newOrders[$parent][$grade][$branch] = 1;
|
|
}
|
|
else
|
|
{
|
|
$newOrders[$parent][$grade][$branch] ++;
|
|
}
|
|
|
|
$newOrder = $newOrders[$parent][$grade][$branch] * 10;
|
|
$this->dao->update(TABLE_MODULE)->set('`order`')->eq($newOrder)->where('id')->eq((int)$moduleID)->limit(1)->exec();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Manage childs of a module.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $type
|
|
* @param int $parentModuleID
|
|
* @param array $childs
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function manageChild($rootID, $type, $parentModuleID, $childs)
|
|
{
|
|
$parentModule = $this->getByID($parentModuleID);
|
|
$branches = $this->post->branch;
|
|
if($parentModule)
|
|
{
|
|
$grade = $parentModule->grade + 1;
|
|
$parentPath = $parentModule->path;
|
|
}
|
|
else
|
|
{
|
|
$grade = 1;
|
|
$parentPath = ',';
|
|
}
|
|
$i = 1;
|
|
foreach($childs as $moduleID => $moduleName)
|
|
{
|
|
if(empty($moduleName)) continue;
|
|
|
|
/* The new modules. */
|
|
if(is_numeric($moduleID))
|
|
{
|
|
$module = new stdClass();
|
|
$module->root = $rootID;
|
|
$module->name = strip_tags($moduleName);
|
|
$module->parent = $parentModuleID;
|
|
$module->branch = $branches[$moduleID];
|
|
$module->grade = $grade;
|
|
$module->type = $type;
|
|
$module->order = $this->post->maxOrder + $i * 10;
|
|
$this->dao->insert(TABLE_MODULE)->data($module)->exec();
|
|
$moduleID = $this->dao->lastInsertID();
|
|
$childPath = $parentPath . "$moduleID,";
|
|
$this->dao->update(TABLE_MODULE)->set('path')->eq($childPath)->where('id')->eq($moduleID)->limit(1)->exec();
|
|
$i ++;
|
|
}
|
|
else
|
|
{
|
|
$moduleID = str_replace('id', '', $moduleID);
|
|
$this->dao->update(TABLE_MODULE)->set('name')->eq(strip_tags($moduleName))->where('id')->eq($moduleID)->limit(1)->exec();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update a module.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function update($moduleID)
|
|
{
|
|
$module = fixer::input('post')->get();
|
|
$self = $this->getById($moduleID);
|
|
$parent = $this->getById($this->post->parent);
|
|
$childs = $this->getAllChildId($moduleID);
|
|
$module->grade = $parent ? $parent->grade + 1 : 1;
|
|
$module->path = $parent ? $parent->path . $moduleID . ',' : ',' . $moduleID . ',';
|
|
$this->dao->update(TABLE_MODULE)->data($module)->autoCheck()->check('name', 'notempty')->where('id')->eq($moduleID)->exec();
|
|
$this->dao->update(TABLE_MODULE)->set('grade = grade + 1')->where('id')->in($childs)->andWhere('id')->ne($moduleID)->exec();
|
|
$this->dao->update(TABLE_MODULE)->set('owner')->eq($this->post->owner)->where('id')->in($childs)->andWhere('owner')->eq('')->exec();
|
|
$this->dao->update(TABLE_MODULE)->set('owner')->eq($this->post->owner)->where('id')->in($childs)->andWhere('owner')->eq($self->owner)->exec();
|
|
if(isset($module->root) and $module->root != $self->root) $this->dao->update(TABLE_MODULE)->set('root')->eq($module->root)->where('id')->in($childs)->exec();
|
|
$this->fixModulePath(isset($module->root) ? $module->root : $self->root, $self->type);
|
|
if(isset($module->root) and $module->root != $self->root) $this->changeRoot($moduleID, $self->root, $module->root, $self->type);
|
|
}
|
|
|
|
/**
|
|
* Change root.
|
|
*
|
|
* @param int $moduleID
|
|
* @param int $oldRoot
|
|
* @param int $newRoot
|
|
* @param string $type
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function changeRoot($moduleID, $oldRoot, $newRoot, $type)
|
|
{
|
|
/* Get all children id list. */
|
|
$childIdList = $this->dao->select('id')->from(TABLE_MODULE)->where('path')->like("%,$moduleID,%")->fetchPairs('id', 'id');
|
|
|
|
/* Update product field for stories, bugs, cases under this module. */
|
|
$this->dao->update(TABLE_STORY)->set('product')->eq($newRoot)->where('module')->in($childIdList)->exec();
|
|
$this->dao->update(TABLE_BUG)->set('product')->eq($newRoot)->where('module')->in($childIdList)->exec();
|
|
$this->dao->update(TABLE_CASE)->set('product')->eq($newRoot)->where('module')->in($childIdList)->exec();
|
|
|
|
if($type != 'story') return;
|
|
|
|
/* If the type if story, check it's releated projects. */
|
|
$projectStories = $this->dao->select('DISTINCT t1.id,t1.version,t2.project')
|
|
->from(TABLE_STORY)->alias('t1')
|
|
->leftJoin(TABLE_PROJECTSTORY)->alias('t2')->on('t1.id=t2.story')
|
|
->where('t1.module')->in($childIdList)
|
|
->andWhere('t2.product')->eq($oldRoot)
|
|
->fetchAll('id');
|
|
$projects = array();
|
|
foreach($projectStories as $story)
|
|
{
|
|
$this->dao->update(TABLE_PROJECTSTORY)
|
|
->set('product')->eq($newRoot)
|
|
->where('project')->eq($story->project)
|
|
->andWhere('story')->eq($story->id)
|
|
->andWhere('version')->eq($story->version)
|
|
->exec();
|
|
$projects[$story->project] = $story->project;
|
|
}
|
|
|
|
if($projects)
|
|
{
|
|
$projectProduct = $this->dao->select('*')->from(TABLE_PROJECTPRODUCT)->where('project')->in($projects)->fetchGroup('project', 'product');
|
|
$linkedProduct = $this->dao->select('DISTINCT project,product')->from(TABLE_PROJECTSTORY)->where('project')->in($projects)->fetchGroup('project', 'product');
|
|
foreach($projects as $project)
|
|
{
|
|
if(!isset($projectProduct[$project]) or !in_array($newRoot, array_keys($projectProduct[$project]))) $this->dao->insert(TABLE_PROJECTPRODUCT)->set('project')->eq($project)->set('product')->eq($newRoot)->exec();
|
|
if(isset($linkedProduct[$project]) and !in_array($oldRoot, array_keys($linkedProduct[$project])))
|
|
{
|
|
$this->dao->delete()->from(TABLE_PROJECTPRODUCT)->where('project')->eq($project)->andWhere('product')->eq($oldRoot)->exec();
|
|
$this->dao->update(TABLE_BUILD)->set('product')->eq($newRoot)->where('product')->eq($oldRoot)->andWhere('project')->eq($project)->exec();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Delete a module.
|
|
*
|
|
* @param int $moduleID
|
|
* @param null $null compatible with that of model::delete()
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($moduleID, $null = null)
|
|
{
|
|
$module = $this->getById($moduleID);
|
|
if(empty($module)) return false;
|
|
|
|
$childs = $this->getAllChildId($moduleID);
|
|
$childs[$moduleID] = $moduleID;
|
|
|
|
$this->dao->delete()->from(TABLE_MODULE)->where('id')->in($childs)->exec();
|
|
$this->fixModulePath($module->root, $module->type);
|
|
|
|
if($module->type == 'task') $this->dao->update(TABLE_TASK)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
if($module->type == 'bug') $this->dao->update(TABLE_BUG)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
if($module->type == 'case') $this->dao->update(TABLE_CASE)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
if($module->type == 'story')
|
|
{
|
|
$this->dao->update(TABLE_STORY)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
$this->dao->update(TABLE_TASK)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
$this->dao->update(TABLE_BUG)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
$this->dao->update(TABLE_CASE)->set('module')->eq($module->parent)->where('module')->in($childs)->exec();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Fix the path, grade fields according to the id and parent fields.
|
|
*
|
|
* @param string $root
|
|
* @param string $type
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function fixModulePath($root, $type)
|
|
{
|
|
/* Get all modules grouped by parent. */
|
|
if($type == 'bug' or $type == 'case') $type = 'story,' . $type;
|
|
$groupModules = $this->dao->select('id, parent, branch')->from(TABLE_MODULE)->where('root')->eq($root)->andWhere('type')->in($type)->fetchGroup('parent', 'id');
|
|
$modules = array();
|
|
|
|
/* Cycle the groupModules until it has no item any more. */
|
|
while(count($groupModules) > 0)
|
|
{
|
|
$oldCounts = count($groupModules); // Record the counts before processing.
|
|
foreach($groupModules as $parentModuleID => $childModules)
|
|
{
|
|
/* If the parentModule doesn't exsit in the modules, skip it. If exists, compute it's child modules. */
|
|
if(!isset($modules[$parentModuleID]) and $parentModuleID != 0) continue;
|
|
if($parentModuleID == 0)
|
|
{
|
|
$parentModule = new stdclass();
|
|
$parentModule->grade = 0;
|
|
$parentModule->path = ',';
|
|
}
|
|
else
|
|
{
|
|
$parentModule = $modules[$parentModuleID];
|
|
}
|
|
|
|
/* Compute it's child modules. */
|
|
foreach($childModules as $childModuleID => $childModule)
|
|
{
|
|
$childModule->grade = $parentModule->grade + 1;
|
|
$childModule->path = $parentModule->path . $childModule->id . ',';
|
|
if(isset($parentModule->branch))$childModule->branch = $parentModule->branch;
|
|
$modules[$childModuleID] = $childModule; // Save child module to modules, thus the child of child can compute it's grade and path.
|
|
}
|
|
unset($groupModules[$parentModuleID]); // Remove it from the groupModules.
|
|
}
|
|
if(count($groupModules) == $oldCounts) break; // If after processing, no module processed, break the cycle.
|
|
}
|
|
|
|
/* Save modules to database. */
|
|
foreach($modules as $module) $this->dao->update(TABLE_MODULE)->data($module)->where('id')->eq($module->id)->limit(1)->exec();
|
|
}
|
|
}
|