1894 lines
81 KiB
PHP
1894 lines
81 KiB
PHP
<?php
|
|
/**
|
|
* The control file of bug currentModule of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package bug
|
|
* @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class bug extends control
|
|
{
|
|
/**
|
|
* All products.
|
|
*
|
|
* @var array
|
|
* @access public
|
|
*/
|
|
public $products = array();
|
|
|
|
/**
|
|
* Project id.
|
|
*
|
|
* @var int
|
|
* @access public
|
|
*/
|
|
public $projectID = 0;
|
|
|
|
/**
|
|
* Construct function, load some modules auto.
|
|
*
|
|
* @param string $moduleName
|
|
* @param string $methodName
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function __construct($moduleName = '', $methodName = '')
|
|
{
|
|
parent::__construct($moduleName, $methodName);
|
|
$products = array();
|
|
$this->loadModel('product');
|
|
$this->loadModel('tree');
|
|
$this->loadModel('user');
|
|
$this->loadModel('action');
|
|
$this->loadModel('story');
|
|
$this->loadModel('task');
|
|
$this->loadModel('qa');
|
|
|
|
/* Get product data. */
|
|
$objectID = 0;
|
|
if($this->app->openApp == 'project')
|
|
{
|
|
$objectID = $this->session->project;
|
|
$products = $this->loadModel('project')->getProducts($objectID, false);
|
|
}
|
|
elseif($this->app->openApp == 'execution')
|
|
{
|
|
$objectID = $this->session->execution;
|
|
$products = $this->loadModel('execution')->getProducts($objectID, false);
|
|
}
|
|
else
|
|
{
|
|
$products = $this->product->getPairs();
|
|
}
|
|
|
|
$this->view->products = $this->products = $products;
|
|
$openApp = ($this->app->openApp == 'project' or $this->app->openApp == 'execution') ? $this->app->openApp : 'qa';
|
|
if(empty($this->products) and !helper::isAjaxRequest()) die($this->locate($this->createLink('product', 'showErrorNone', "moduleName=$openApp&activeMenu=bug&objectID=$objectID")));
|
|
}
|
|
|
|
/**
|
|
* The index page, locate to browse.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->locate($this->createLink('bug', 'browse'));
|
|
}
|
|
|
|
/**
|
|
* Browse bugs.
|
|
*
|
|
* @param int $productID
|
|
* @param string $branch
|
|
* @param string $browseType
|
|
* @param int $param
|
|
* @param string $orderBy
|
|
* @param int $recTotal
|
|
* @param int $recPerPage
|
|
* @param int $pageID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function browse($productID = 0, $branch = '', $browseType = '', $param = 0, $orderBy = '', $recTotal = 0, $recPerPage = 20, $pageID = 1)
|
|
{
|
|
$this->loadModel('datatable');
|
|
|
|
$products = $this->loadModel('product')->getPairs('noclosed');
|
|
$productID = $this->product->saveState($productID, $products);
|
|
$this->qa->setMenu($products, $productID);
|
|
|
|
/* Set browse type. */
|
|
$browseType = strtolower($browseType);
|
|
|
|
/* Set productID, moduleID, queryID and branch. */
|
|
if(!$this->projectID) $productID = $this->product->saveState($productID, $this->products);
|
|
$branch = ($branch == '') ? (int)$this->cookie->preBranch : (int)$branch;
|
|
setcookie('preProductID', $productID, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, true);
|
|
setcookie('preBranch', (int)$branch, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, true);
|
|
|
|
if($this->cookie->preProductID != $productID or $this->cookie->preBranch != $branch or $browseType == 'bybranch')
|
|
{
|
|
$_COOKIE['bugModule'] = 0;
|
|
setcookie('bugModule', 0, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
}
|
|
if($browseType == 'bymodule' or $browseType == '')
|
|
{
|
|
setcookie('bugModule', (int)$param, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
$_COOKIE['bugBranch'] = 0;
|
|
setcookie('bugBranch', 0, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
if($browseType == '') setcookie('treeBranch', (int)$branch, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
}
|
|
if($browseType == 'bybranch') setcookie('bugBranch', (int)$branch, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
if($browseType != 'bymodule' and $browseType != 'bybranch') $this->session->set('bugBrowseType', $browseType);
|
|
|
|
$moduleID = ($browseType == 'bymodule') ? (int)$param : (($browseType == 'bysearch' or $browseType == 'bybranch') ? 0 : ($this->cookie->bugModule ? $this->cookie->bugModule : 0));
|
|
$queryID = ($browseType == 'bysearch') ? (int)$param : 0;
|
|
|
|
/* Set session. */
|
|
$this->session->set('bugList', $this->app->getURI(true), 'qa');
|
|
|
|
/* Set moduleTree. */
|
|
if($browseType == '')
|
|
{
|
|
setcookie('treeBranch', (int)$branch, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
$browseType = 'unclosed';
|
|
}
|
|
|
|
if($this->projectID and !$productID)
|
|
{
|
|
$moduleTree = $this->tree->getBugTreeMenu($this->projectID, $productID, 0, array('treeModel', 'createBugLink'));
|
|
}
|
|
else
|
|
{
|
|
$moduleTree = $this->tree->getTreeMenu($productID, 'bug', 0, array('treeModel', 'createBugLink'), '', $browseType == '' ? $branch : (int)$this->cookie->treeBranch);
|
|
}
|
|
|
|
if(($browseType != 'bymodule' && $browseType != 'bybranch')) $this->session->set('bugBrowseType', $browseType);
|
|
if(($browseType == 'bymodule' || $browseType == 'bybranch') and $this->session->bugBrowseType == 'bysearch') $this->session->set('bugBrowseType', 'unclosed');
|
|
|
|
/* Process the order by field. */
|
|
if(!$orderBy) $orderBy = $this->cookie->qaBugOrder ? $this->cookie->qaBugOrder : 'id_desc';
|
|
setcookie('qaBugOrder', $orderBy, 0, $this->config->webRoot, '', $this->config->cookieSecure, true);
|
|
|
|
/* Append id for secend sort. */
|
|
$sort = $this->loadModel('common')->appendOrder($orderBy);
|
|
|
|
/* Load pager. */
|
|
$this->app->loadClass('pager', $static = true);
|
|
if($this->app->getViewType() == 'mhtml') $recPerPage = 10;
|
|
$pager = new pager($recTotal, $recPerPage, $pageID);
|
|
|
|
/* Get executios. */
|
|
$executions = $this->loadModel('execution')->getPairs($this->projectID, 'all', 'empty|withdelete');
|
|
|
|
/* Get product id list. */
|
|
$productIDList = $productID ? $productID : array_keys($this->products);
|
|
|
|
/* Get bugs. */
|
|
$bugs = $this->bug->getBugs($productIDList, $executions, $branch, $browseType, $moduleID, $queryID, $sort, $pager, $this->projectID);
|
|
|
|
/* Process the sql, get the conditon partion, save it to session. */
|
|
$this->loadModel('common')->saveQueryCondition($this->dao->get(), 'bug', $browseType == 'needconfirm' ? false : true);
|
|
|
|
/* Process bug for check story changed. */
|
|
$bugs = $this->loadModel('story')->checkNeedConfirm($bugs);
|
|
|
|
/* Process the openedBuild and resolvedBuild fields. */
|
|
$bugs = $this->bug->processBuildForBugs($bugs);
|
|
|
|
/* Get story and task id list. */
|
|
$storyIdList = $taskIdList = array();
|
|
foreach($bugs as $bug)
|
|
{
|
|
if($bug->story) $storyIdList[$bug->story] = $bug->story;
|
|
if($bug->task) $taskIdList[$bug->task] = $bug->task;
|
|
if($bug->toTask) $taskIdList[$bug->toTask] = $bug->toTask;
|
|
}
|
|
$storyList = $storyIdList ? $this->loadModel('story')->getByList($storyIdList) : array();
|
|
$taskList = $taskIdList ? $this->loadModel('task')->getByList($taskIdList) : array();
|
|
|
|
/* Build the search form. */
|
|
$actionURL = $this->createLink('bug', 'browse', "productID=$productID&branch=$branch&browseType=bySearch&queryID=myQueryID");
|
|
$this->config->bug->search['onMenuBar'] = 'yes';
|
|
$this->bug->buildSearchForm($productID, $this->products, $queryID, $actionURL);
|
|
|
|
$showModule = !empty($this->config->datatable->bugBrowse->showModule) ? $this->config->datatable->bugBrowse->showModule : '';
|
|
$productName = $productID ? $this->products[$productID] : $this->lang->product->allProduct;
|
|
|
|
/* Set view. */
|
|
$this->view->title = $productName . $this->lang->colon . $this->lang->bug->common;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $productName,'','title=' . $productName);
|
|
$this->view->position[] = $this->lang->bug->common;
|
|
$this->view->productID = $productID;
|
|
$this->view->product = $this->product->getById($productID);
|
|
$this->view->projectProducts = $this->product->getProducts($this->projectID);
|
|
$this->view->productName = $productName;
|
|
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID);
|
|
$this->view->modules = $this->tree->getOptionMenu($productID, $viewType = 'bug', $startModuleID = 0, $branch);
|
|
$this->view->moduleTree = $moduleTree;
|
|
$this->view->moduleName = $moduleID ? $this->tree->getById($moduleID)->name : $this->lang->tree->all;
|
|
$this->view->summary = $this->bug->summary($bugs);
|
|
$this->view->browseType = $browseType;
|
|
$this->view->bugs = $bugs;
|
|
$this->view->users = $this->user->getPairs('noletter');
|
|
$this->view->pager = $pager;
|
|
$this->view->param = $param;
|
|
$this->view->orderBy = $orderBy;
|
|
$this->view->moduleID = $moduleID;
|
|
$this->view->memberPairs = $this->user->getPairs('noletter|nodeleted');
|
|
$this->view->branch = $branch;
|
|
$this->view->branches = $this->loadModel('branch')->getPairs($productID, 'noempty');
|
|
$this->view->executions = $executions;
|
|
$this->view->plans = $this->loadModel('productplan')->getPairs($productID);
|
|
$this->view->stories = $storyList;
|
|
$this->view->tasks = $taskList;
|
|
$this->view->setModule = true;
|
|
$this->view->isProjectBug = ($productID and !$this->projectID) ? false : true;
|
|
$this->view->modulePairs = $showModule ? $this->tree->getModulePairs($productID, 'bug', $showModule) : array();
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* The report page.
|
|
*
|
|
* @param int $productID
|
|
* @param string $browseType
|
|
* @param int $branchID
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function report($productID, $browseType, $branchID, $moduleID, $chartType = 'default')
|
|
{
|
|
$this->loadModel('report');
|
|
$this->view->charts = array();
|
|
|
|
if(!empty($_POST))
|
|
{
|
|
foreach($this->post->charts as $chart)
|
|
{
|
|
$chartFunc = 'getDataOf' . $chart;
|
|
$chartData = $this->bug->$chartFunc();
|
|
$chartOption = $this->lang->bug->report->$chart;
|
|
if(!empty($chartType) and $chartType != 'default') $chartOption->type = $chartType;
|
|
$this->bug->mergeChartOption($chart);
|
|
|
|
$this->view->charts[$chart] = $chartOption;
|
|
$this->view->datas[$chart] = $this->report->computePercent($chartData);
|
|
}
|
|
}
|
|
|
|
$this->bug->setMenu($this->products, $productID, $branchID);
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->common . $this->lang->colon . $this->lang->bug->reportChart;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->reportChart;
|
|
$this->view->productID = $productID;
|
|
$this->view->browseType = $browseType;
|
|
$this->view->branchID = $branchID;
|
|
$this->view->moduleID = $moduleID;
|
|
$this->view->chartType = $chartType;
|
|
$this->view->checkedCharts = $this->post->charts ? join(',', $this->post->charts) : '';
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Create a bug.
|
|
*
|
|
* @param int $productID
|
|
* @param string $branch
|
|
* @param string $extras others params, forexample, executionID=10,moduleID=10
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function create($productID, $branch = '', $extras = '')
|
|
{
|
|
if(empty($this->products)) $this->locate($this->createLink('product', 'create'));
|
|
|
|
/* Unset discarded types. */
|
|
foreach($this->config->bug->discardedTypes as $type) unset($this->lang->bug->typeList[$type]);
|
|
|
|
/* Whether there is a object to transfer bug, for example feedback. */
|
|
$extras = str_replace(array(',', ' '), array('&', ''), $extras);
|
|
parse_str($extras, $output);
|
|
|
|
if($this->app->openApp == 'execution')
|
|
{
|
|
$this->loadModel('execution')->setMenu($output['executionID']);
|
|
}
|
|
else if($this->app->openApp == 'project')
|
|
{
|
|
$this->loadModel('project')->setMenu($output['projectID']);
|
|
}
|
|
else
|
|
{
|
|
$this->qa->setMenu($this->products, $productID);
|
|
}
|
|
|
|
foreach($output as $paramKey => $paramValue)
|
|
{
|
|
if(isset($this->config->bug->fromObjects[$paramKey]))
|
|
{
|
|
$fromObjectIDKey = $paramKey;
|
|
$fromObjectID = $paramValue;
|
|
$fromObjectName = $this->config->bug->fromObjects[$fromObjectIDKey]['name'];
|
|
$fromObjectAction = $this->config->bug->fromObjects[$fromObjectIDKey]['action'];
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* If there is a object to transfer bug, get it by getById function and set objectID,object in views. */
|
|
if(isset($fromObjectID))
|
|
{
|
|
$fromObject = $this->loadModel($fromObjectName)->getById($fromObjectID);
|
|
if(!$fromObject) die(js::error($this->lang->notFound) . js::locate('back', 'parent'));
|
|
|
|
$this->view->$fromObjectIDKey = $fromObjectID;
|
|
$this->view->$fromObjectName = $fromObject;
|
|
}
|
|
|
|
$this->view->users = $this->user->getPairs('devfirst|noclosed|nodeleted');
|
|
$this->app->loadLang('release');
|
|
|
|
if(!empty($_POST))
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = $this->lang->saveSuccess;
|
|
|
|
/* Set from param if there is a object to transfer bug. */
|
|
setcookie('lastBugModule', (int)$this->post->module, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
$bugResult = $this->bug->create($from = isset($fromObjectIDKey) ? $fromObjectIDKey : '');
|
|
if(!$bugResult or dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
$this->send($response);
|
|
}
|
|
|
|
$bugID = $bugResult['id'];
|
|
if($bugResult['status'] == 'exists')
|
|
{
|
|
$response['message'] = sprintf($this->lang->duplicate, $this->lang->bug->common);
|
|
$response['locate'] = $this->createLink('bug', 'view', "bugID=$bugID");
|
|
$this->send($response);
|
|
}
|
|
|
|
/* Record related action, for example FromFeedback. */
|
|
if(isset($fromObjectID))
|
|
{
|
|
$actionID = $this->action->create('bug', $bugID, $fromObjectAction, '', $fromObjectID);
|
|
}
|
|
else
|
|
{
|
|
$actionID = $this->action->create('bug', $bugID, 'Opened');
|
|
}
|
|
|
|
$extras = str_replace(array(',', ' '), array('&', ''), $extras);
|
|
parse_str($extras, $output);
|
|
if(isset($output['todoID']))
|
|
{
|
|
$this->dao->update(TABLE_TODO)->set('status')->eq('done')->where('id')->eq($output['todoID'])->exec();
|
|
$this->action->create('todo', $output['todoID'], 'finished', '', "BUG:$bugID");
|
|
}
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
/* If link from no head then reload. */
|
|
if(isonlybody()) $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent'));
|
|
|
|
if(defined('RUN_MODE') && RUN_MODE == 'api') $this->send(array('status' => 'success', 'data' => $bugID));
|
|
|
|
if(!empty($output['executionID']))
|
|
{
|
|
$location = $this->createLink('execution', 'bug', "executionID={$output['executionID']}");
|
|
}
|
|
elseif(!empty($output['projectID']))
|
|
{
|
|
$location = $this->createLink('project', 'bug', "projectID={$output['projectID']}");
|
|
}
|
|
else
|
|
{
|
|
setcookie('bugModule', 0, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
$location = $this->createLink('bug', 'browse', "productID={$this->post->product}&branch=$branch&browseType=unclosed¶m=0&orderBy=id_desc");
|
|
}
|
|
if($this->app->getViewType() == 'xhtml') $location = $this->createLink('bug', 'view', "bugID=$bugID");
|
|
$response['locate'] = $location;
|
|
$this->send($response);
|
|
}
|
|
|
|
/* Get product, then set menu. */
|
|
$productID = $this->product->saveState($productID, $this->products);
|
|
if($branch === '') $branch = (int)$this->cookie->preBranch;
|
|
$branches = $this->session->currentProductType == 'normal' ? array() : $this->loadModel('branch')->getPairs($productID);
|
|
|
|
/* Init vars. */
|
|
$projectID = 0;
|
|
$moduleID = 0;
|
|
$executionID = 0;
|
|
$taskID = 0;
|
|
$storyID = 0;
|
|
$buildID = 0;
|
|
$caseID = 0;
|
|
$runID = 0;
|
|
$testtask = 0;
|
|
$version = 0;
|
|
$title = '';
|
|
$steps = $this->lang->bug->tplStep . $this->lang->bug->tplResult . $this->lang->bug->tplExpect;
|
|
$os = '';
|
|
$browser = '';
|
|
$assignedTo = '';
|
|
$deadline = '';
|
|
$mailto = '';
|
|
$keywords = '';
|
|
$severity = 3;
|
|
$type = 'codeerror';
|
|
$pri = 3;
|
|
$color = '';
|
|
|
|
/* Parse the extras. extract fix php7.2. */
|
|
$extras = str_replace(array(',', ' '), array('&', ''), $extras);
|
|
parse_str($extras, $output);
|
|
extract($output);
|
|
|
|
if($runID and $resultID) extract($this->bug->getBugInfoFromResult($resultID, 0, 0, isset($stepIdList) ? $stepIdList : ''));// If set runID and resultID, get the result info by resultID as template.
|
|
if(!$runID and $caseID) extract($this->bug->getBugInfoFromResult($resultID, $caseID, $version, isset($stepIdList) ? $stepIdList : ''));// If not set runID but set caseID, get the result info by resultID and case info.
|
|
|
|
/* If bugID setted, use this bug as template. */
|
|
if(isset($bugID))
|
|
{
|
|
$bug = $this->bug->getById($bugID);
|
|
extract((array)$bug);
|
|
$executionID = $bug->execution;
|
|
$moduleID = $bug->module;
|
|
$taskID = $bug->task;
|
|
$storyID = $bug->story;
|
|
$buildID = $bug->openedBuild;
|
|
$severity = $bug->severity;
|
|
$type = $bug->type;
|
|
$assignedTo = $bug->assignedTo;
|
|
$deadline = $bug->deadline;
|
|
$color = $bug->color;
|
|
$testtask = $bug->testtask;
|
|
}
|
|
|
|
if($testtask)
|
|
{
|
|
$testtask = $this->loadModel('testtask')->getById($testtask);
|
|
$buildID = $testtask->build;
|
|
}
|
|
|
|
if(isset($todoID))
|
|
{
|
|
$todo = $this->loadModel('todo')->getById($todoID);
|
|
$title = $todo->name;
|
|
$steps = $todo->desc;
|
|
$pri = $todo->pri;
|
|
}
|
|
/* Replace the value of bug that needs to be replaced with the value of the object that is transferred to bug. */
|
|
if(isset($fromObject))
|
|
{
|
|
foreach($this->config->bug->fromObjects[$fromObjectIDKey]['fields'] as $bugField => $fromObjectField)
|
|
{
|
|
$$bugField = $fromObject->{$fromObjectField};
|
|
}
|
|
}
|
|
|
|
/* If executionID is setted, get builds and stories of this execution. */
|
|
if($executionID)
|
|
{
|
|
$builds = $this->loadModel('build')->getExecutionBuildPairs($executionID, $productID, $branch, 'noempty,noterminate,nodone');
|
|
$stories = $this->story->getExecutionStoryPairs($executionID);
|
|
if(!$projectID) $projectID = $this->dao->select('project')->from(TABLE_EXECUTION)->where('id')->eq($executionID)->fetch('project');
|
|
}
|
|
else
|
|
{
|
|
$builds = $this->loadModel('build')->getProductBuildPairs($productID, $branch, 'noempty,noterminate,nodone');
|
|
$stories = $this->story->getProductStoryPairs($productID, $branch);
|
|
}
|
|
$builds[''] = '';
|
|
|
|
$moduleOwner = $this->bug->getModuleOwner($moduleID, $productID);
|
|
|
|
/* Set team members of the latest execution as assignedTo list. */
|
|
$latestExecution = $this->product->getLatestProject($productID);
|
|
$executionMembers = array();
|
|
if(!empty($latestExecution)) $executionMembers = $this->loadModel('execution')->getTeamMemberPairs($latestExecution->id, 'nodeleted', $moduleOwner);
|
|
if(empty($executionMembers)) $executionMembers = $this->view->users;
|
|
if($assignedTo and !isset($executionMembers[$assignedTo]))
|
|
{
|
|
$user = $this->loadModel('user')->getById($assignedTo);
|
|
if($user) $executionMembers[$assignedTo] = $user->realname;
|
|
}
|
|
|
|
$moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'bug', $startModuleID = 0, $branch);
|
|
if(empty($moduleOptionMenu)) die(js::locate(helper::createLink('tree', 'browse', "productID=$productID&view=story")));
|
|
|
|
/* Get products and projects. */
|
|
$products = $this->products;
|
|
$projects = array(0 => '');
|
|
if($projectID)
|
|
{
|
|
$products = array();
|
|
$productList = $this->product->getOrderedProducts('all', 40, $projectID);
|
|
foreach($productList as $product) $products[$product->id] = $product->name;
|
|
|
|
$project = $this->loadModel('project')->getByID($projectID);
|
|
$projects += array($projectID => $project->name);
|
|
|
|
/* Set project menu. */
|
|
if($this->app->openApp == 'project') $this->project->setMenu($projectID);
|
|
}
|
|
else
|
|
{
|
|
$projects += $this->product->getProjectPairsByProduct($productID, $branch);
|
|
}
|
|
|
|
/* Get block id of assinge to me. */
|
|
$blockID = 0;
|
|
if(isonlybody())
|
|
{
|
|
$blockID = $this->dao->select('id')->from(TABLE_BLOCK)
|
|
->where('block')->eq('assingtome')
|
|
->andWhere('module')->eq('my')
|
|
->andWhere('account')->eq($this->app->user->account)
|
|
->orderBy('order_desc')
|
|
->fetch('id');
|
|
}
|
|
|
|
/* Get executions. */
|
|
$executions = array('' => '');
|
|
if(isset($projects[$projectID]) or $this->config->systemMode == 'classic') $executions += $this->product->getExecutionPairsByProduct($productID, $branch ? "0,$branch" : 0, 'id_desc', $projectID);
|
|
|
|
/* Set custom. */
|
|
foreach(explode(',', $this->config->bug->list->customCreateFields) as $field) $customFields[$field] = $this->lang->bug->$field;
|
|
$this->view->customFields = $customFields;
|
|
$this->view->showFields = $this->config->bug->custom->createFields;
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->create;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->create;
|
|
|
|
$this->view->products = $products;
|
|
$this->view->productID = $productID;
|
|
$this->view->productName = $this->products[$productID];
|
|
$this->view->moduleOptionMenu = $moduleOptionMenu;
|
|
$this->view->stories = $stories;
|
|
$this->view->projects = $projects;
|
|
$this->view->executions = $executions;
|
|
$this->view->builds = $builds;
|
|
$this->view->moduleID = (int)$moduleID;
|
|
$this->view->projectID = $projectID;
|
|
$this->view->executionID = $executionID;
|
|
$this->view->taskID = $taskID;
|
|
$this->view->storyID = $storyID;
|
|
$this->view->buildID = $buildID;
|
|
$this->view->caseID = $caseID;
|
|
$this->view->runID = $runID;
|
|
$this->view->version = $version;
|
|
$this->view->testtask = $testtask;
|
|
$this->view->bugTitle = $title;
|
|
$this->view->pri = $pri;
|
|
$this->view->steps = htmlspecialchars($steps);
|
|
$this->view->os = $os;
|
|
$this->view->browser = $browser;
|
|
$this->view->executionMembers = $executionMembers;
|
|
$this->view->assignedTo = $assignedTo;
|
|
$this->view->deadline = $deadline;
|
|
$this->view->mailto = $mailto;
|
|
$this->view->keywords = $keywords;
|
|
$this->view->severity = $severity;
|
|
$this->view->type = $type;
|
|
$this->view->branch = $branch;
|
|
$this->view->branches = $branches;
|
|
$this->view->blockID = $blockID;
|
|
$this->view->color = $color;
|
|
$this->view->stepsRequired = strpos($this->config->bug->create->requiredFields, 'steps');
|
|
$this->view->isStepsTemplate = $steps == $this->lang->bug->tplStep . $this->lang->bug->tplResult . $this->lang->bug->tplExpect ? true : false;
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Batch create.
|
|
*
|
|
* @param int $productID
|
|
* @param int $executionID
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchCreate($productID, $branch = '', $executionID = 0, $moduleID = 0)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$actions = $this->bug->batchCreate($productID, $branch);
|
|
|
|
setcookie('bugModule', 0, 0, $this->config->webRoot, '', $this->config->cookieSecure, false);
|
|
die(js::locate($this->createLink('bug', 'browse', "productID={$productID}&branch=$branch&browseType=unclosed¶m=0&orderBy=id_desc"), 'parent'));
|
|
}
|
|
|
|
/* Get product, then set menu. */
|
|
$productID = $this->product->saveState($productID, $this->products);
|
|
if($branch === '') $branch = (int)$this->cookie->preBranch;
|
|
$this->qa->setMenu($this->products, $productID, $branch);
|
|
|
|
/* If executionID is setted, get builds and stories of this execution. */
|
|
if($executionID)
|
|
{
|
|
$builds = $this->loadModel('build')->getExecutionBuildPairs($executionID, $productID, $branch, 'noempty');
|
|
$stories = $this->story->getExecutionStoryPairs($executionID);
|
|
}
|
|
else
|
|
{
|
|
$builds = $this->loadModel('build')->getProductBuildPairs($productID, $branch, 'noempty');
|
|
$stories = $this->story->getProductStoryPairs($productID, $branch);
|
|
}
|
|
|
|
if($this->session->bugImagesFile)
|
|
{
|
|
$files = $this->session->bugImagesFile;
|
|
foreach($files as $fileName => $file)
|
|
{
|
|
$title = $file['title'];
|
|
$titles[$title] = $fileName;
|
|
}
|
|
$this->view->titles = $titles;
|
|
}
|
|
|
|
/* Set custom. */
|
|
$product = $this->product->getById($productID);
|
|
foreach(explode(',', $this->config->bug->list->customBatchCreateFields) as $field)
|
|
{
|
|
if($product->type != 'normal') $customFields[$product->type] = $this->lang->product->branchName[$product->type];
|
|
$customFields[$field] = $this->lang->bug->$field;
|
|
}
|
|
$showFields = $this->config->bug->custom->batchCreateFields;
|
|
if($product->type == 'normal')
|
|
{
|
|
$showFields = str_replace(array(0 => ",branch,", 1 => ",platform,"), '', ",$showFields,");
|
|
$showFields = trim($showFields, ',');
|
|
}
|
|
|
|
$projectID = $this->lang->navGroup->bug == 'project' ? $this->session->project : 0;
|
|
|
|
$this->view->customFields = $customFields;
|
|
$this->view->showFields = $showFields;
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->batchCreate;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID&branch=$branch"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->batchCreate;
|
|
|
|
$this->view->product = $product;
|
|
$this->view->productID = $productID;
|
|
$this->view->stories = $stories;
|
|
$this->view->builds = $builds;
|
|
$this->view->users = $this->user->getPairs('devfirst|nodeleted');
|
|
$this->view->executions = $this->product->getExecutionPairsByProduct($productID, $branch ? "0,$branch" : 0, 'id_desc', $projectID);
|
|
$this->view->executionID = $executionID;
|
|
$this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'bug', $startModuleID = 0, $branch);
|
|
$this->view->moduleID = $moduleID;
|
|
$this->view->branch = $branch;
|
|
$this->view->branches = $this->loadModel('branch')->getPairs($productID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* View a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @param string $form
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function view($bugID, $from = 'bug')
|
|
{
|
|
/* Judge bug exits or not. */
|
|
$bugID = (int)$bugID;
|
|
$bug = $this->bug->getById($bugID, true);
|
|
if(!$bug) die(js::error($this->lang->notFound) . js::locate('back'));
|
|
if($bug->project) $this->session->project = $bug->project;
|
|
$this->view->products = $this->products = $this->product->getProductPairsByProject($this->session->project);
|
|
$this->session->set('storyList', '', 'product');
|
|
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
|
|
/* Update action. */
|
|
if($bug->assignedTo == $this->app->user->account) $this->loadModel('action')->read('bug', $bugID);
|
|
|
|
/* Set menu. */
|
|
if($this->app->openApp == 'project') $this->loadModel('project')->setMenu($bug->project);
|
|
if($this->app->openApp == 'execution') $this->loadModel('execution')->setMenu($bug->execution);
|
|
if($this->app->openApp == 'qa') $this->qa->setMenu($this->products, $bug->product, $bug->branch);
|
|
if($this->app->openApp == 'repo')
|
|
{
|
|
session_write_close();
|
|
$repos = $this->loadModel('repo')->getRepoPairs($this->session->project);
|
|
$this->repo->setMenu($repos);
|
|
$this->lang->bug->menu = $this->lang->repo->menu;
|
|
}
|
|
|
|
/* Get product info. */
|
|
$productID = $bug->product;
|
|
$productName = isset($this->products[$productID]) ? $this->products[$productID] : '';
|
|
$branches = $this->session->currentProductType == 'normal' ? array() : $this->loadModel('branch')->getPairs($bug->product);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
/* Header and positon. */
|
|
$this->view->title = "BUG #$bug->id $bug->title - " . $productName;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $productName);
|
|
$this->view->position[] = $this->lang->bug->view;
|
|
|
|
/* Assign. */
|
|
$this->view->productID = $productID;
|
|
$this->view->productName = $productName;
|
|
$this->view->branches = $branches;
|
|
$this->view->modulePath = $this->tree->getParents($bug->module);
|
|
$this->view->bugModule = empty($bug->module) ? '' : $this->tree->getById($bug->module);
|
|
$this->view->bug = $bug;
|
|
$this->view->from = $from;
|
|
$this->view->branchName = $this->session->currentProductType == 'normal' ? '' : zget($branches, $bug->branch, '');
|
|
$this->view->users = $this->user->getPairs('noletter');
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID, $branch = 0, $params = '');
|
|
$this->view->preAndNext = $this->loadModel('common')->getPreAndNextObject('bug', $bugID);
|
|
$this->view->product = $this->loadModel('product')->getByID( $productID);
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Edit a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function edit($bugID, $comment = false)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$changes = array();
|
|
$files = array();
|
|
if($comment == false)
|
|
{
|
|
$changes = $this->bug->update($bugID);
|
|
if(dao::isError())
|
|
{
|
|
if(defined('RUN_MODE') && RUN_MODE == 'api')
|
|
{
|
|
$this->send(array('status' => 'error', 'message' => dao::getError()));
|
|
}
|
|
else
|
|
{
|
|
die(js::error(dao::getError()));
|
|
}
|
|
}
|
|
$files = $this->loadModel('file')->saveUpload('bug', $bugID);
|
|
}
|
|
if($this->post->comment != '' or !empty($changes) or !empty($files))
|
|
{
|
|
$action = (!empty($changes) or !empty($files)) ? 'Edited' : 'Commented';
|
|
$fileAction = '';
|
|
if(!empty($files)) $fileAction = $this->lang->addFiles . join(',', $files) . "\n" ;
|
|
$actionID = $this->action->create('bug', $bugID, $action, $fileAction . $this->post->comment);
|
|
$this->action->logHistory($actionID, $changes);
|
|
}
|
|
if(defined('RUN_MODE') && RUN_MODE == 'api') $this->send(array('status' => 'success', 'data' => $bugID));
|
|
$bug = $this->bug->getById($bugID);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
if($bug->toTask != 0)
|
|
{
|
|
foreach($changes as $change)
|
|
{
|
|
if($change['field'] == 'status')
|
|
{
|
|
$confirmURL = $this->createLink('task', 'view', "taskID=$bug->toTask");
|
|
$cancelURL = $this->server->HTTP_REFERER;
|
|
die(js::confirm(sprintf($this->lang->bug->remindTask, $bug->Task), $confirmURL, $cancelURL, 'parent', 'parent'));
|
|
}
|
|
}
|
|
}
|
|
die(js::locate($this->createLink('bug', 'view', "bugID=$bugID"), 'parent'));
|
|
}
|
|
|
|
/* Get the info of bug, current product and modue. */
|
|
$bug = $this->bug->getById($bugID);
|
|
$productID = $bug->product;
|
|
$executionID = $bug->execution;
|
|
$currentModuleID = $bug->module;
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
|
|
/* Set the menu. */
|
|
if($this->app->openApp == 'project') $this->loadModel('project')->setMenu($bug->project);
|
|
if($this->app->openApp == 'execution') $this->loadModel('execution')->setMenu($bug->execution);
|
|
if($this->app->openApp == 'qa') $this->bug->setMenu($this->products, $productID, $bug->branch);
|
|
|
|
/* Unset discarded types. */
|
|
foreach($this->config->bug->discardedTypes as $type)
|
|
{
|
|
if($bug->type != $type) unset($this->lang->bug->typeList[$type]);
|
|
}
|
|
|
|
/* Set header and position. */
|
|
$this->view->title = $this->lang->bug->edit . "BUG #$bug->id $bug->title - " . $this->products[$productID];
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->edit;
|
|
|
|
/* Assign. */
|
|
$allBuilds = $this->loadModel('build')->getProductBuildPairs($productID, $branch = 0, 'noempty');
|
|
if($executionID)
|
|
{
|
|
$openedBuilds = $this->build->getExecutionBuildPairs($executionID, $productID, $bug->branch, 'noempty,noterminate,nodone');
|
|
}
|
|
else
|
|
{
|
|
$openedBuilds = $this->build->getProductBuildPairs($productID, $bug->branch, 'noempty,noterminate,nodone');
|
|
}
|
|
|
|
/* Set the openedBuilds list. */
|
|
$oldOpenedBuilds = array();
|
|
$bugOpenedBuilds = explode(',', $bug->openedBuild);
|
|
foreach($bugOpenedBuilds as $buildID)
|
|
{
|
|
if(isset($allBuilds[$buildID])) $oldOpenedBuilds[$buildID] = $allBuilds[$buildID];
|
|
}
|
|
$openedBuilds = $openedBuilds + $oldOpenedBuilds;
|
|
|
|
/* Set the resolvedBuilds list. */
|
|
$oldResolvedBuild = array();
|
|
if(($bug->resolvedBuild) and isset($allBuilds[$bug->resolvedBuild])) $oldResolvedBuild[$bug->resolvedBuild] = $allBuilds[$bug->resolvedBuild];
|
|
|
|
$projectID = $this->lang->navGroup->bug == 'project' ? $this->session->project : 0;
|
|
|
|
$this->view->bug = $bug;
|
|
$this->view->productID = $productID;
|
|
$this->view->productName = $this->products[$productID];
|
|
$this->view->plans = $this->loadModel('productplan')->getPairs($productID, $bug->branch);
|
|
$this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'bug', $startModuleID = 0, $bug->branch);
|
|
$this->view->currentModuleID = $currentModuleID;
|
|
$this->view->executions = $this->product->getExecutionPairsByProduct($bug->product, $bug->branch ? "0,{$bug->branch}" : 0, 'id_desc', $projectID);
|
|
$this->view->stories = $bug->execution ? $this->story->getExecutionStoryPairs($bug->execution) : $this->story->getProductStoryPairs($bug->product, $bug->branch);
|
|
$this->view->branches = $this->session->currentProductType == 'normal' ? array() : $this->loadModel('branch')->getPairs($bug->product);
|
|
$this->view->tasks = $this->task->getExecutionTaskPairs($bug->execution);
|
|
$this->view->testtasks = $this->loadModel('testtask')->getPairs($bug->product, $bug->execution, $bug->testtask);
|
|
$this->view->users = $this->user->getPairs('nodeleted', "$bug->assignedTo,$bug->resolvedBy,$bug->closedBy,$bug->openedBy");
|
|
$this->view->openedBuilds = $openedBuilds;
|
|
$this->view->resolvedBuilds = array('' => '') + $openedBuilds + $oldResolvedBuild;
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Batch edit bug.
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchEdit($productID = 0, $branch = 0)
|
|
{
|
|
if($this->post->titles)
|
|
{
|
|
$allChanges = $this->bug->batchUpdate();
|
|
|
|
foreach($allChanges as $bugID => $changes)
|
|
{
|
|
if(empty($changes)) continue;
|
|
|
|
$actionID = $this->action->create('bug', $bugID, 'Edited');
|
|
$this->action->logHistory($actionID, $changes);
|
|
|
|
$bug = $this->bug->getById($bugID);
|
|
if($bug->toTask != 0)
|
|
{
|
|
foreach($changes as $change)
|
|
{
|
|
if($change['field'] == 'status')
|
|
{
|
|
$confirmURL = $this->createLink('task', 'view', "taskID=$bug->toTask");
|
|
$cancelURL = $this->server->HTTP_REFERER;
|
|
die(js::confirm(sprintf($this->lang->bug->remindTask, $bug->task), $confirmURL, $cancelURL, 'parent', 'parent'));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
|
|
$bugIDList = $this->post->bugIDList ? $this->post->bugIDList : die(js::locate($this->session->bugList, 'parent'));
|
|
$bugIDList = array_unique($bugIDList);
|
|
/* Initialize vars.*/
|
|
$bugs = $this->dao->select('*')->from(TABLE_BUG)->where('id')->in($bugIDList)->fetchAll('id');
|
|
|
|
/* The bugs of a product. */
|
|
if($productID)
|
|
{
|
|
$product = $this->product->getByID($productID);
|
|
$branchProduct = $product->type == 'normal' ? false : true;
|
|
|
|
/* Set plans. */
|
|
$plans = $this->loadModel('productplan')->getPairs($productID, $branch);
|
|
$plans = array('' => '', 'ditto' => $this->lang->bug->ditto) + $plans;
|
|
|
|
/* Set product menu. */
|
|
$this->bug->setMenu($this->products, $productID, $branch);
|
|
$this->view->title = $product->name . $this->lang->colon . "BUG" . $this->lang->bug->batchEdit;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID&branch=$branch"), $this->products[$productID]);
|
|
$this->view->plans = $plans;
|
|
$this->view->branches = $product->type == 'normal' ? array() : array('' => '', 'ditto' => $this->lang->bug->ditto) + $this->loadModel('branch')->getPairs($product->id);
|
|
}
|
|
/* The bugs of my. */
|
|
else
|
|
{
|
|
$branchProduct = false;
|
|
$productIdList = array();
|
|
foreach($bugs as $bug) $productIdList[$bug->product] = $bug->product;
|
|
$products = $this->product->getByIdList($productIdList);
|
|
foreach($products as $product)
|
|
{
|
|
if($product->type != 'normal')
|
|
{
|
|
$branchProduct = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
$this->loadModel('my')->setMenu();
|
|
$this->lang->task->menu = $this->lang->my->menu->work;
|
|
$this->lang->my->menu->work['subModule'] = 'bug';
|
|
|
|
$this->view->position[] = html::a($this->createLink('my', 'bug'), $this->lang->my->bug);
|
|
$this->view->title = "BUG" . $this->lang->bug->batchEdit;
|
|
}
|
|
|
|
/* Judge whether the editedBugs is too large and set session. */
|
|
$countInputVars = count($bugs) * (count(explode(',', $this->config->bug->custom->batchEditFields)) + 2);
|
|
$showSuhosinInfo = common::judgeSuhosinSetting($countInputVars);
|
|
if($showSuhosinInfo) $this->view->suhosinInfo = extension_loaded('suhosin') ? sprintf($this->lang->suhosinInfo, $countInputVars) : sprintf($this->lang->maxVarsInfo, $countInputVars);
|
|
|
|
/* Set Custom*/
|
|
foreach(explode(',', $this->config->bug->list->customBatchEditFields) as $field) $customFields[$field] = $this->lang->bug->$field;
|
|
$this->view->customFields = $customFields;
|
|
$this->view->showFields = $this->config->bug->custom->batchEditFields;
|
|
|
|
/* Set users. */
|
|
$appendUsers = array();
|
|
foreach($bugs as $bug)
|
|
{
|
|
$appendUsers[$bug->assignedTo] = $bug->assignedTo;
|
|
$appendUsers[$bug->resolvedBy] = $bug->resolvedBy;
|
|
}
|
|
$users = $this->user->getPairs('devfirst|nodeleted', $appendUsers, $this->config->maxCount);
|
|
$users = array('' => '', 'ditto' => $this->lang->bug->ditto) + $users;
|
|
|
|
/* Assign. */
|
|
$this->view->position[] = $this->lang->bug->common;
|
|
$this->view->position[] = $this->lang->bug->batchEdit;
|
|
$this->view->productID = $productID;
|
|
$this->view->branchProduct = $branchProduct;
|
|
$this->view->severityList = array('ditto' => $this->lang->bug->ditto) + $this->lang->bug->severityList;
|
|
$this->view->typeList = array('' => '', 'ditto' => $this->lang->bug->ditto) + $this->lang->bug->typeList;
|
|
$this->view->priList = array('0' => '', 'ditto' => $this->lang->bug->ditto) + $this->lang->bug->priList;
|
|
$this->view->resolutionList = array('' => '', 'ditto' => $this->lang->bug->ditto) + $this->lang->bug->resolutionList;
|
|
$this->view->statusList = array('' => '', 'ditto' => $this->lang->bug->ditto) + $this->lang->bug->statusList;
|
|
$this->view->osList = array('' => '', 'ditto' => $this->lang->bug->ditto) + $this->lang->bug->osList;
|
|
$this->view->browserList = array('' => '', 'ditto' => $this->lang->bug->ditto) + $this->lang->bug->browserList;
|
|
$this->view->bugs = $bugs;
|
|
$this->view->branch = $branch;
|
|
$this->view->users = $users;
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Update assign of bug.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function assignTo($bugID)
|
|
{
|
|
$bug = $this->bug->getById($bugID);
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
|
|
/* Set menu. */
|
|
$this->bug->setMenu($this->products, $bug->product, $bug->branch);
|
|
|
|
if(!empty($_POST))
|
|
{
|
|
$this->loadModel('action');
|
|
$changes = $this->bug->assign($bugID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
$actionID = $this->action->create('bug', $bugID, 'Assigned', $this->post->comment, $this->post->assignedTo);
|
|
$this->action->logHistory($actionID, $changes);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
if(isonlybody()) die(js::closeModal('parent.parent'));
|
|
die(js::locate($this->createLink('bug', 'view', "bugID=$bugID"), 'parent'));
|
|
}
|
|
|
|
if($this->app->openApp == 'project')
|
|
{
|
|
$users = $this->project->getTeamMemberPairs($bug->project, 'nodeleted', $bug->assignedTo);
|
|
}
|
|
elseif($this->app->openApp == 'execution')
|
|
{
|
|
$users = $this->execution->getTeamMemberPairs($bug->execution, 'nodeleted', $bug->assignedTo);
|
|
}
|
|
else
|
|
{
|
|
$users = $this->user->getPairs('nodeleted|nofeedback', $bug->assignedTo);
|
|
}
|
|
|
|
$this->view->title = $this->products[$bug->product] . $this->lang->colon . $this->lang->bug->assignedTo;
|
|
$this->view->position[] = $this->lang->bug->assignedTo;
|
|
|
|
$this->view->users = $users;
|
|
$this->view->bug = $bug;
|
|
$this->view->bugID = $bugID;
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Batch change branch.
|
|
*
|
|
* @param int $branchID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchChangeBranch($branchID)
|
|
{
|
|
if($this->post->bugIDList)
|
|
{
|
|
$bugIDList = $this->post->bugIDList;
|
|
$bugIDList = array_unique($bugIDList);
|
|
unset($_POST['bugIDList']);
|
|
$allChanges = $this->bug->batchChangeBranch($bugIDList, $branchID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
foreach($allChanges as $bugID => $changes)
|
|
{
|
|
$this->loadModel('action');
|
|
$actionID = $this->action->create('bug', $bugID, 'Edited');
|
|
$this->action->logHistory($actionID, $changes);
|
|
}
|
|
}
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
|
|
/**
|
|
* Batch change the module of bug.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchChangeModule($moduleID)
|
|
{
|
|
if($this->post->bugIDList)
|
|
{
|
|
$bugIDList = $this->post->bugIDList;
|
|
$bugIDList = array_unique($bugIDList);
|
|
unset($_POST['bugIDList']);
|
|
$allChanges = $this->bug->batchChangeModule($bugIDList, $moduleID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
foreach($allChanges as $bugID => $changes)
|
|
{
|
|
$this->loadModel('action');
|
|
$actionID = $this->action->create('bug', $bugID, 'Edited');
|
|
$this->action->logHistory($actionID, $changes);
|
|
}
|
|
}
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
|
|
/**
|
|
* Batch update assign of bug.
|
|
*
|
|
* @param int $objectID projectID|executionID
|
|
* @param string $type execution|project|product|my
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchAssignTo($objectID, $type = 'execution')
|
|
{
|
|
if(!empty($_POST) && isset($_POST['bugIDList']))
|
|
{
|
|
$bugIDList = $this->post->bugIDList;
|
|
$bugIDList = array_unique($bugIDList);
|
|
unset($_POST['bugIDList']);
|
|
foreach($bugIDList as $bugID)
|
|
{
|
|
$this->loadModel('action');
|
|
$changes = $this->bug->assign($bugID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
$actionID = $this->action->create('bug', $bugID, 'Assigned', $this->post->comment, $this->post->assignedTo);
|
|
$this->action->logHistory($actionID, $changes);
|
|
}
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
}
|
|
|
|
if($type == 'product' || $type == 'my') die(js::locate($this->session->bugList, 'parent'));
|
|
if($type == 'execution') die(js::locate($this->createLink('execution', 'bug', "executionID=$objectID")));
|
|
if($type == 'project') die(js::locate($this->createLink('project', 'bug', "projectID=$objectID")));
|
|
}
|
|
|
|
/**
|
|
* confirm a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function confirmBug($bugID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$changes = $this->bug->confirm($bugID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
$actionID = $this->action->create('bug', $bugID, 'bugConfirmed', $this->post->comment);
|
|
$this->action->logHistory($actionID, $changes);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
if(isonlybody()) die(js::closeModal('parent.parent'));
|
|
die(js::locate($this->createLink('bug', 'view', "bugID=$bugID"), 'parent'));
|
|
}
|
|
|
|
$bug = $this->bug->getById($bugID);
|
|
$productID = $bug->product;
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
$this->bug->setMenu($this->products, $productID, $bug->branch);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->confirmBug;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->confirmBug;
|
|
|
|
$this->view->bug = $bug;
|
|
$this->view->users = $this->user->getPairs('nodeleted', $bug->assignedTo);
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Batch confirm bugs.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchConfirm()
|
|
{
|
|
$bugIDList = $this->post->bugIDList ? $this->post->bugIDList : die(js::locate($this->session->bugList, 'parent'));
|
|
$bugIDList = array_unique($bugIDList);
|
|
$this->bug->batchConfirm($bugIDList);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
foreach($bugIDList as $bugID) $this->action->create('bug', $bugID, 'bugConfirmed');
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
|
|
/**
|
|
* Resolve a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function resolve($bugID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$changes = $this->bug->resolve($bugID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
$files = $this->loadModel('file')->saveUpload('bug', $bugID);
|
|
|
|
$fileAction = !empty($files) ? $this->lang->addFiles . join(',', $files) . "\n" : '';
|
|
$actionID = $this->action->create('bug', $bugID, 'Resolved', $fileAction . $this->post->comment, $this->post->resolution . ($this->post->duplicateBug ? ':' . (int)$this->post->duplicateBug : ''));
|
|
$this->action->logHistory($actionID, $changes);
|
|
|
|
$bug = $this->bug->getById($bugID);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
if($bug->toTask != 0)
|
|
{
|
|
/* If task is not finished, update it's status. */
|
|
$task = $this->task->getById($bug->toTask);
|
|
if($task->status != 'done')
|
|
{
|
|
$confirmURL = $this->createLink('task', 'view', "taskID=$bug->toTask");
|
|
unset($_GET['onlybody']);
|
|
$cancelURL = $this->createLink('bug', 'view', "bugID=$bugID");
|
|
die(js::confirm(sprintf($this->lang->bug->remindTask, $bug->toTask), $confirmURL, $cancelURL, 'parent', 'parent.parent'));
|
|
}
|
|
}
|
|
if(isonlybody()) die(js::closeModal('parent.parent'));
|
|
if(defined('RUN_MODE') && RUN_MODE == 'api')
|
|
{
|
|
die(array('status' => 'success', 'data' => $bugID));
|
|
}
|
|
else
|
|
{
|
|
die(js::locate($this->createLink('bug', 'view', "bugID=$bugID"), 'parent'));
|
|
}
|
|
}
|
|
|
|
$projectID = $this->lang->navGroup->bug == 'project' ? $this->session->project : 0;
|
|
$bug = $this->bug->getById($bugID);
|
|
$productID = $bug->product;
|
|
$users = $this->user->getPairs('noclosed');
|
|
$assignedTo = $bug->openedBy;
|
|
if(!isset($users[$assignedTo])) $assignedTo = $this->bug->getModuleOwner($bug->module, $productID);
|
|
unset($this->lang->bug->resolutionList['tostory']);
|
|
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
$this->bug->setMenu($this->products, $productID, $bug->branch);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->resolve;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->resolve;
|
|
|
|
$this->view->bug = $bug;
|
|
$this->view->users = $users;
|
|
$this->view->assignedTo = $assignedTo;
|
|
$this->view->executions = $this->loadModel('product')->getExecutionPairsByProduct($productID, $bug->branch ? "0,{$bug->branch}" : 0, 'id_desc', $projectID);
|
|
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID, $branch = $bug->branch, 'all');
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Batch resolve bugs.
|
|
*
|
|
* @param string $resolution
|
|
* @param string $resolvedBuild
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchResolve($resolution, $resolvedBuild = '')
|
|
{
|
|
$bugIDList = $this->post->bugIDList ? $this->post->bugIDList : die(js::locate($this->session->bugList, 'parent'));
|
|
$bugIDList = array_unique($bugIDList);
|
|
|
|
$changes = $this->bug->batchResolve($bugIDList, $resolution, $resolvedBuild);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
|
|
foreach($changes as $bugID => $bugChanges)
|
|
{
|
|
$actionID = $this->action->create('bug', $bugID, 'Resolved', '', $resolution);
|
|
$this->action->logHistory($actionID, $bugChanges);
|
|
}
|
|
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
|
|
/**
|
|
* Activate a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function activate($bugID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$changes = $this->bug->activate($bugID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
|
|
$files = $this->loadModel('file')->saveUpload('bug', $bugID);
|
|
|
|
$actionID = $this->action->create('bug', $bugID, 'Activated', $this->post->comment);
|
|
$this->action->logHistory($actionID, $changes);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
if(isonlybody()) die(js::closeModal('parent.parent'));
|
|
die(js::locate($this->createLink('bug', 'view', "bugID=$bugID"), 'parent'));
|
|
}
|
|
|
|
$bug = $this->bug->getById($bugID);
|
|
$productID = $bug->product;
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
$this->bug->setMenu($this->products, $productID, $bug->branch);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->activate;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->activate;
|
|
|
|
$this->view->bug = $bug;
|
|
$this->view->users = $this->user->getPairs('nodeleted', $bug->resolvedBy);
|
|
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID, $bug->branch, 'noempty');
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Close a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function close($bugID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$changes = $this->bug->close($bugID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
|
|
$actionID = $this->action->create('bug', $bugID, 'Closed', $this->post->comment);
|
|
$this->action->logHistory($actionID, $changes);
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
if(isonlybody()) die(js::closeModal('parent.parent'));
|
|
if(defined('RUN_MODE') && RUN_MODE == 'api')
|
|
{
|
|
die(array('status' => 'success', 'data' => $bugID));
|
|
}
|
|
else
|
|
{
|
|
die(js::locate($this->createLink('bug', 'view', "bugID=$bugID"), 'parent'));
|
|
}
|
|
}
|
|
|
|
$bug = $this->bug->getById($bugID);
|
|
$productID = $bug->product;
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
$this->bug->setMenu($this->products, $productID, $bug->branch);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->close;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->close;
|
|
|
|
$this->view->bug = $bug;
|
|
$this->view->users = $this->user->getPairs('noletter');
|
|
$this->view->actions = $this->action->getList('bug', $bugID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Link related bugs.
|
|
*
|
|
* @param int $bugID
|
|
* @param string $browseType
|
|
* @param int $param
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function linkBugs($bugID, $browseType = '', $param = 0)
|
|
{
|
|
/* Get bug and queryID. */
|
|
$bug = $this->bug->getById($bugID);
|
|
$queryID = ($browseType == 'bySearch') ? (int)$param : 0;
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
|
|
/* Set the menu. */
|
|
$this->bug->setMenu($this->products, $bug->product, $bug->branch);
|
|
|
|
/* Build the search form. */
|
|
$actionURL = $this->createLink('bug', 'linkBugs', "bugID=$bugID&browseType=bySearch&queryID=myQueryID", '', true);
|
|
$this->bug->buildSearchForm($bug->product, $this->products, $queryID, $actionURL);
|
|
|
|
/* Get bugs to link. */
|
|
$bugs2Link = $this->bug->getBugs2Link($bugID, $browseType, $queryID);
|
|
|
|
/* Assign. */
|
|
$this->view->title = $this->lang->bug->linkBugs . "BUG #$bug->id $bug->title - " . $this->products[$bug->product];
|
|
$this->view->position[] = html::a($this->createLink('product', 'view', "productID=$bug->product"), $this->products[$bug->product]);
|
|
$this->view->position[] = html::a($this->createLink('bug', 'view', "bugID=$bugID"), $bug->title);
|
|
$this->view->position[] = $this->lang->bug->linkBugs;
|
|
$this->view->bug = $bug;
|
|
$this->view->bugs2Link = $bugs2Link;
|
|
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Batch close bugs.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchClose()
|
|
{
|
|
if($this->post->bugIDList)
|
|
{
|
|
$bugIDList = $this->post->bugIDList;
|
|
$bugIDList = array_unique($bugIDList);
|
|
|
|
/* Reset $_POST. Do not unset that because the function of close need that in model. */
|
|
$_POST = array();
|
|
|
|
$bugs = $this->bug->getByList($bugIDList);
|
|
foreach($bugs as $bugID => $bug)
|
|
{
|
|
if($bug->status != 'resolved')
|
|
{
|
|
if($bug->status != 'closed') $skipBugs[$bugID] = $bugID;
|
|
continue;
|
|
}
|
|
|
|
$changes = $this->bug->close($bugID);
|
|
|
|
$actionID = $this->action->create('bug', $bugID, 'Closed');
|
|
$this->action->logHistory($actionID, $changes);
|
|
}
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
if(isset($skipBugs)) echo js::alert(sprintf($this->lang->bug->skipClose, join(',', $skipBugs)));
|
|
}
|
|
die(js::reload('parent'));
|
|
}
|
|
|
|
/**
|
|
* Batch activate bugs.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchActivate($productID, $branch = 0)
|
|
{
|
|
if($this->post->statusList)
|
|
{
|
|
$activateBugs = $this->bug->batchActivate();
|
|
foreach($activateBugs as $bugID => $bug) $this->action->create('bug', $bugID, 'Activated', $bug['comment']);
|
|
$this->loadModel('score')->create('ajax', 'batchOther');
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
|
|
$bugIDList = $this->post->bugIDList ? $this->post->bugIDList : die(js::locate($this->session->bugList, 'parent'));
|
|
$bugIDList = array_unique($bugIDList);
|
|
$bugs = $this->dao->select('id, title, status, resolvedBy, openedBuild')->from(TABLE_BUG)->where('id')->in($bugIDList)->fetchAll('id');
|
|
|
|
$this->bug->setMenu($this->products, $productID, $branch);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->bug->batchActivate;
|
|
$this->view->position[] = html::a($this->createLink('bug', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->bug->batchActivate;
|
|
|
|
$this->view->bugs = $bugs;
|
|
$this->view->users = $this->user->getPairs();
|
|
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID, $branch, 'noempty');
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Confirm story change.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function confirmStoryChange($bugID)
|
|
{
|
|
$bug = $this->bug->getById($bugID);
|
|
$this->bug->checkBugExecutionPriv($bug);
|
|
$this->dao->update(TABLE_BUG)->set('storyVersion')->eq($bug->latestStoryVersion)->where('id')->eq($bugID)->exec();
|
|
$this->loadModel('action')->create('bug', $bugID, 'confirmed', '', $bug->latestStoryVersion);
|
|
die(js::reload('parent'));
|
|
}
|
|
|
|
/**
|
|
* Delete a bug.
|
|
*
|
|
* @param int $bugID
|
|
* @param string $confirm yes|no
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($bugID, $confirm = 'no')
|
|
{
|
|
$bug = $this->bug->getById($bugID);
|
|
if($confirm == 'no')
|
|
{
|
|
die(js::confirm($this->lang->bug->confirmDelete, inlink('delete', "bugID=$bugID&confirm=yes")));
|
|
}
|
|
else
|
|
{
|
|
$this->bug->delete(TABLE_BUG, $bugID);
|
|
if($bug->toTask != 0)
|
|
{
|
|
$task = $this->task->getById($bug->toTask);
|
|
if(!$task->deleted)
|
|
{
|
|
$confirmURL = $this->createLink('task', 'view', "taskID=$bug->toTask");
|
|
unset($_GET['onlybody']);
|
|
$cancelURL = $this->createLink('bug', 'view', "bugID=$bugID");
|
|
die(js::confirm(sprintf($this->lang->bug->remindTask, $bug->toTask), $confirmURL, $cancelURL, 'parent', 'parent.parent'));
|
|
}
|
|
}
|
|
|
|
$this->executeHooks($bugID);
|
|
|
|
die(js::locate($this->session->bugList, 'parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AJAX: get bugs of a user in html select.
|
|
*
|
|
* @param int $userID
|
|
* @param string $id the id of the select control.
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetUserBugs($userID = '', $id = '')
|
|
{
|
|
if($userID == '') $userID = $this->app->user->id;
|
|
$user = $this->loadModel('user')->getById($userID, 'id');
|
|
$account = $user->account;
|
|
$bugs = $this->bug->getUserBugPairs($account);
|
|
|
|
if($id) die(html::select("bugs[$id]", $bugs, '', 'class="form-control"'));
|
|
die(html::select('bug', $bugs, '', 'class=form-control'));
|
|
}
|
|
|
|
/**
|
|
* AJAX: Get bug owner of a module.
|
|
*
|
|
* @param int $moduleID
|
|
* @param int $productID
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetModuleOwner($moduleID, $productID = 0)
|
|
{
|
|
$account = $this->bug->getModuleOwner($moduleID, $productID);
|
|
$realName = '';
|
|
if(!empty($account))
|
|
{
|
|
$user = $this->dao->select('realname')->from(TABLE_USER)->where('account')->eq($account)->fetch();
|
|
$firstLetter = ucfirst(substr($account, 0, 1)) . ':';
|
|
if(!empty($this->config->isINT)) $firstLetter = '';
|
|
$realName = $firstLetter . ($user->realname ? $user->realname : $account);
|
|
}
|
|
die(json_encode(array($account, $realName)));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get team members of the executions as assignedTo list.
|
|
*
|
|
* @param int $executionID
|
|
* @param string $selectedUser
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxLoadAssignedTo($executionID, $selectedUser = '')
|
|
{
|
|
$executionMembers = $this->loadModel('execution')->getTeamMemberPairs($executionID, '', $selectedUser);
|
|
|
|
die(html::select('assignedTo', $executionMembers, $selectedUser, 'class="form-control"'));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get team members of the latest executions of a product as assignedTo list.
|
|
*
|
|
* @param int $productID
|
|
* @param string $selectedUser
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxLoadExecutionTeamMembers($productID, $selectedUser = '')
|
|
{
|
|
$latestExecution = $this->product->getLatestProject($productID);
|
|
if(!empty($latestExecution))
|
|
{
|
|
$executionMembers = $this->loadModel('execution')->getTeamMemberPairs($latestExecution->id, 'nodeleted', $selectedUser);
|
|
}
|
|
else
|
|
{
|
|
$executionMembers = $this->loadModel('user')->getPairs('devfirst|noclosed|nodeleted');
|
|
}
|
|
|
|
die(html::select('assignedTo', $executionMembers, $selectedUser, 'class="form-control"'));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get all users as assignedTo list.
|
|
*
|
|
* @param string $selectedUser
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxLoadAllUsers($selectedUser = '')
|
|
{
|
|
$allUsers = $this->loadModel('user')->getPairs('devfirst|noclosed');
|
|
|
|
die(html::select('assignedTo', $allUsers, $selectedUser, 'class="form-control"'));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get actions of a bug. for web app.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function ajaxGetDetail($bugID)
|
|
{
|
|
$this->view->actions = $this->loadModel('action')->getList('bug', $bugID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Get data to export
|
|
*
|
|
* @param string $productID
|
|
* @param string $orderBy
|
|
* @param string $browseType
|
|
* @param int $executionID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function export($productID, $orderBy, $browseType = '', $executionID = 0)
|
|
{
|
|
if($_POST)
|
|
{
|
|
$this->loadModel('file');
|
|
$this->loadModel('branch');
|
|
$bugLang = $this->lang->bug;
|
|
$bugConfig = $this->config->bug;
|
|
|
|
/* Create field lists. */
|
|
$fields = $this->post->exportFields ? $this->post->exportFields : explode(',', $bugConfig->list->exportFields);
|
|
foreach($fields as $key => $fieldName)
|
|
{
|
|
$fieldName = trim($fieldName);
|
|
$fields[$fieldName] = isset($bugLang->$fieldName) ? $bugLang->$fieldName : $fieldName;
|
|
unset($fields[$key]);
|
|
}
|
|
|
|
/* Get bugs. */
|
|
$bugs = $this->dao->select('*')->from(TABLE_BUG)->where($this->session->bugQueryCondition)
|
|
->beginIF($this->post->exportType == 'selected')->andWhere('id')->in($this->cookie->checkedItem)->fi()
|
|
->orderBy($orderBy)->fetchAll('id');
|
|
|
|
/* Get users, products and executions. */
|
|
$users = $this->loadModel('user')->getPairs('noletter');
|
|
$products = $this->loadModel('product')->getPairs();
|
|
$executions = $this->loadModel('execution')->getPairs($this->projectID, 'all', 'all');
|
|
|
|
/* Get related objects id lists. */
|
|
$relatedProductIdList = array();
|
|
$relatedStoryIdList = array();
|
|
$relatedTaskIdList = array();
|
|
$relatedBugIdList = array();
|
|
$relatedCaseIdList = array();
|
|
$relatedBuildIdList = array();
|
|
$relatedBranchIdList = array();
|
|
|
|
foreach($bugs as $bug)
|
|
{
|
|
$relatedProductIdList[$bug->product] = $bug->product;
|
|
$relatedStoryIdList[$bug->story] = $bug->story;
|
|
$relatedTaskIdList[$bug->task] = $bug->task;
|
|
$relatedCaseIdList[$bug->case] = $bug->case;
|
|
$relatedBugIdList[$bug->duplicateBug] = $bug->duplicateBug;
|
|
$relatedBranchIdList[$bug->branch] = $bug->branch;
|
|
|
|
/* Process link bugs. */
|
|
$linkBugs = explode(',', $bug->linkBug);
|
|
foreach($linkBugs as $linkBugID)
|
|
{
|
|
if($linkBugID) $relatedBugIdList[$linkBugID] = trim($linkBugID);
|
|
}
|
|
|
|
/* Process builds. */
|
|
$builds = $bug->openedBuild . ',' . $bug->resolvedBuild;
|
|
$builds = explode(',', $builds);
|
|
foreach($builds as $buildID)
|
|
{
|
|
if($buildID) $relatedBuildIdList[$buildID] = trim($buildID);
|
|
}
|
|
}
|
|
|
|
/* Get related objects title or names. */
|
|
$productsType = $this->dao->select('id, type')->from(TABLE_PRODUCT)->where('id')->in($relatedProductIdList)->fetchPairs();
|
|
$relatedStories = $this->dao->select('id,title')->from(TABLE_STORY) ->where('id')->in($relatedStoryIdList)->fetchPairs();
|
|
$relatedTasks = $this->dao->select('id, name')->from(TABLE_TASK)->where('id')->in($relatedTaskIdList)->fetchPairs();
|
|
$relatedBugs = $this->dao->select('id, title')->from(TABLE_BUG)->where('id')->in($relatedBugIdList)->fetchPairs();
|
|
$relatedCases = $this->dao->select('id, title')->from(TABLE_CASE)->where('id')->in($relatedCaseIdList)->fetchPairs();
|
|
$relatedBranch = array('0' => $this->lang->branch->all) + $this->dao->select('id, name')->from(TABLE_BRANCH)->where('id')->in($relatedBranchIdList)->fetchPairs();
|
|
$relatedBuilds = array('trunk' => $this->lang->trunk) + $this->dao->select('id, name')->from(TABLE_BUILD)->where('id')->in($relatedBuildIdList)->fetchPairs();
|
|
$relatedFiles = $this->dao->select('id, objectID, pathname, title')->from(TABLE_FILE)->where('objectType')->eq('bug')->andWhere('objectID')->in(@array_keys($bugs))->andWhere('extra')->ne('editor')->fetchGroup('objectID');
|
|
$relatedModules = $this->loadModel('tree')->getAllModulePairs('bug');
|
|
|
|
foreach($bugs as $bug)
|
|
{
|
|
if($this->post->fileType == 'csv')
|
|
{
|
|
$bug->steps = str_replace("<br />", "\n", $bug->steps);
|
|
$bug->steps = str_replace('"', '""', $bug->steps);
|
|
$bug->steps = str_replace(' ', ' ', $bug->steps);
|
|
}
|
|
|
|
/* fill some field with useful value. */
|
|
$bug->product = !isset($products[$bug->product]) ? '' : $products[$bug->product] . "(#$bug->product)";
|
|
$bug->execution = !isset($executions[$bug->execution]) ? '' : $executions[$bug->execution] . "(#$bug->execution)";
|
|
$bug->story = !isset($relatedStories[$bug->story]) ? '' : $relatedStories[$bug->story] . "(#$bug->story)";
|
|
$bug->task = !isset($relatedTasks[$bug->task]) ? '' : $relatedTasks[$bug->task] . "($bug->task)";
|
|
$bug->case = !isset($relatedCases[$bug->case]) ? '' : $relatedCases[$bug->case] . "($bug->case)";
|
|
|
|
if(isset($relatedModules[$bug->module])) $bug->module = $relatedModules[$bug->module] . "(#$bug->module)";
|
|
if(isset($relatedBugs[$bug->duplicateBug])) $bug->duplicateBug = $relatedBugs[$bug->duplicateBug] . "($bug->duplicateBug)";
|
|
if(isset($relatedBuilds[$bug->resolvedBuild])) $bug->resolvedBuild = $relatedBuilds[$bug->resolvedBuild] . "(#$bug->resolvedBuild)";
|
|
if(isset($relatedBranch[$bug->branch])) $bug->branch = $relatedBranch[$bug->branch] . "(#$bug->branch)";
|
|
|
|
if(isset($bugLang->priList[$bug->pri])) $bug->pri = $bugLang->priList[$bug->pri];
|
|
if(isset($bugLang->typeList[$bug->type])) $bug->type = $bugLang->typeList[$bug->type];
|
|
if(isset($bugLang->severityList[$bug->severity])) $bug->severity = $bugLang->severityList[$bug->severity];
|
|
if(isset($bugLang->osList[$bug->os])) $bug->os = $bugLang->osList[$bug->os];
|
|
if(isset($bugLang->browserList[$bug->browser])) $bug->browser = $bugLang->browserList[$bug->browser];
|
|
if(isset($bugLang->statusList[$bug->status])) $bug->status = $this->processStatus('bug', $bug);
|
|
if(isset($bugLang->confirmedList[$bug->confirmed])) $bug->confirmed = $bugLang->confirmedList[$bug->confirmed];
|
|
if(isset($bugLang->resolutionList[$bug->resolution])) $bug->resolution = $bugLang->resolutionList[$bug->resolution];
|
|
|
|
if(isset($users[$bug->openedBy])) $bug->openedBy = $users[$bug->openedBy];
|
|
if(isset($users[$bug->assignedTo])) $bug->assignedTo = $users[$bug->assignedTo];
|
|
if(isset($users[$bug->resolvedBy])) $bug->resolvedBy = $users[$bug->resolvedBy];
|
|
if(isset($users[$bug->lastEditedBy])) $bug->lastEditedBy = $users[$bug->lastEditedBy];
|
|
if(isset($users[$bug->closedBy])) $bug->closedBy = $users[$bug->closedBy];
|
|
|
|
$bug->title = htmlspecialchars_decode($bug->title,ENT_QUOTES);
|
|
|
|
if($bug->linkBug)
|
|
{
|
|
$tmpLinkBugs = array();
|
|
$linkBugIdList = explode(',', $bug->linkBug);
|
|
foreach($linkBugIdList as $linkBugID)
|
|
{
|
|
$linkBugID = trim($linkBugID);
|
|
$tmpLinkBugs[] = isset($relatedBugs[$linkBugID]) ? $relatedBugs[$linkBugID] : $linkBugID;
|
|
}
|
|
$bug->linkBug = join("; \n", $tmpLinkBugs);
|
|
}
|
|
|
|
if($bug->openedBuild)
|
|
{
|
|
$tmpOpenedBuilds = array();
|
|
$tmpResolvedBuilds = array();
|
|
$buildIdList = explode(',', $bug->openedBuild);
|
|
foreach($buildIdList as $buildID)
|
|
{
|
|
$buildID = trim($buildID);
|
|
$tmpOpenedBuilds[] = isset($relatedBuilds[$buildID]) ? $relatedBuilds[$buildID] . "(#$buildID)" : $buildID;
|
|
}
|
|
$bug->openedBuild = join("\n", $tmpOpenedBuilds);
|
|
if($this->post->fileType == 'html') $bug->openedBuild = nl2br($bug->openedBuild);
|
|
}
|
|
|
|
/* Set related files. */
|
|
$bug->files = '';
|
|
if(isset($relatedFiles[$bug->id]))
|
|
{
|
|
foreach($relatedFiles[$bug->id] as $file)
|
|
{
|
|
$fileURL = common::getSysURL() . $this->file->webPath . $this->file->getRealPathName($file->pathname);
|
|
$bug->files .= html::a($fileURL, $file->title, '_blank') . '<br />';
|
|
}
|
|
}
|
|
|
|
$bug->mailto = trim(trim($bug->mailto), ',');
|
|
$mailtos = explode(',', $bug->mailto);
|
|
$bug->mailto = '';
|
|
foreach($mailtos as $mailto)
|
|
{
|
|
$mailto = trim($mailto);
|
|
if(isset($users[$mailto])) $bug->mailto .= $users[$mailto] . ',';
|
|
}
|
|
$bug->mailto = rtrim($bug->mailto, ',');
|
|
|
|
unset($bug->caseVersion);
|
|
unset($bug->result);
|
|
unset($bug->deleted);
|
|
}
|
|
|
|
if(!(in_array('platform', $productsType) or in_array('branch', $productsType))) unset($fields['branch']);// If products's type are normal, unset branch field.
|
|
if(isset($this->config->bizVersion)) list($fields, $bugs) = $this->loadModel('workflowfield')->appendDataFromFlow($fields, $bugs);
|
|
|
|
$this->post->set('fields', $fields);
|
|
$this->post->set('rows', $bugs);
|
|
$this->post->set('kind', 'bug');
|
|
$this->fetch('file', 'export2' . $this->post->fileType, $_POST);
|
|
}
|
|
|
|
$fileName = $this->lang->bug->common;
|
|
if($executionID)
|
|
{
|
|
$executionName = $this->dao->findById($executionID)->from(TABLE_EXECUTION)->fetch('name');
|
|
$fileName = $executionName . $this->lang->dash . $fileName;
|
|
}
|
|
else
|
|
{
|
|
$productName = $this->dao->findById($productID)->from(TABLE_PRODUCT)->fetch('name');
|
|
$browseType = isset($this->lang->bug->featureBar['browse'][$browseType]) ? $this->lang->bug->featureBar['browse'][$browseType] : zget($this->lang->bug->moreSelects, $browseType, '');
|
|
|
|
$fileName = $productName . $this->lang->dash . $browseType . $fileName;
|
|
}
|
|
|
|
$this->view->fileName = $fileName;
|
|
$this->view->allExportFields = $this->config->bug->list->exportFields;
|
|
$this->view->customExport = true;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Ajax get bug by ID.
|
|
*
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function ajaxGetByID($bugID)
|
|
{
|
|
$bug = $this->dao->select('*')->from(TABLE_BUG)->where('id')->eq($bugID)->fetch();
|
|
$realname = $this->dao->select('*')->from(TABLE_USER)->where('account')->eq($bug->assignedTo)->fetch('realname');
|
|
$bug->assignedTo = $realname ? $realname : ($bug->assignedTo == 'closed' ? 'Closed' : $bug->assignedTo);
|
|
die(json_encode($bug));
|
|
}
|
|
|
|
/**
|
|
* Ajax get bug filed options for auto test.
|
|
*
|
|
* @param int $productID
|
|
* @param int $executionID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function ajaxGetBugFieldOptions($productID, $executionID = 0)
|
|
{
|
|
$modules = $this->loadModel('tree')->getOptionMenu($productID, 'bug');
|
|
$builds = $this->loadModel('build')->getExecutionBuildPairs($executionID, $productID);
|
|
$type = $this->lang->bug->typeList;
|
|
$pri = $this->lang->bug->priList;
|
|
$severity = $this->lang->bug->severityList;
|
|
|
|
die(json_encode(array('modules' => $modules, 'categories' => $type, 'versions' => $builds, 'severities' => $severity, 'priorities' => $pri)));
|
|
}
|
|
|
|
/**
|
|
* Drop menu page.
|
|
*
|
|
* @param int $productID
|
|
* @param string $module
|
|
* @param string $method
|
|
* @param string $extra
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function ajaxGetDropMenu($productID, $module, $method, $extra = '')
|
|
{
|
|
$products = array();
|
|
if(!empty($extra)) $products = $this->product->getProducts($extra, $this->config->CRProduct ? 'all' : 'noclosed', 'program desc, line desc, ');
|
|
|
|
$this->view->link = $this->product->getProductLink($module, $method, $extra);
|
|
$this->view->productID = $productID;
|
|
$this->view->module = $module;
|
|
$this->view->method = $method;
|
|
$this->view->extra = $extra;
|
|
$this->view->products = $products;
|
|
$this->view->projectID = $this->session->project;
|
|
$this->view->programs = $this->loadModel('program')->getPairs(true);
|
|
$this->view->lines = $this->product->getLinePairs();
|
|
$this->display();
|
|
}
|
|
}
|