| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555 |
- <?php
- /**
- * The control file of design module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Shujie Tian <tianshujie@easycorp.ltd>
- * @package design
- * @version $Id: control.php 5107 2020-09-02 09:46:12Z tianshujie@easycorp.ltd $
- * @link https://www.zentao.net
- */
- class design extends control
- {
- /**
- * 构造函数,加载通用的模块。
- * Construct function, load module auto.
- *
- * @param string $moduleName
- * @param string $methodName
- * @access public
- * @return void
- */
- public function __construct($moduleName = '', $methodName = '')
- {
- parent::__construct($moduleName, $methodName);
- $this->loadModel('product');
- $this->loadModel('project');
- $this->loadModel('task');
- }
- /**
- * 设置页面公共的数据以及导航。
- * Design common action.
- *
- * @param int $projectID
- * @param int $productID
- * @param int $designID
- * @param string $type
- * @access public
- * @return void
- */
- public function commonAction($projectID = 0, $productID = 0, $designID = 0, $type = 'all')
- {
- $products = $this->product->getProductPairsByProject($projectID);
- $products[0] = $this->lang->product->all;
- ksort($products);
- $productID = $this->product->getAccessibleProductID($productID, $products);
- $this->designZen->setMenu($projectID, $productID, strtolower($type));
- $this->project->setMenu($projectID);
- $project = $this->project->getByID($projectID);
- if(!$project->hasProduct) $this->config->hasSwitcherModules = array();
- $this->view->products = $products;
- $this->view->switcherParams = "projectID={$projectID}&productID={$productID}";
- $this->view->switcherText = zget($products, $productID);
- $this->view->switcherObjectID = $productID;
- $this->lang->design->typeList = in_array($project->model, array('waterfall', 'ipd')) ? $this->lang->design->typeList : $this->lang->design->plusTypeList;
- $this->config->design->dtable->fieldList['type']['statusMap'] = $this->lang->design->typeList;
- return $productID;
- }
- /**
- * 设计列表页面。
- * Browse designs.
- *
- * @param int $projectID
- * @param int $productID
- * @param string $type all|bySearch|HLDS|DDS|DBDS|ADS
- * @param int $param
- * @param string $orderBy
- * @param int $recTotal
- * @param int $recPerPage
- * @param int $pageID
- * @access public
- * @return void
- */
- public function browse($projectID = 0, $productID = 0, $type = 'all', $param = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1)
- {
- $productID = $this->commonAction($projectID, $productID, 0, $type);
- $project = $this->project->getByID($projectID);
- /* Save session for design list. */
- $this->session->set('designList', $this->app->getURI(true), 'project');
- $this->session->set('reviewList', $this->app->getURI(true), 'project');
- $products = $this->product->getProductPairsByProject($projectID);
- $productIdList = $productID ? $productID : array_keys($products);
- $stories = $this->loadModel('story')->getProductStoryPairs($productIdList, 'all', 0, 'active,launched,developing', 'id_desc', 0, 'full', 'full');
- $queryID = $type == 'bySearch' ? $param : 0;
- /* Build Search Form. */
- $this->config->design->search['params']['story']['values'] = $stories;
- $this->config->design->search['params']['type']['values'] = $this->lang->design->typeList;
- $this->config->design->search['actionURL'] = $this->createLink('design', 'browse', "projectID={$projectID}&productID={$productID}&type=bySearch&queryID=myQueryID");
- $this->config->design->search['queryID'] = $queryID;
- $this->loadModel('search')->setSearchParams($this->config->design->search);
- /* Init pager and set table field and actions. */
- $this->app->loadClass('pager', true);
- $pager = pager::init($recTotal, $recPerPage, $pageID);
- if(isset($project->hasProduct) && !$project->hasProduct) unset($this->config->design->dtable->fieldList['product']);
- if(isset($project->hasProduct) && $project->hasProduct) $this->config->design->dtable->fieldList['product']['map'] = $this->view->products;
- if(!helper::hasFeature('devops')) $this->config->design->dtable->fieldList['actions']['menu'] = array('edit', 'delete');
- $designs = $this->design->getList($projectID, $productID, $type, $queryID, $orderBy, $pager);
- if($this->config->edition != 'open')
- {
- $designRelatedObjectList = $this->loadModel('custom')->getRelatedObjectList(array_keys($designs), 'design', 'byRelation', true);
- foreach($designs as $design) $design->relatedObject = zget($designRelatedObjectList, $design->id, 0);
- }
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->browse;
- $this->view->designs = $designs;
- $this->view->projectID = $projectID;
- $this->view->productID = $productID;
- $this->view->type = $type;
- $this->view->param = $param;
- $this->view->orderBy = $orderBy;
- $this->view->pager = $pager;
- $this->view->users = $this->loadModel('user')->getPairs('noletter');
- $this->view->project = $project;
- $this->display();
- }
- /**
- * 创建一个设计。
- * Create a design.
- *
- * @param int $projectID
- * @param int $productID
- * @param string $type all|bySearch|HLDS|DDS|DBDS|ADS
- * @access public
- * @return void
- */
- public function create($projectID = 0, $productID = 0, $type = 'all')
- {
- $productID = $this->commonAction($projectID, $productID, 0, $type);
- if($_POST)
- {
- $designData = form::data()
- ->add('project', $projectID)
- ->setDefault('createdBy', $this->app->user->account)
- ->get();
- $story = $this->loadModel('story')->getById($designData->story);
- if($story) $designData->storyVersion = $story->version;
- $designID = $this->design->create($designData);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $this->loadModel('action')->create('design', $designID, 'created');
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => $this->createLink('design', 'browse', "projectID={$projectID}&productID={$productID}")));
- }
- $products = $this->product->getProductPairsByProject($projectID);
- $productIdList = $productID ? $productID : array_keys($products);
- $stories = $this->loadModel('story')->getProductStoryPairs($productIdList, 'all', 0, 'active,launched,developing', 'id_desc', 0, 'full', 'full');
- $frozenType = $this->design->getFrozenDesignType($projectID);
- foreach($frozenType as $type) unset($this->lang->design->typeList[$type]);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->create;
- $this->view->users = $this->loadModel('user')->getPairs('noclosed');
- $this->view->stories = $this->story->addGradeLabel($stories);
- $this->view->productID = $productID;
- $this->view->projectID = $projectID;
- $this->view->type = $type;
- $this->view->project = $this->loadModel('project')->getByID($projectID);
- $this->display();
- }
- /**
- * 批量创建设计。
- * Batch create designs.
- *
- * @param int $projectID
- * @param int $productID
- * @param string $type all|bySearch|HLDS|DDS|DBDS|ADS
- * @access public
- * @return void
- */
- public function batchCreate($projectID = 0, $productID = 0, $type = 'all')
- {
- $productID = $this->commonAction($projectID, $productID, 0, $type);
- if($_POST)
- {
- $designs = form::batchData()->get();
- $this->design->batchCreate($projectID, $productID, $designs);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => inlink('browse', "projectID={$projectID}&productID={$productID}")));
- }
- $products = $this->product->getProductPairsByProject($projectID);
- $productIdList = $productID ? $productID : array_keys($products);
- $stories = $this->loadModel('story')->getProductStoryPairs($productIdList, 'all', 0, 'active,launched,developing', 'id_desc', 0, 'full', 'full');
- $project = $this->loadModel('project')->getByID($projectID);
- $frozenType = $this->design->getFrozenDesignType($projectID);
- foreach($frozenType as $type) unset($this->lang->design->typeList[$type]);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->batchCreate;
- $this->view->stories = $this->story->addGradeLabel($stories);
- $this->view->users = $this->loadModel('user')->getPairs('noclosed');
- $this->view->type = $type;
- $this->view->typeList = $project->model == 'waterfall' ? $this->lang->design->typeList : $this->lang->design->plusTypeList;
- $this->view->projectID = $projectID;
- $this->display();
- }
- /**
- * 设计详情页面。
- * View a design.
- *
- * @param int $designID
- * @param int $version
- * @access public
- * @return void
- */
- public function view($designID = 0, $version = 0)
- {
- $design = $this->design->getByID($designID, $version);
- $this->commonAction($design->project, $design->product, $designID, $design->type);
- $this->session->set('revisionList', $this->app->getURI(true));
- $this->session->set('storyList', $this->app->getURI(true), 'product');
- $products = $this->product->getProductPairsByProject($design->project);
- $productIdList = $design->product ? $design->product : array_keys($products);
- $project = $this->loadModel('project')->getByID($design->project);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->view;
- $this->view->design = $design;
- $this->view->stories = $this->loadModel('story')->getProductStoryPairs($productIdList, 'all', 0, 'active,launched,developing', 'id_desc', 0, 'full', 'full');
- $this->view->users = $this->loadModel('user')->getPairs('noletter');
- $this->view->actions = $this->loadModel('action')->getList('design', $design->id);
- $this->view->repos = $this->loadModel('repo')->getRepoPairs('project', $design->project);
- $this->view->project = $project;
- $this->view->version = $version == 0 ? $design->version : $version;
- $this->view->typeList = $project->model == 'waterfall' ? $this->lang->design->typeList : $this->lang->design->plusTypeList;
- $this->display();
- }
- /**
- * 编辑一个设计。
- * Edit a design.
- *
- * @param int $designID
- * @access public
- * @return void
- */
- public function edit($designID = 0)
- {
- $design = $this->design->getByID($designID);
- $design = $this->design->getAffectedScope($design);
- $this->commonAction($design->project, $design->product, $designID, $design->type);
- if($_POST)
- {
- $designData = form::data()->setDefault('editedBy', $this->app->user->account)->get();
- if($design->story != $designData->story)
- {
- $story = $this->loadModel('story')->getById($designData->story);
- if($story) $designData->storyVersion = $story->version;
- }
- $changes = $this->design->update($designID, $designData);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- if(!empty($changes))
- {
- $actionID = $this->loadModel('action')->create('design', $designID, 'changed');
- $this->action->logHistory($actionID, $changes);
- }
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => $this->createLink('design', 'view', "id={$designID}")));
- }
- $products = $this->product->getProductPairsByProject($design->project);
- $productIdList = $design->product ? $design->product : array_keys($products);
- $project = $this->loadModel('project')->getByID($design->project);
- $stories = $this->loadModel('story')->getProductStoryPairs($productIdList, 'all', 0, 'active,launched,developing', 'id_desc', 0, 'full', 'full');
- $frozenType = $this->design->getFrozenDesignType($design->project);
- foreach($frozenType as $type) unset($this->lang->design->typeList[$type]);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->edit;
- $this->view->design = $design;
- $this->view->project = $project;
- $this->view->stories = $this->story->addGradeLabel($stories);
- $this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter');
- $this->view->typeList = $project->model == 'waterfall' ? $this->lang->design->typeList : $this->lang->design->plusTypeList;
- $this->display();
- }
- /**
- * 关联代码提交页面。
- * Design link commits.
- *
- * @param int $designID
- * @param int $repoID
- * @param string $begin
- * @param string $end
- * @param int $recPerPage
- * @param int $pageID
- * @access public
- * @return void
- * @param int $recTotal
- */
- public function linkCommit($designID = 0, $repoID = 0, $begin = '', $end = '', $recTotal = 0, $recPerPage = 20, $pageID = 1)
- {
- if($_POST)
- {
- $this->design->linkCommit($designID, $repoID, $this->post->revision);
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => true, 'closeModal' => true));
- }
- $design = $this->design->getByID($designID);
- $this->commonAction($design->project, $design->product, $designID, $design->type);
- /* Get project and date. */
- $project = $this->loadModel('project')->getByID($design->project);
- $begin = $begin ? date('Y-m-d', strtotime($begin)) : $project->begin;
- $end = $end ? date('Y-m-d', strtotime($end)) : helper::today();
- /* Get the repository information through the repoID. */
- $repos = $this->loadModel('repo')->getRepoPairs('project', $design->project);
- $repoID = $repoID ? $repoID : key($repos);
- $repo = $this->loadModel('repo')->getByID((int)$repoID);
- /* Init pager. */
- $this->app->loadClass('pager', true);
- $pager = new pager(0, $recPerPage, $pageID);
- $revisions = $this->repo->getCommits($repo, '', 'HEAD', 'dir', $pager, $begin, date('Y-m-d 23:59:59', strtotime($end)));
- $this->session->set('designRevisions', $revisions);
- /* Get linked submission. */
- $linkedRevisions = array();
- $relations = $this->loadModel('common')->getRelations('design', $designID, 'commit');
- foreach($relations as $relation) $linkedRevisions[$relation->BID] = $relation->BID;
- foreach($revisions as $id => $commit)
- {
- if(isset($linkedRevisions[$commit->id])) unset($revisions[$id]);
- }
- $this->config->design->linkcommit->dtable->fieldList['revision']['link'] = sprintf($this->config->design->linkcommit->dtable->fieldList['revision']['link'], $repoID, $design->project);
- if(empty($repo->SCM) || $repo->SCM != 'Git') unset($this->config->design->linkcommit->dtable->fieldList['commit']);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->linkCommit;
- $this->view->repos = $repos;
- $this->view->repoID = $repoID;
- $this->view->repo = $repo;
- $this->view->revisions = $revisions;
- $this->view->designID = $designID;
- $this->view->begin = $begin;
- $this->view->end = $end;
- $this->view->design = $design;
- $this->view->pager = $pager;
- $this->view->users = $this->loadModel('user')->getPairs('noletter');
- $this->display();
- }
- /**
- * 设计解除代码提交关联。
- * Design unlink a commit.
- *
- * @param int $designID
- * @param int $commitID
- * @access public
- * @return void
- */
- public function unlinkCommit($designID = 0, $commitID = 0)
- {
- $this->design->unlinkCommit($designID, $commitID);
- $link = inlink('viewCommit', "designID={$designID}");
- return $this->sendSuccess(array('callback' => "loadModal(\"$link\", 'viewCommitModal');"));
- }
- /**
- * 查看设计关联的代码提交。
- * View a design's commit.
- *
- * @param int $designID
- * @param int $recTotal
- * @param int $recPerPage
- * @param int $pageID
- * @access public
- * @return void
- */
- public function viewCommit($designID = 0, $recTotal = 0, $recPerPage = 20, $pageID = 1)
- {
- /* Init pager. */
- $this->app->loadClass('pager', true);
- $pager = pager::init(0, $recPerPage, $pageID);
- $design = $this->design->getCommit($designID, $pager);
- $this->commonAction($design->project, $design->product, $designID, $design->type);
- $this->config->design->viewcommit->dtable->fieldList['actions']['list']['unlinkCommit']['url'] = sprintf($this->config->design->viewcommit->actionList['unlinkCommit']['url'], $designID);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->submission;
- $this->view->design = $design;
- $this->view->pager = $pager;
- $this->view->users = $this->loadModel('user')->getPairs('noletter');
- $this->view->repos = $this->loadModel('repo')->getRepoPairs('project', $design->project);
- $this->display();
- }
- /**
- * 单个代码提交记录。
- * A version of the repository.
- *
- * @param int $revisionID
- * @param int $projectID
- * @access public
- * @return void
- */
- public function revision($revisionID = 0, $projectID = 0)
- {
- $revision = $this->design->getCommitByID($revisionID);
- $this->locate(helper::createLink('repo', 'revision', "repoID={$revision->repo}&objectID={$projectID}&revistion={$revision->revision}"));
- }
- /**
- * Ajax: 设置2.5级产品下拉菜单。
- * Ajax: Set the dropdown menu of 2.5 level product.
- *
- * @param int $projectID
- * @param int $productID
- * @access public
- * @return void
- */
- public function ajaxSwitcherMenu($projectID, $productID)
- {
- $this->view->link = helper::createLink('design', 'browse', "projectID={$projectID}&productID={id}");
- $this->view->projectID = $projectID;
- $this->view->productID = $productID;
- $this->view->products = $this->loadModel('product')->getProducts($projectID);
- $this->display();
- }
- /**
- * Ajax:通过产品ID获取产品下的需求。
- * Ajax: Get stories by productID and projectID.
- *
- * @param int $productID
- * @param int $projectID
- * @param string $status
- * @param string $hasParent
- * @access public
- * @return void
- */
- public function ajaxGetProductStories($productID, $projectID, $status = 'all', $hasParent = 'true')
- {
- $hasParent = $hasParent == 'true';
- $products = $this->product->getProductPairsByProject($projectID);
- $productIdList = $productID ? $productID : array_keys($products);
- $stories = $this->loadModel('story')->getProductStoryPairs($productIdList, 'all', 0, $status, 'id_desc', 0, 'full', 'full', $hasParent);
- $items = $this->story->addGradeLabel($stories);
- return print(json_encode($items));
- }
- /**
- * 删除一个设计。
- * Delete a design.
- *
- * @param int $designID
- * @access public
- * @return void
- */
- public function delete($designID = 0)
- {
- $design = $this->design->getByID($designID);
- $this->design->delete(TABLE_DESIGN, $designID);
- $this->design->unlinkCommit($designID);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- return $this->send(array('result' => 'success', 'load' => isInModal() ? true : inlink('browse', "projectID={$design->project}")));
- }
- /**
- * 更新设计的指派人。
- * Update assign of design.
- *
- * @param int $designID
- * @access public
- * @return void
- */
- public function assignTo($designID = 0)
- {
- if($_POST)
- {
- $designData = form::data()->setDefault('editedBy', $this->app->user->account)->get();
- $changes = $this->design->assign($designID, $designData);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $this->loadModel('action');
- if(!empty($changes))
- {
- $actionID = $this->action->create('design', $designID, 'Assigned', $this->post->comment, $this->post->assignedTo);
- $this->action->logHistory($actionID, $changes);
- }
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'closeModal' => true, 'load' => true));
- }
- $design = $this->design->getByID($designID);
- $this->view->title = $this->lang->design->common . $this->lang->hyphen . $this->lang->design->assignedTo;
- $this->view->design = $design;
- $this->view->users = $this->loadModel('project')->getTeamMemberPairs($design->project);
- $this->display();
- }
- /**
- * 确认设计的需求变更。
- * Confirm story change of design.
- *
- * @param int $designID
- * @access public
- * @return void
- */
- public function confirmStoryChange($designID = 0)
- {
- $this->design->confirmStoryChange($designID);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $design = $this->design->fetchByID($designID);
- $this->loadModel('action')->create('design', $designID, 'confirmed', '', $design->storyVersion);
- return $this->send(array('result' => 'success', 'load' => true));
- }
- }
|