523 lines
21 KiB
PHP
523 lines
21 KiB
PHP
<?php
|
|
/**
|
|
* The control file of build 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 build
|
|
* @version $Id: control.php 4992 2013-07-03 07:21:59Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class build extends control
|
|
{
|
|
/**
|
|
* Create a buld.
|
|
*
|
|
* @param int $projectID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function create($projectID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$buildID = $this->build->create($projectID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
$this->loadModel('action')->create('build', $buildID, 'opened');
|
|
die(js::locate($this->createLink('build', 'view', "buildID=$buildID"), 'parent'));
|
|
}
|
|
|
|
/* Load these models. */
|
|
$this->loadModel('project');
|
|
$this->loadModel('user');
|
|
|
|
/* Set menu. */
|
|
$this->project->setMenu($this->project->getPairs(), $projectID);
|
|
|
|
/* Get stories and bugs. */
|
|
$orderBy = 'status_asc, stage_asc, id_desc';
|
|
|
|
/* Assign. */
|
|
$project = $this->loadModel('project')->getById($projectID);
|
|
|
|
$productGroups = $this->project->getProducts($projectID);
|
|
$productID = key($productGroups);
|
|
$products = array();
|
|
foreach($productGroups as $product) $products[$product->id] = $product->name;
|
|
|
|
$this->view->title = $project->name . $this->lang->colon . $this->lang->build->create;
|
|
$this->view->position[] = html::a($this->createLink('project', 'task', "projectID=$projectID"), $project->name);
|
|
$this->view->position[] = $this->lang->build->create;
|
|
$this->view->productGroups = $productGroups;
|
|
$this->view->products = $products;
|
|
$this->view->product = $productGroups[$productID];
|
|
$this->view->branches = $productGroups[$productID]->type == 'normal' ? array() : $this->loadModel('branch')->getPairs($productID);
|
|
$this->view->projectID = $projectID;
|
|
$this->view->lastBuild = $this->build->getLast($projectID);
|
|
$this->view->users = $this->user->getPairs('nodeleted');
|
|
$this->view->orderBy = $orderBy;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Edit a build.
|
|
*
|
|
* @param int $buildID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function edit($buildID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$changes = $this->build->update($buildID);
|
|
if(dao::isError()) die(js::error(dao::getError()));
|
|
$files = $this->loadModel('file')->saveUpload('build', $buildID);
|
|
|
|
if($changes or $files)
|
|
{
|
|
$fileAction = '';
|
|
if(!empty($files)) $fileAction = $this->lang->addFiles . join(',', $files) . "\n" ;
|
|
$actionID = $this->loadModel('action')->create('build', $buildID, 'Edited', $fileAction);
|
|
if(!empty($changes)) $this->action->logHistory($actionID, $changes);
|
|
}
|
|
die(js::locate(inlink('view', "buildID=$buildID"), 'parent'));
|
|
}
|
|
|
|
$this->loadModel('project');
|
|
|
|
/* Set menu. */
|
|
$build = $this->build->getById((int)$buildID);
|
|
$this->project->setMenu($this->project->getPairs(), $build->project);
|
|
|
|
/* Get stories and bugs. */
|
|
$orderBy = 'status_asc, stage_asc, id_desc';
|
|
|
|
/* Assign. */
|
|
$project = $this->loadModel('project')->getById($build->project);
|
|
|
|
$productGroups = $this->project->getProducts($build->project);
|
|
$products = array();
|
|
foreach($productGroups as $product) $products[$product->id] = $product->name;
|
|
|
|
$this->view->title = $project->name . $this->lang->colon . $this->lang->build->edit;
|
|
$this->view->position[] = html::a($this->createLink('project', 'task', "projectID=$build->project"), $project->name);
|
|
$this->view->position[] = $this->lang->build->edit;
|
|
$this->view->productGroups = $productGroups;
|
|
$this->view->products = $products;
|
|
$this->view->branches = $build->productType == 'normal' ? array() : $this->loadModel('branch')->getPairs($build->product);
|
|
$this->view->build = $build;
|
|
$this->view->users = $this->loadModel('user')->getPairs('nodeleted', $build->builder);
|
|
$this->view->orderBy = $orderBy;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* View a build.
|
|
*
|
|
* @param int $buildID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function view($buildID, $type = 'story', $link = 'false', $param = '')
|
|
{
|
|
if($type == 'story')$this->session->set('storyList', $this->app->getURI(true));
|
|
if($type == 'bug') $this->session->set('bugList', $this->app->getURI(true));
|
|
|
|
$this->loadModel('story');
|
|
$this->loadModel('bug');
|
|
|
|
/* Set menu. */
|
|
$build = $this->build->getById((int)$buildID, true);
|
|
if(!$build) die(js::error($this->lang->notFound) . js::locate('back'));
|
|
|
|
$stories = $this->dao->select('*')->from(TABLE_STORY)->where('id')->in($build->stories)->andWhere('deleted')->eq(0)->fetchAll('id');
|
|
$stages = $this->dao->select('*')->from(TABLE_STORYSTAGE)->where('story')->in($build->stories)->andWhere('branch')->eq($build->branch)->fetchPairs('story', 'stage');
|
|
foreach($stages as $storyID => $stage)$stories[$storyID]->stage = $stage;
|
|
$bugs = $this->dao->select('*')->from(TABLE_BUG)->where('id')->in($build->bugs)->andWhere('deleted')->eq(0)->fetchAll();
|
|
|
|
$this->loadModel('project')->setMenu($this->project->getPairs(), $build->project);
|
|
|
|
/* Assign. */
|
|
$projects = $this->project->getPairs();
|
|
$this->view->title = "BUILD #$build->id $build->name - " . $projects[$build->project];
|
|
$this->view->position[] = html::a($this->createLink('project', 'task', "projectID=$build->project"), $projects[$build->project]);
|
|
$this->view->position[] = $this->lang->build->view;
|
|
$this->view->generatedBugs = $this->bug->getProjectBugs($build->project, 'status_desc,id_desc', null, $build->id);
|
|
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
|
$this->view->build = $build;
|
|
$this->view->stories = $stories;
|
|
$this->view->bugs = $bugs;
|
|
$this->view->actions = $this->loadModel('action')->getList('build', $buildID);
|
|
$this->view->type = $type;
|
|
$this->view->link = $link;
|
|
$this->view->param = $param;
|
|
$this->view->branchName = $build->productType == 'normal' ? '' : $this->loadModel('branch')->getById($build->branch);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Delete a build.
|
|
*
|
|
* @param int $buildID
|
|
* @param string $confirm yes|noe
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($buildID, $confirm = 'no')
|
|
{
|
|
if($confirm == 'no')
|
|
{
|
|
die(js::confirm($this->lang->build->confirmDelete, $this->createLink('build', 'delete', "buildID=$buildID&confirm=yes")));
|
|
}
|
|
else
|
|
{
|
|
$build = $this->build->getById($buildID);
|
|
$this->build->delete(TABLE_BUILD, $buildID);
|
|
|
|
/* if ajax request, send result. */
|
|
if($this->server->ajax)
|
|
{
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
}
|
|
else
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = '';
|
|
}
|
|
$this->send($response);
|
|
}
|
|
die(js::locate($this->createLink('project', 'build', "projectID=$build->project"), 'parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AJAX: get builds of a product in html select.
|
|
*
|
|
* @param int $productID
|
|
* @param string $varName the name of the select object to create
|
|
* @param string $build build to selected
|
|
* @param int $index the index of batch create bug.
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetProductBuilds($productID, $varName, $build = '', $branch = 0, $index = 0)
|
|
{
|
|
if($varName == 'openedBuild' ) die(html::select($varName . '[]', $this->build->getProductBuildPairs($productID, $branch, 'noempty,release,noterminate,nodone'), $build, 'size=4 class=form-control multiple'));
|
|
if($varName == 'openedBuilds' ) die(html::select($varName . "[$index][]", $this->build->getProductBuildPairs($productID, $branch, 'noempty,release'), $build, 'size=4 class=form-control multiple'));
|
|
if($varName == 'resolvedBuild') die(html::select($varName, $this->build->getProductBuildPairs($productID, $branch, 'noempty,release,noterminate,nodone'), $build, "class='form-control'"));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get builds of a project in html select.
|
|
*
|
|
* @param int $projectID
|
|
* @param string $varName the name of the select object to create
|
|
* @param string $build build to selected
|
|
* @param int $index the index of batch create bug.
|
|
* @param bool $needCreate if need to append the link of create build
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetProjectBuilds($projectID, $productID, $varName, $build = '', $branch = 0, $index = 0, $needCreate = false)
|
|
{
|
|
if($varName == 'openedBuild')
|
|
{
|
|
$builds = $this->build->getProjectBuildPairs($projectID, $productID, $branch, 'noempty,release,noterminate,nodone');
|
|
$output = html::select($varName . '[]', $builds , $build, 'size=4 class=form-control multiple');
|
|
die($output);
|
|
}
|
|
if($varName == 'openedBuilds') die(html::select($varName . "[$index][]", $this->build->getProjectBuildPairs($projectID, $productID, $branch, 'noempty'), $build, 'size=4 class=form-control multiple'));
|
|
if($varName == 'resolvedBuild') die(html::select($varName, $this->build->getProjectBuildPairs($projectID, $productID, $branch, 'noempty,noterminate,nodone'), $build, "class='form-control'"));
|
|
if($varName == 'testTaskBuild') die(html::select('build', $this->build->getProjectBuildPairs($projectID, $productID, $branch, 'noempty'), $build, "class='form-control'"));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get all builds of a product in html select.
|
|
*
|
|
* @param int $productID
|
|
* @param string $varName the name of the select object to create
|
|
* @param string $build build to selected
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetAllProductBuilds($productID, $varName, $build = '', $branch = 0)
|
|
{
|
|
if($varName == 'openedBuild' ) die(html::select($varName . '[]', $this->build->getProductBuildPairs($productID, $branch, 'noempty'), $build, 'size=4 class=form-control multiple'));
|
|
if($varName == 'resolvedBuild') die(html::select($varName, $this->build->getProductBuildPairs($productID, $branch, ''), $build, "class='form-control'"));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get all builds of a project in html select.
|
|
*
|
|
* @param int $projectID
|
|
* @param int $productID
|
|
* @param string $varName the name of the select object to create
|
|
* @param string $build build to selected
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetAllProjectBuilds($projectID, $productID, $varName, $build = '', $branch = 0)
|
|
{
|
|
if($varName == 'openedBuild')
|
|
{
|
|
$builds = $this->build->getProjectBuildPairs($projectID, $productID, $branch, 'noempty');
|
|
$output = html::select($varName . '[]', $builds , $build, 'size=4 class=form-control multiple');
|
|
die($output);
|
|
}
|
|
if($varName == 'resolvedBuild') die(html::select($varName, $this->build->getProjectBuildPairs($projectID, $productID, $branch, ''), $build, "class='form-control'"));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get builds of a branch in html select.
|
|
*
|
|
* @param int $productID
|
|
* @param int $branchID
|
|
* @param string $operation the operation of creating a release or editing.
|
|
* @param string $build build to selected.
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function ajaxGetBranchBuilds($productID, $branchID, $operation, $build = '')
|
|
{
|
|
$builds = $this->build->getProductBuildPairs($productID, $branchID);
|
|
$releasedBuilds = $this->loadModel('release')->getReleaseBuilds($productID);
|
|
|
|
if($operation == 'editRelease')
|
|
{
|
|
foreach($releasedBuilds as $buildID)
|
|
{
|
|
if($build == $buildID) continue;
|
|
unset($builds[$buildID]);
|
|
}
|
|
}
|
|
if($operation == 'createRelease')
|
|
{
|
|
foreach($releasedBuilds as $buildID) unset($builds[$buildID]);
|
|
}
|
|
unset($builds['trunk']);
|
|
|
|
die(html::select('build', $builds, $build, "class='form-control'"));
|
|
}
|
|
|
|
/**
|
|
* Link stories
|
|
*
|
|
* @param int $buildID
|
|
* @param string $browseType
|
|
* @param int $param
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function linkStory($buildID = 0, $browseType = '', $param = 0)
|
|
{
|
|
if(!empty($_POST['stories']))
|
|
{
|
|
$this->build->linkStory($buildID);
|
|
die(js::locate(inlink('view', "buildID=$buildID&type=story"), 'parent'));
|
|
}
|
|
|
|
$build = $this->build->getById($buildID);
|
|
$this->loadModel('project')->setMenu($this->project->getPairs(), $build->project);
|
|
$this->loadModel('story');
|
|
$this->loadModel('tree');
|
|
$this->loadModel('product');
|
|
|
|
/* Build search form. */
|
|
$product = $this->product->getByID($build->product);
|
|
$queryID = ($browseType == 'bySearch') ? (int)$param : 0;
|
|
unset($this->config->product->search['fields']['product']);
|
|
unset($this->config->product->search['fields']['project']);
|
|
$this->config->product->search['actionURL'] = $this->createLink('build', 'view', "buildID=$buildID&type=story&link=true¶m=" . helper::safe64Encode("&browseType=bySearch&queryID=myQueryID"));
|
|
$this->config->product->search['queryID'] = $queryID;
|
|
$this->config->product->search['style'] = 'simple';
|
|
$this->config->product->search['params']['plan']['values'] = $this->loadModel('productplan')->getForProducts(array($build->product => $build->product));
|
|
$this->config->product->search['params']['module']['values'] = $this->tree->getOptionMenu($build->product, $viewType = 'story', $startModuleID = 0);
|
|
$this->config->product->search['params']['status'] = array('operator' => '=', 'control' => 'select', 'values' => $this->lang->story->statusList);
|
|
if($product->type == 'normal')
|
|
{
|
|
unset($this->config->product->search['fields']['branch']);
|
|
unset($this->config->product->search['params']['branch']);
|
|
}
|
|
else
|
|
{
|
|
$this->config->product->search['params']['branch']['values'] = array('' => '') + $this->loadModel('branch')->getPairs($product->id, 'noempty');
|
|
}
|
|
$this->loadModel('search')->setSearchParams($this->config->product->search);
|
|
|
|
if($browseType == 'bySearch')
|
|
{
|
|
$allStories = $this->story->getBySearch($build->product, $queryID, 'id', null, $build->project);
|
|
}
|
|
else
|
|
{
|
|
$allStories = $this->story->getProjectStories($build->project);
|
|
}
|
|
|
|
$this->view->allStories = $allStories;
|
|
$this->view->build = $build;
|
|
$this->view->buildStories = empty($build->stories) ? array() : $this->story->getByList($build->stories);
|
|
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
|
$this->view->browseType = $browseType;
|
|
$this->view->param = $param;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Unlink story
|
|
*
|
|
* @param int $storyID
|
|
* @param string $confirm yes|no
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function unlinkStory($buildID, $storyID)
|
|
{
|
|
$this->build->unlinkStory($buildID, $storyID);
|
|
|
|
/* if ajax request, send result. */
|
|
if($this->server->ajax)
|
|
{
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
}
|
|
else
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = '';
|
|
}
|
|
$this->send($response);
|
|
}
|
|
die(js::reload('parent'));
|
|
}
|
|
|
|
/**
|
|
* Batch unlink story.
|
|
*
|
|
* @param string $confirm
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchUnlinkStory($buildID)
|
|
{
|
|
$this->build->batchUnlinkStory($buildID);
|
|
die(js::locate($this->createLink('build', 'view', "buildID=$buildID&type=story"), 'parent'));
|
|
}
|
|
|
|
/**
|
|
* Link bugs.
|
|
*
|
|
* @param int $buildID
|
|
* @param string $browseType
|
|
* @param int $param
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function linkBug($buildID = 0, $browseType = '', $param = 0)
|
|
{
|
|
if(!empty($_POST['bugs']))
|
|
{
|
|
$this->build->linkBug($buildID);
|
|
die(js::locate(inlink('view', "buildID=$buildID&type=bug"), 'parent'));
|
|
}
|
|
|
|
/* Set menu. */
|
|
$build = $this->build->getByID($buildID);
|
|
$this->loadModel('project')->setMenu($this->project->getPairs(), $build->project);
|
|
|
|
$queryID = ($browseType == 'bysearch') ? (int)$param : 0;
|
|
|
|
/* Build the search form. */
|
|
$this->loadModel('bug');
|
|
$this->config->bug->search['actionURL'] = $this->createLink('build', 'view', "buildID=$buildID&type=bug&link=true¶m=" . helper::safe64Encode("&browseType=bySearch&queryID=myQueryID"));
|
|
$this->config->bug->search['queryID'] = $queryID;
|
|
$this->config->bug->search['style'] = 'simple';
|
|
$this->config->bug->search['params']['plan']['values'] = $this->loadModel('productplan')->getForProducts(array($build->product => $build->product));
|
|
$this->config->bug->search['params']['module']['values'] = $this->loadModel('tree')->getOptionMenu($build->product, $viewType = 'bug', $startModuleID = 0);
|
|
$this->config->bug->search['params']['project']['values'] = $this->loadModel('product')->getProjectPairs($build->product);
|
|
$this->config->bug->search['params']['openedBuild']['values'] = $this->build->getProductBuildPairs($build->product);
|
|
$this->config->bug->search['params']['resolvedBuild']['values'] = $this->config->bug->search['params']['openedBuild']['values'];
|
|
$this->loadModel('search')->setSearchParams($this->config->bug->search);
|
|
|
|
if($browseType == 'bySearch')
|
|
{
|
|
$allBugs = $this->bug->getBySearch($build->product, $queryID, 'id_desc');
|
|
}
|
|
else
|
|
{
|
|
$projectBugs = $this->bug->getProjectBugs($build->project);
|
|
$allBugs = array();
|
|
foreach($projectBugs as $key => $bug)
|
|
{
|
|
if($bug->status == 'resolved')
|
|
{
|
|
$allBugs[$key] = $bug;
|
|
unset($projectBugs[$key]);
|
|
}
|
|
elseif($bug->status == 'closed')
|
|
{
|
|
unset($projectBugs[$key]);
|
|
}
|
|
}
|
|
$allBugs += $projectBugs;
|
|
}
|
|
|
|
$this->view->allBugs = $allBugs;
|
|
$this->view->buildBugs = empty($build->bugs) ? array() : $this->bug->getByList($build->bugs);
|
|
$this->view->build = $build;
|
|
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
|
$this->view->browseType = $browseType;
|
|
$this->view->param = $param;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Unlink story
|
|
*
|
|
* @param int $buildID
|
|
* @param int $bugID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function unlinkBug($buildID, $bugID)
|
|
{
|
|
$this->build->unlinkBug($buildID, $bugID);
|
|
|
|
/* if ajax request, send result. */
|
|
if($this->server->ajax)
|
|
{
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
}
|
|
else
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = '';
|
|
}
|
|
$this->send($response);
|
|
}
|
|
die(js::reload('parent'));
|
|
}
|
|
|
|
/**
|
|
* Batch unlink story.
|
|
*
|
|
* @param int $buildID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchUnlinkBug($buildID)
|
|
{
|
|
$this->build->batchUnlinkBug($buildID);
|
|
die(js::locate($this->createLink('build', 'view', "buildID=$buildID&type=bug"), 'parent'));
|
|
}
|
|
}
|