* @package block * @version $Id$ * @link http://www.zentao.net */ class block extends control { /** * construct. * * @access public * @return void */ public function __construct($moduleName = '', $methodName = '') { parent::__construct($moduleName, $methodName); /* Mark the call from zentao or ranzhi. */ $this->selfCall = !isset($_GET['hash']); if($this->methodName != 'admin' and $this->methodName != 'dashboard' and !$this->selfCall and !$this->loadModel('sso')->checkKey()) die(''); } /** * Block admin. * * @param int $id * @param string $module * @access public * @return void */ public function admin($id = 0, $module = 'my') { $this->session->set('blockModule', $module); $title = $id == 0 ? $this->lang->block->createBlock : $this->lang->block->editBlock; if($module == 'my') { $modules = $this->lang->block->moduleList; foreach($modules as $moduleKey => $moduleName) { if($moduleKey == 'todo') continue; if(in_array($moduleKey, $this->app->user->rights['acls'])) unset($modules[$moduleKey]); if(!common::hasPriv($moduleKey, 'index')) unset($modules[$moduleKey]); } $closedBlock = isset($this->config->block->closed) ? $this->config->block->closed : ''; if(strpos(",$closedBlock,", ",|assigntome,") === false) $modules['assigntome'] = $this->lang->block->assignToMe; if(strpos(",$closedBlock,", ",|dynamic,") === false) $modules['dynamic'] = $this->lang->block->dynamic; if(strpos(",$closedBlock,", ",|flowchart,") === false and $this->config->global->flow == 'full') $modules['flowchart'] = $this->lang->block->lblFlowchart; if(strpos(",$closedBlock,", ",|welcome,") === false and $this->config->global->flow == 'full') $modules['welcome'] = $this->lang->block->welcome; if(strpos(",$closedBlock,", ",|html,") === false) $modules['html'] = 'HTML'; if(strpos(",$closedBlock,", ",|contribute,") === false) $modules['contribute'] = $this->lang->block->contribute; $modules = array('' => '') + $modules; $hiddenBlocks = $this->block->getHiddenBlocks(); foreach($hiddenBlocks as $block) $modules['hiddenBlock' . $block->id] = $block->title; $this->view->modules = $modules; } elseif(isset($this->lang->block->moduleList[$module])) { $this->get->set('mode', 'getblocklist'); if($module == 'program') $this->get->set('dashboard', 'program'); $this->view->blocks = $this->fetch('block', 'main', "module=$module&id=$id"); $this->view->module = $module; } $this->view->title = $title; $this->view->block = $this->block->getByID($id); $this->view->blockID = $id; $this->display(); } /** * Set params when type is rss or html. * * @param int $id * @param string $type * @access public * @return void */ public function set($id, $type, $source = '') { if($_POST) { $source = isset($this->lang->block->moduleList[$source]) ? $source : ''; $this->block->save($id, $source, $type, $this->session->blockModule); if(dao::isError()) die(js::error(dao::geterror())); die(js::reload('parent')); } $block = $this->block->getByID($id); if($block and empty($type)) $type = $block->block; if(isset($this->lang->block->moduleList[$source])) { $func = 'get' . ucfirst($type) . 'Params'; $params = $this->block->$func($source); $this->view->params = json_decode($params, true); } elseif($type == 'assigntome') { $params = $this->block->getAssignToMeParams(); $this->view->params = json_decode($params, true); } $this->view->source = $source; $this->view->type = $type; $this->view->id = $id; $this->view->block = ($block) ? $block : array(); $this->display(); } /** * Delete block * * @param int $id * @param string $sys * @param string $type * @access public * @return void */ public function delete($id, $module = 'my', $type = 'delete') { if($type == 'hidden') { $this->dao->update(TABLE_BLOCK)->set('hidden')->eq(1)->where('`id`')->eq($id)->andWhere('account')->eq($this->app->user->account)->andWhere('module')->eq($module)->exec(); } else { $this->dao->delete()->from(TABLE_BLOCK)->where('`id`')->eq($id)->andWhere('account')->eq($this->app->user->account)->andWhere('module')->eq($module)->exec(); } if(dao::isError()) $this->send(array('result' => 'fail', 'message' => dao::getError())); $this->loadModel('score')->create('block', 'set'); $this->send(array('result' => 'success')); } /** * Sort block. * * @param string $oldOrder * @param string $newOrder * @param string $module * @access public * @return void */ public function sort($orders, $module = 'my') { $orders = explode(',', $orders); $blockList = $this->block->getBlockList($module); foreach ($orders as $order => $blockID) { $block = $blockList[$blockID]; if(!isset($block)) continue; $block->order = $order; $this->dao->replace(TABLE_BLOCK)->data($block)->exec(); } if(dao::isError()) $this->send(array('result' => 'fail')); $this->loadModel('score')->create('block', 'set'); $this->send(array('result' => 'success')); } /** * Resize block * @param integer $id * @access public * @return void */ public function resize($id, $type, $data) { $block = $this->block->getByID($id); if($block) { $field = ''; if($type == 'vertical') $field = 'height'; if($type == 'horizontal') $field = 'grid'; if(empty($field)) $this->send(array('result' => 'fail', 'code' => 400)); $block->$field = $data; $block->params = helper::jsonEncode($block->params); $this->dao->replace(TABLE_BLOCK)->data($block)->exec(); if(dao::isError()) $this->send(array('result' => 'fail', 'code' => 500)); $this->send(array('result' => 'success')); } else { $this->send(array('result' => 'fail', 'code' => 404)); } } /** * Display dashboard for app. * * @param string $module * @access public * @return void */ public function dashboard($module, $type = '') { if($this->loadModel('user')->isLogon()) $this->session->set('blockModule', $module); $blocks = $this->block->getBlockList($module, $type); if($module == 'program') { $program = $this->loadModel('project')->getByID($this->app->session->program); $common = $program->template . 'common'; $inited = empty($this->config->$module->$common->blockInited) ? '' : $this->config->$module->$common->blockInited; } else { $inited = empty($this->config->$module->common->blockInited) ? '' : $this->config->$module->common->blockInited; } /* Init block when vist index first. */ if((empty($blocks) and !$inited and !defined('TUTORIAL'))) { if($this->block->initBlock($module, $type)) die(js::reload()); } $acls = $this->app->user->rights['acls']; $shortBlocks = $longBlocks = array(); foreach($blocks as $key => $block) { if(!empty($block->source) and $block->source != 'todo' and !empty($acls['views']) and !isset($acls['views'][$block->source])) { unset($blocks[$key]); continue; } $block->params = json_decode($block->params); $blockID = $block->block; $source = empty($block->source) ? 'common' : $block->source; $block->blockLink = $this->createLink('block', 'printBlock', "id=$block->id&module=$block->module"); $block->moreLink = ''; if(isset($this->lang->block->modules[$source]->moreLinkList->{$blockID})) { list($moduleName, $method, $vars) = explode('|', sprintf($this->lang->block->modules[$source]->moreLinkList->{$blockID}, isset($block->params->type) ? $block->params->type : '')); $block->moreLink = $this->createLink($moduleName, $method, $vars); } elseif($block->block == 'dynamic') { $block->moreLink = $this->createLink('company', 'dynamic'); } if($this->block->isLongBlock($block)) { $longBlocks[$key] = $block; } else { $shortBlocks[$key] = $block; } } $this->view->longBlocks = $longBlocks; $this->view->shortBlocks = $shortBlocks; $this->view->module = $module; if($this->app->getViewType() == 'json') die(json_encode($blocks)); $this->display(); } /** * latest dynamic. * * @access public * @return void */ public function dynamic() { /* Load pager. */ $this->app->loadClass('pager', $static = true); $pager = new pager(0, 30, 1); $this->view->actions = $this->loadModel('action')->getDynamic('all', 'today', 'date_desc', $pager); $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->display(); } /** * Welcome block. * * @access public * @return void */ public function welcome() { $this->view->tutorialed = $this->loadModel('tutorial')->getTutorialed(); $data = $this->block->getWelcomeBlockData(); $this->view->tasks = $data['tasks']; $this->view->doneTasks = $data['doneTasks']; $this->view->bugs = $data['bugs']; $this->view->stories = $data['stories']; $this->view->delay['task'] = $data['delayTask']; $this->view->delay['bug'] = $data['delayBug']; $time = date('H:i'); $welcomeType = '19:00'; foreach($this->lang->block->welcomeList as $type => $name) { if($time >= $type) $welcomeType = $type; } $this->view->welcomeType = $welcomeType; $this->display(); } /** * Print contribute block. * * @access public * @return void */ public function contribute() { $this->view->data = $this->block->getContributeBlockData(); $this->display(); } /** * Print block. * * @param int $id * @access public * @return void */ public function printBlock($id, $module = 'my') { $block = $this->block->getByID($id); if(empty($block)) return false; $html = ''; if($block->block == 'html') { if (empty($block->params->html)) { $html = "
" . $this->lang->block->emptyTip . "
"; } else { $html = "
" . $block->params->html . '
'; } } elseif($block->source != '') { $this->get->set('mode', 'getblockdata'); $this->get->set('blockTitle', $block->title); $this->get->set('module', $block->module); $this->get->set('source', $block->source); $this->get->set('blockid', $block->block); $this->get->set('param', base64_encode(json_encode($block->params))); $html = $this->fetch('block', 'main', "module={$block->source}&id=$id"); } elseif($block->block == 'dynamic') { $html = $this->fetch('block', 'dynamic'); } elseif($block->block == 'flowchart') { $html = $this->fetch('block', 'flowchart'); } elseif($block->block == 'assigntome') { $this->get->set('param', base64_encode(json_encode($block->params))); $html = $this->fetch('block', 'printAssignToMeBlock', 'longBlock=' . $this->block->isLongBlock($block)); } elseif($block->block == 'welcome') { $html = $this->fetch('block', 'welcome'); } elseif($block->block == 'contribute') { $html = $this->fetch('block', 'contribute'); } echo $html; } /** * Main function. * * @access public * @return void */ public function main($module = '', $id = 0) { if(!$this->selfCall) { $lang = str_replace('_', '-', $this->get->lang); $this->app->setClientLang($lang); $this->app->loadLang('common'); $this->app->loadLang('block'); if(!$this->block->checkAPI($this->get->hash)) die(); } $mode = strtolower($this->get->mode); if($mode == 'getblocklist') { $dashboard = $this->get->dashboard; $blocks = $this->block->getAvailableBlocks($module, $dashboard); if(!$this->selfCall) { echo $blocks; return true; } $blocks = json_decode($blocks, true); $blockPairs = array('' => '') + $blocks; $block = $this->block->getByID($id); echo '
'; echo ''; echo '
'; echo html::select('moduleBlock', $blockPairs, ($block and $block->source != '') ? $block->block : '', "class='form-control chosen'"); echo '
'; } elseif($mode == 'getblockform') { $code = strtolower($this->get->blockid); $func = 'get' . ucfirst($code) . 'Params'; echo $this->block->$func($module); } elseif($mode == 'getblockdata') { $code = strtolower($this->get->blockid); $params = $this->get->param; $params = json_decode(base64_decode($params)); if(!$this->selfCall) { $this->app->user = $this->dao->select('*')->from(TABLE_USER)->where('ranzhi')->eq($params->account)->fetch(); if(empty($this->app->user)) { $this->app->user = new stdclass(); $this->app->user->account = 'guest'; } $this->app->user->admin = strpos($this->app->company->admins, ",{$this->app->user->account},") !== false; $this->app->user->rights = $this->loadModel('user')->authorize($this->app->user->account); $this->app->user->groups = $this->user->getGroups($this->app->user->account); $this->app->user->view = $this->user->grantUserView($this->app->user->account, $this->app->user->rights['acls']); $sso = base64_decode($this->get->sso); $this->view->sso = $sso; $this->view->sign = strpos($sso, '?') === false ? '?' : '&'; } if($id) $block = $this->block->getByID($id); $this->view->longBlock = $this->block->isLongBlock($id ? $block : $params); $this->view->selfCall = $this->selfCall; $this->view->block = $id ? $block : ''; $this->viewType = (isset($params->viewType) and $params->viewType == 'json') ? 'json' : 'html'; $this->params = $params; $this->view->code = $this->get->blockid; $this->view->title = $this->get->blockTitle; $func = 'print' . ucfirst($code) . 'Block'; if(method_exists('block', $func)) { $this->$func($module); } else { $this->view->data = $this->block->$func($module, $params); } $this->view->moreLink = ''; if(isset($this->lang->block->modules[$module]->moreLinkList->{$code})) { list($moduleName, $method, $vars) = explode('|', sprintf($this->lang->block->modules[$module]->moreLinkList->{$code}, isset($params->type) ? $params->type : '')); $this->view->moreLink = $this->createLink($moduleName, $method, $vars); } if($this->viewType == 'json') { unset($this->view->app); unset($this->view->config); unset($this->view->lang); unset($this->view->header); unset($this->view->position); unset($this->view->moduleTree); $output['status'] = is_object($this->view) ? 'success' : 'fail'; $output['data'] = json_encode($this->view); $output['md5'] = md5(json_encode($this->view)); die(json_encode($output)); } $this->display(); } } /** * Print List block. * * @access public * @return void */ public function printListBlock($module = 'product') { $func = 'print' . ucfirst($module) . 'Block'; $this->view->module = $module; $this->$func(); } /** * Print todo block. * * @access public * @return void */ public function printTodoBlock() { $limit = $this->viewType == 'json' ? 0 : (int)$this->params->num; $todos = $this->loadModel('todo')->getList('all', $this->app->user->account, 'wait, doing', $limit, $pager = null, $orderBy = 'date, begin'); $uri = $this->app->getURI(true); $this->session->set('todoList', $uri); $this->session->set('bugList', $uri); $this->session->set('taskList', $uri); $this->session->set('riskList', $uri); foreach($todos as $key => $todo) { if($todo->date == '2030-01-01') unset($todos[$key]); } $this->view->todos = $todos; } /** * Print task block. * * @access public * @return void */ public function printTaskBlock() { $uri = $this->app->getURI(true); $this->session->set('taskList', $uri); $this->session->set('storyList', $uri); if(preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $programID = $this->view->block->module == 'my' ? 0 : (int)$this->session->program; $this->view->tasks = $this->loadModel('task')->getUserTasks($this->app->user->account, $this->params->type, $this->viewType == 'json' ? 0 : (int)$this->params->num, null, $this->params->orderBy, $programID); } /** * Print bug block. * * @access public * @return void */ public function printBugBlock() { $this->session->set('bugList', $this->app->getURI(true)); if(preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $programID = $this->view->block->module == 'my' ? 0 : (int)$this->session->program; $this->view->bugs = $this->loadModel('bug')->getUserBugs($this->app->user->account, $this->params->type, $this->params->orderBy, $this->viewType == 'json' ? 0 : (int)$this->params->num, null, $programID); } /** * Print case block. * * @access public * @return void */ public function printCaseBlock() { $this->session->set('caseList', $this->app->getURI(true)); $this->app->loadLang('testcase'); $this->app->loadLang('testtask'); $cases = array(); if($this->params->type == 'assigntome') { $cases = $this->dao->select('t1.assignedTo AS assignedTo, t2.*')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_TESTTASK)->alias('t3')->on('t1.task = t3.id') ->Where('t1.assignedTo')->eq($this->app->user->account) ->andWhere('t1.status')->ne('done') ->andWhere('t3.status')->ne('done') ->andWhere('t3.deleted')->eq(0) ->andWhere('t2.deleted')->eq(0) ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('t2.program')->eq((int)$this->session->program)->fi() ->orderBy($this->params->orderBy) ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } elseif($this->params->type == 'openedbyme') { $cases = $this->dao->findByOpenedBy($this->app->user->account)->from(TABLE_CASE) ->andWhere('deleted')->eq(0) ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('program')->eq((int)$this->session->program)->fi() ->orderBy($this->params->orderBy) ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } $this->view->cases = $cases; } /** * Print testtask block. * * @access public * @return void */ public function printTesttaskBlock() { $this->session->set('testtaskList', $this->app->getURI(true)); if(preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $this->app->loadLang('testtask'); $this->view->testtasks = $this->dao->select('t1.*,t2.name as productName,t3.name as buildName,t4.name as projectName')->from(TABLE_TESTTASK)->alias('t1') ->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product=t2.id') ->leftJoin(TABLE_BUILD)->alias('t3')->on('t1.build=t3.id') ->leftJoin(TABLE_PROJECT)->alias('t4')->on('t1.project=t4.id') ->leftJoin(TABLE_PROJECTPRODUCT)->alias('t5')->on('t1.project=t5.project') ->where('t1.deleted')->eq('0') ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('t1.program')->eq((int)$this->session->program)->fi() ->beginIF(!$this->app->user->admin)->andWhere('t1.product')->in($this->app->user->view->products)->fi() ->andWhere('t1.product = t5.product') ->beginIF($this->params->type != 'all')->andWhere('t1.status')->eq($this->params->type)->fi() ->orderBy('t1.id desc') ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } /** * Print story block. * * @access public * @return void */ public function printStoryBlock() { $this->session->set('storyList', $this->app->getURI(true)); if(preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $this->app->loadClass('pager', $static = true); $num = isset($this->params->num) ? (int)$this->params->num : 0; $pager = pager::init(0, $num , 1); $type = isset($this->params->type) ? $this->params->type : 'assignedTo'; $orderBy = isset($this->params->type) ? $this->params->orderBy : 'id_asc'; $programID = $this->view->block->module == 'my' ? 0 : (int)$this->session->program; $this->view->stories = $this->loadModel('story')->getUserStories($this->app->user->account, $type, $orderBy, $this->viewType != 'json' ? $pager : '', 'story', $programID); } /** * Print plan block. * * @access public * @return void */ public function printPlanBlock() { $this->session->set('productPlanList', $this->app->getURI(true)); $this->app->loadLang('productplan'); $this->view->plans = $this->dao->select('t1.*,t2.name as productName')->from(TABLE_PRODUCTPLAN)->alias('t1') ->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product=t2.id') ->where('t1.deleted')->eq('0') ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('t2.program')->eq((int)$this->session->program)->fi() ->beginIF(!$this->app->user->admin)->andWhere('t1.product')->in($this->app->user->view->products)->fi() ->orderBy('t1.begin desc') ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } /** * Print releases block. * * @access public * @return void */ public function printReleaseBlock() { $this->session->set('releaseList', $this->app->getURI(true)); $this->app->loadLang('release'); $this->view->releases = $this->dao->select('t1.*,t2.name as productName,t3.name as buildName')->from(TABLE_RELEASE)->alias('t1') ->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product=t2.id') ->leftJoin(TABLE_BUILD)->alias('t3')->on('t1.build=t3.id') ->where('t1.deleted')->eq('0') ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('t1.program')->eq((int)$this->session->program)->fi() ->beginIF(!$this->app->user->admin)->andWhere('t1.product')->in($this->app->user->view->products)->fi() ->orderBy('t1.id desc') ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } /** * Print Build block. * * @access public * @return void */ public function printBuildBlock() { $this->session->set('buildList', $this->app->getURI(true)); $this->app->loadLang('build'); $this->view->builds = $this->dao->select('t1.*, t2.name as productName')->from(TABLE_BUILD)->alias('t1') ->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product=t2.id') ->where('t1.deleted')->eq('0') ->beginIF(!$this->app->user->admin)->andWhere('t1.project')->in($this->app->user->view->projects)->fi() ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('t1.program')->eq((int)$this->session->program)->fi() ->orderBy('t1.id desc') ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } public function printProgramBlock() { $this->app->loadLang('project'); $this->view->programs = $this->loadModel('program')->getProgramOverview('byStatus', 'all', $this->params->orderBy, $this->params->num); $this->view->users = $this->loadModel('user')->getPairs('noletter'); } /** * Print product block. * * @access public * @return void */ public function printProductBlock() { $this->app->loadClass('pager', $static = true); if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $num = isset($this->params->num) ? (int)$this->params->num : 0; $type = isset($this->params->type) ? $this->params->type : ''; $pager = pager::init(0, $num , 1); $productStats = $this->loadModel('product')->getStats('order_desc', $this->viewType != 'json' ? $pager : '', $type); $productIdList = array(); foreach($productStats as $product) $productIdList[] = $product->id; $this->view->projects = $this->dao->select('t1.product,t2.name')->from(TABLE_PROJECTPRODUCT)->alias('t1') ->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.project=t2.id') ->where('t1.product')->in($productIdList) ->andWhere('t2.deleted')->eq(0) ->orderBy('t1.project') ->fetchPairs('product', 'name'); $this->view->productStats = $productStats; } /** * Print statistic block. * * @param string $module * @access public * @return void */ public function printStatisticBlock($module = 'product') { $func = 'print' . ucfirst($module) . 'StatisticBlock'; $this->view->module = $module; $this->$func(); } /** * Print project statistic block. * * @access public * @return void */ public function printProgramStatisticBlock() { if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); /* Load models and langs. */ $this->loadModel('project'); $this->loadModel('weekly'); $this->app->loadLang('task'); $this->app->loadLang('story'); /* Set program status and count. */ $status = isset($this->params->type) ? $this->params->type : 'all'; $count = isset($this->params->num) ? (int)$this->params->num : 15; /* Get programs. */ $programs = $this->loadModel('program')->getProgramOverview('byStatus', $status, 'id_desc', $count); if(empty($programs)) { $this->view->programs = $programs; return false; } $today = helper::today(); $monday = $this->loadModel('weekly')->getThisMonday($today); $tasks = $this->dao->select("program, sum(consumed) as totalConsumed, sum(if(status != 'cancel' and status != 'closed', `left`, 0)) as totalLeft") ->from(TABLE_TASK) ->where('program')->in(array_keys($programs)) ->andWhere('deleted')->eq(0) ->andWhere('parent')->lt(1) ->groupBy('program') ->fetchAll('program'); foreach($programs as $programID => $program) { if($program->template == 'scrum') { $program->progress = $program->allStories == 0 ? 0 : round($program->doneStories / $program->allStories, 3) * 100; $program->projects = $this->project->getProjectStats('all', 0, 0, 1, 'id_desc', null, $programID); } elseif($program->template == 'cmmi') { $begin = $program->begin; $weeks = $this->weekly->getWeekPairs($begin); $current = zget($weeks, $monday, ''); $current = substr($current, 0, -11) . substr($current, -6); $program->pv = $this->weekly->getPV($programID, $today); $program->ev = $this->weekly->getEV($programID, $today); $program->ac = $this->weekly->getAC($programID, $today); $program->sv = $this->weekly->getSV($program->ev, $program->pv); $program->cv = $this->weekly->getCV($program->ev, $program->ac); $progress = isset($tasks[$programID]) ? (($tasks[$programID]->totalConsumed + $tasks[$programID]->totalLeft)) ? round($tasks[$programID]->totalConsumed / ($tasks[$programID]->totalConsumed + $tasks[$programID]->totalLeft), 3) * 100 : 0 : 0; $program->current = $current; $program->progress = $progress; } } $this->view->programs = $programs; $this->view->users = $this->loadModel('user')->getPairs('noletter'); } /** * Print product statistic block. * * @access public * @param string $storyType requirement|story * @return void */ public function printProductStatisticBlock($storyType = 'story') { if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $status = isset($this->params->type) ? $this->params->type : ''; $num = isset($this->params->num) ? $this->params->num : ''; $products = $this->loadModel('product')->getOrderedProducts($status, $num); $productIdList = array_keys($products); if(empty($products)) { $this->view->products = $products; return false; } /* Get stories. */ $stories = $this->dao->select('product, stage, COUNT(status) AS count')->from(TABLE_STORY) ->where('deleted')->eq(0) ->andWhere('product')->in($productIdList) ->beginIF($storyType)->andWhere('type')->eq($storyType)->fi() ->groupBy('product, stage') ->fetchGroup('product', 'stage'); /* Padding the stories to sure all status have records. */ foreach($stories as $product => $story) { foreach(array_keys($this->lang->story->stageList) as $stage) { $story[$stage] = isset($story[$stage]) ? $story[$stage]->count : 0; } $stories[$product] = $story; } /* Get plans. */ $plans = $this->dao->select('product, end')->from(TABLE_PRODUCTPLAN) ->where('deleted')->eq(0) ->andWhere('product')->in($productIdList) ->fetchGroup('product'); foreach($plans as $product => $productPlans) { $expired = 0; $unexpired = 0; foreach($productPlans as $plan) { if($plan->end < helper::today()) $expired++; if($plan->end >= helper::today()) $unexpired++; } $plan = array(); $plan['expired'] = $expired; $plan['unexpired'] = $unexpired; $plans[$product] = $plan; } /* Get projects. */ $projects = $this->dao->select('t1.product, t2.status, t2.end')->from(TABLE_PROJECTPRODUCT)->alias('t1') ->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.project=t2.id') ->where('t1.product')->in($productIdList) ->andWhere('t2.deleted')->eq(0) ->beginIF(!$this->app->user->admin)->andWhere('t2.id')->in($this->app->user->view->projects)->fi() ->fetchGroup('product'); foreach($projects as $product => $productProjects) { $undone= 0; $done = 0; $delay = 0; foreach($productProjects as $project) { ($project->status == 'done' or $project->status == 'closed') ? $done++ : $undone++; if($project->status != 'done' && $project->status != 'closed' && $project->status != 'suspended' && $project->end < helper::today()) $delay++; } $project = array(); $project['undone'] = $undone; $project['done'] = $done; $project['delay'] = $delay; $project['all'] = count($productProjects); $projects[$product] = $project; } /* Get releases. */ $releases = $this->dao->select('product, status, COUNT(*) AS count')->from(TABLE_RELEASE) ->where('deleted')->eq(0) ->andWhere('product')->in($productIdList) ->groupBy('product, status') ->fetchGroup('product', 'status'); foreach($releases as $product => $release) { $release['normal'] = isset($release['normal']) ? $release['normal']->count : 0; $release['terminate'] = isset($release['terminate']) ? $release['terminate']->count : 0; $releases[$product] = $release; } /* Get last releases. */ $lastReleases = $this->dao->select('product, COUNT(*) AS count')->from(TABLE_RELEASE) ->where('date')->eq(date('Y-m-d', strtotime('-1 day'))) ->andWhere('product')->in($productIdList) ->groupBy('product') ->fetchPairs(); foreach($products as $productID => $product) { $product->stories = isset($stories[$productID]) ? $stories[$productID] : 0; $product->plans = isset($plans[$productID]) ? $plans[$productID] : 0; $product->projects = isset($projects[$productID]) ? $projects[$productID] : 0; $product->releases = isset($releases[$productID]) ? $releases[$productID] : 0; $product->lastRelease = isset($lastReleases[$productID]) ? $lastReleases[$productID] : 0; } $this->app->loadLang('story'); $this->app->loadLang('productplan'); $this->app->loadLang('project'); $this->app->loadLang('release'); $this->view->products = $products; } /** * Print project statistic block. * * @access public * @return void */ public function printProjectStatisticBlock() { if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $this->app->loadLang('task'); $this->app->loadLang('story'); $this->app->loadLang('bug'); $status = isset($this->params->type) ? $this->params->type : ''; $num = isset($this->params->num) ? (int)$this->params->num : 0; /* Get projects. */ $programID = $this->view->block->module == 'my' ? 0 : (int)$this->session->program; $projects = $this->loadModel('project')->getOrderedProjects($status, $num, $programID); if(empty($projects)) { $this->view->projects = $projects; return false; } $projectIdList = array_keys($projects); /* Get tasks. Fix bug #2918.*/ $yesterday = date('Y-m-d', strtotime('-1 day')); $taskGroups = $this->dao->select("id,parent,project,status,finishedDate,estimate,consumed,`left`")->from(TABLE_TASK) ->where('project')->in($projectIdList) ->andWhere('deleted')->eq(0) ->fetchGroup('project', 'id'); $tasks = array(); foreach($taskGroups as $projectID => $taskGroup) { $undoneTasks = 0; $yesterdayFinished = 0; $totalEstimate = 0; $totalConsumed = 0; $totalLeft = 0; foreach($taskGroup as $taskID => $task) { if(strpos('wait|doing|pause', $task->status) !== false) $undoneTasks ++; if(strpos($task->finishedDate, $yesterday) !== false) $yesterdayFinished ++; if($task->parent == '-1') continue; $totalConsumed += $task->consumed; if($task->status != 'cancel') $totalEstimate += $task->estimate; if($task->status != 'cancel' and $task->status != 'closed') $totalLeft += $task->left; } $projects[$projectID]->totalTasks = count($taskGroup); $projects[$projectID]->undoneTasks = $undoneTasks; $projects[$projectID]->yesterdayFinished = $yesterdayFinished; $projects[$projectID]->totalEstimate = $totalEstimate; $projects[$projectID]->totalConsumed = $totalConsumed; $projects[$projectID]->totalLeft = $totalLeft; } /* Get stories. */ $stories = $this->dao->select("t1.project, count(t2.status) as totalStories, count(t2.status != 'closed' or null) as unclosedStories, count(t2.stage = 'released' or null) as releasedStories")->from(TABLE_PROJECTSTORY)->alias('t1') ->leftJoin(TABLE_STORY)->alias('t2')->on('t1.story = t2.id') ->where('t1.project')->in($projectIdList) ->andWhere('t2.deleted')->eq(0) ->groupBy('project') ->fetchAll('project'); foreach($stories as $projectID => $story) { foreach($story as $key => $value) { if($key == 'project') continue; $projects[$projectID]->$key = $value; } } /* Get bugs. */ $bugs = $this->dao->select("project, status, count(status) as totalBugs, count(status = 'active' or null) as activeBugs, count(resolvedDate like '{$yesterday}%' or null) as yesterdayResolved")->from(TABLE_BUG) ->where('project')->in($projectIdList) ->andWhere('deleted')->eq(0) ->groupBy('project') ->fetchAll('project'); foreach($bugs as $projectID => $bug) { foreach($bug as $key => $value) { if($key == 'project') continue; $projects[$projectID]->$key = $value; } } foreach($projects as $project) { if(!isset($projects[$project->id]->totalTasks)) { $projects[$project->id]->totalTasks = 0; $projects[$project->id]->undoneTasks = 0; $projects[$project->id]->yesterdayFinished = 0; $projects[$project->id]->totalEstimate = 0; $projects[$project->id]->totalConsumed = 0; $projects[$project->id]->totalLeft = 0; } if(!isset($projects[$project->id]->totalBugs)) { $projects[$project->id]->totalBugs = 0; $projects[$project->id]->activeBugs = 0; $projects[$project->id]->yesterdayResolved = 0; } if(!isset($projects[$project->id]->totalStories)) { $projects[$project->id]->totalStories = 0; $projects[$project->id]->unclosedStories = 0; $projects[$project->id]->releasedStories = 0; } $projects[$project->id]->progress = ($project->totalConsumed || $project->totalLeft) ? round($project->totalConsumed / ($project->totalConsumed + $project->totalLeft), 3) * 100 : 0; $projects[$project->id]->taskProgress = $project->totalTasks ? round(($project->totalTasks - $project->undoneTasks) / $project->totalTasks, 2) * 100 : 0; $projects[$project->id]->storyProgress = $project->totalStories ? round(($project->totalStories - $project->unclosedStories) / $project->totalStories, 2) * 100 : 0; $projects[$project->id]->bugProgress = $project->totalBugs ? round(($project->totalBugs - $project->activeBugs) / $project->totalBugs, 2) * 100 : 0; } $this->view->projects = $projects; } /** * Print cmmi report block. * * @access public * @return void */ public function printCmmiReportBlock() { $this->loadModel('program'); $program = $this->loadModel('project')->getByID($this->session->program); $today = helper::today(); $date = date('Ymd', strtotime($this->loadModel('weekly')->getThisMonday($today))); $begin = $program->begin; $weeks = $this->weekly->getWeekPairs($begin); $current = zget($weeks, $date, ''); $task = $this->dao->select(" sum(consumed) as totalConsumed, sum(if(status != 'cancel' and status != 'closed', `left`, 0)) as totalLeft") ->from(TABLE_TASK)->where('program')->eq($this->session->program) ->andWhere('deleted')->eq(0) ->andWhere('parent')->lt(1) ->fetch(); $this->view->pv = $this->weekly->getPV($this->session->program, $today); $this->view->ev = $this->weekly->getEV($this->session->program, $today); $this->view->ac = $this->weekly->getAC($this->session->program, $today); $this->view->sv = $this->weekly->getSV($this->view->ev, $this->view->pv); $this->view->cv = $this->weekly->getCV($this->view->ev, $this->view->ac); $this->view->current = $current; $this->view->progress = ($task->totalConsumed + $task->totalLeft) ? round($task->totalConsumed / ($task->totalConsumed + $task->totalLeft), 3) * 100 : 0; } /** * Print cmmi gantt block. * * @access public * @return void */ public function printCmmiGanttBlock() { $products = $this->loadModel('product')->getPairs(); $productID = isset($this->session->product) ? 0 : $this->session->product; if(!$productID) $productID = key($products); $this->view->plans = $this->loadModel('programplan')->getDataForGantt($this->session->program, $productID, 0, 'task', false); $this->view->products = $products; $this->view->productID = $productID; } /** * Print cmmi issue block. * * @access public * @return void */ public function printCmmiIssueBlock() { $uri = $this->app->getURI(true); $this->session->set('issueList', $uri); if(preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->view->issues = $this->loadModel('issue')->getBlockIssues($this->params->type, $this->viewType == 'json' ? 0 : (int)$this->params->num, $this->params->orderBy); } /** * Print cmmi risk block. * * @access public * @return void */ public function printCmmiRiskBlock() { $uri = $this->app->getURI(true); $this->session->set('riskList', $uri); $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->view->risks = $this->loadModel('risk')->getBlockRisks($this->params->type, $this->viewType == 'json' ? 0 : (int)$this->params->num, $this->params->orderBy); } /** * Print cmmi estimate block. * * @access public * @return void */ public function printCmmiEstimateBlock() { $this->app->loadLang('durationestimation'); $programID = $this->session->program; $members = $this->loadModel('project')->getTeamMemberPairs($programID); $budget = $this->loadModel('workestimation')->getBudget($programID); if(empty($budget)) $budget = new stdclass(); $this->view->people = $this->dao->select('sum(people) as people')->from(TABLE_DURATIONESTIMATION)->where('program')->eq($this->session->program)->fetch('people'); $this->view->members = count($members) ? count($members) - 1 : 0; $this->view->consumed = $this->dao->select('sum(consumed) as consumed')->from(TABLE_TASK)->where('program')->eq($programID)->andWhere('deleted')->eq(0)->andWhere('parent')->lt(1)->fetch('consumed'); $this->view->budget = $budget; } /** * Print cmmi progress block. * * @access public * @return void */ public function printCmmiProgressBlock() { $this->loadModel('milestone'); $this->loadModel('weekly'); $programID = $this->session->program; $program = $this->loadModel('project')->getByID($programID); $begin = $program->begin; $today = helper::today(); $end = date('Y-m-d', strtotime($today)); $charts['PV'] = '['; $charts['EV'] = '['; $charts['AC'] = '['; $i = 1; $longProgram = helper::diffDate($today, $begin) / 7 > 12; while($begin < $end) { $charts['labels'][] = $longProgram ? $this->lang->block->time . $i . $this->lang->block->month : $this->lang->block->time . $i . $this->lang->block->week; $charts['PV'] .= $this->weekly->getPV($programID, $begin) . ','; $charts['EV'] .= $this->weekly->getEV($programID, $begin) . ','; $charts['AC'] .= $this->weekly->getAC($programID, $begin) . ','; $stageEnd = $longProgram ? date('Y-m-t', strtotime($begin)) : $this->weekly->getThisSunday($begin); $begin = date('Y-m-d', strtotime("$stageEnd + 1 day")); $i ++; } $charts['PV'] .= ']'; $charts['EV'] .= ']'; $charts['AC'] .= ']'; $this->view->charts = $charts; } /** * Print srcum project block. * * @access public * @return void */ public function printScrumoverallBlock() { $programID = $this->session->program; $totalData = $this->loadModel('program')->getProgramOverview('byId', $programID, 'id_desc', 15); $this->view->totalData = $totalData; $this->view->programID = $programID; } /** * Print srcum project list block. * * @access public * @return void */ public function printScrumlistBlock() { $this->app->loadClass('pager', $static = true); if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $num = isset($this->params->num) ? (int)$this->params->num : 0; $type = isset($this->params->type) ? $this->params->type : 'all'; $pager = pager::init(0, $num, 1); $this->view->projectStats = $this->loadModel('project')->getProjectStats($type, $productID = 0, $branch = 0, $itemCounts = 30, $orderBy = 'order_desc', $this->viewType != 'json' ? $pager : '', $this->session->program); } /** * Print srcum product block. * * @access public * @return void */ public function printScrumproductBlock() { $stories = array(); $bugs = array(); $releases = array(); $products = $this->dao->select('id, name')->from(TABLE_PRODUCT)->where('program')->eq($this->session->program)->limit(15)->fetchPairs(); $productIdList = array_keys($products); if(!empty($productIdList)) { $fields = 'product, count(*) as total'; $stories = $this->dao->select($fields)->from(TABLE_STORY)->where('product')->in($productIdList)->andWhere('deleted')->eq('0')->groupBy('product')->fetchPairs(); $bugs = $this->dao->select($fields)->from(TABLE_BUG)->where('product')->in($productIdList)->andWhere('deleted')->eq('0')->groupBy('product')->fetchPairs(); $releases = $this->dao->select($fields)->from(TABLE_RELEASE)->where('product')->in($productIdList)->andWhere('deleted')->eq('0')->groupBy('product')->fetchPairs(); } $this->view->products = $products; $this->view->stories = $stories; $this->view->bugs = $bugs; $this->view->releases = $releases; } /** * Print srcum project block. * * @access public * @return void */ public function printScrumprojectBlock() { $status = $this->dao->select('status, count(*) as count')->from(TABLE_PROJECT) ->where('deleted')->eq(0) ->andWhere('program')->eq($this->session->program) ->groupBy('status') ->fetchPairs(); $summary = new stdclass(); $summary->total = array_sum($status); $summary->doing = zget($status, 'doing', 0); $summary->closed = zget($status, 'closed', 0); $progress = new stdclass(); $progress->doing = $summary->total == 0 ? 0 : round($summary->doing / $summary->total, 3); $progress->closed = $summary->total == 0 ? 0 : round($summary->closed / $summary->total, 3); $this->view->summary = $summary; $this->view->progress = $progress; } /** * Print srcum dynamic block. * * @access public * @return void */ public function printScrumdynamicBlock() { $projects = $this->loadModel('project')->getPairs(); $products = $this->loadModel('product')->getPairs(); $actions = array(); if(!empty($projects) || !empty($products)) { $actions = $this->dao->select('*')->from(TABLE_ACTION) ->beginIF($projects && $products)->where('project')->in(array_keys($projects))->orWhere('product')->in(array_keys($products))->fi() ->beginIF($projects && empty($products))->where('project')->in(array_keys($projects))->fi() ->beginIF(empty($projects) && $products)->where('product')->in(array_keys($products))->fi() ->orderBy('date_desc') ->limit(10) ->fetchAll(); } $this->view->actions = empty($actions) ? array() : $this->loadModel('action')->transformActions($actions); $this->view->users = $this->loadModel('user')->getPairs('noletter'); } /** * Print srcum road map block. * * @param int $productID * @param int $blockNavID * @access public * @return void */ public function printScrumroadmapBlock($productID = 0, $blockNavID = '') { $this->session->set('releaseList', $this->app->getURI(true)); $this->session->set('productPlanList', $this->app->getURI(true)); $products = $this->loadModel('product')->getPairs(); if(!is_numeric($productID)) $productID = key($products); $this->view->roadmaps = $this->product->getRoadmap($productID, 0, 6); $this->view->productID = $productID; $this->view->products = $products; $this->view->sync = 1; $this->view->blockNavID = $blockNavID; if($_POST) { $this->view->sync = 0; $this->display('block', 'scrumroadmapblock'); } } /** * Print srcum test block. * * @access public * @return void */ public function printScrumtestBlock() { $this->session->set('testtaskList', $this->app->getURI(true)); if(preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $this->app->loadLang('testtask'); $this->view->testtasks = $this->dao->select('t1.*,t2.name as productName,t3.name as buildName,t4.name as projectName') ->from(TABLE_TESTTASK)->alias('t1') ->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product=t2.id') ->leftJoin(TABLE_BUILD)->alias('t3')->on('t1.build=t3.id') ->leftJoin(TABLE_PROJECT)->alias('t4')->on('t1.project=t4.id') ->leftJoin(TABLE_PROJECTPRODUCT)->alias('t5')->on('t1.project=t5.project') ->where('t1.deleted')->eq('0') ->andWhere('t1.program')->eq($this->session->program)->fi() ->andWhere('t1.product = t5.product') ->beginIF($this->params->type != 'all')->andWhere('t1.status')->eq($this->params->type)->fi() ->orderBy('t1.id desc') ->beginIF($this->viewType != 'json')->limit((int)$this->params->num)->fi() ->fetchAll(); } /** * Print qa statistic block. * * @access public * @return void */ public function printQaStatisticBlock() { if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $this->app->loadLang('bug'); $status = isset($this->params->type) ? $this->params->type : ''; $num = isset($this->params->num) ? (int)$this->params->num : 0; $products = $this->loadModel('product')->getOrderedProducts($status, $num); $productIdList = array_keys($products); if(empty($products)) { $this->view->products = $products; return false; } $today = date(DT_DATE1); $yesterday = date(DT_DATE1, strtotime('yesterday')); $testtasks = $this->dao->select('*')->from(TABLE_TESTTASK)->where('product')->in($productIdList)->andWhere('project')->ne(0)->andWhere('deleted')->eq(0)->orderBy('id')->fetchAll('product'); $bugs = $this->dao->select("product, count(id) as total, count(assignedTo = '{$this->app->user->account}' or null) as assignedToMe, count(status != 'closed' or null) as unclosed, count((status != 'closed' and status != 'resolved') or null) as unresolved, count(confirmed = '0' or null) as unconfirmed, count((resolvedDate >= '$yesterday' and resolvedDate < '$today') or null) as yesterdayResolved, count((closedDate >= '$yesterday' and closedDate < '$today') or null) as yesterdayClosed") ->from(TABLE_BUG) ->where('product')->in($productIdList) ->andWhere('deleted')->eq(0) ->groupBy('product') ->fetchAll('product'); $confirmedBugs = $this->dao->select('count(product) as product')->from(TABLE_ACTION) ->where('objectType')->eq('bug') ->andWhere('action')->eq('bugconfirmed') ->andWhere('date')->ge($yesterday) ->andWhere('date')->lt($today) ->groupBy('product') ->fetchPairs('product', 'product'); foreach($products as $productID => $product) { $bug = isset($bugs[$productID]) ? $bugs[$productID] : ''; $product->total = empty($bug) ? 0 : $bug->total; $product->assignedToMe = empty($bug) ? 0 : $bug->assignedToMe; $product->unclosed = empty($bug) ? 0 : $bug->unclosed; $product->unresolved = empty($bug) ? 0 : $bug->unresolved; $product->unconfirmed = empty($bug) ? 0 : $bug->unconfirmed; $product->yesterdayResolved = empty($bug) ? 0 : $bug->yesterdayResolved; $product->yesterdayClosed = empty($bug) ? 0 : $bug->yesterdayClosed; $product->yesterdayConfirmed = empty($confirmedBugs[",$productID,"]) ? 0 : $confirmedBugs[",$productID,"]; $product->assignedRate = $product->total ? round($product->assignedToMe / $product->total * 100, 2) : 0; $product->unresolvedRate = $product->total ? round($product->unresolved / $product->total * 100, 2) : 0; $product->unconfirmedRate = $product->total ? round($product->unconfirmed / $product->total * 100, 2) : 0; $product->unclosedRate = $product->total ? round($product->unclosed / $product->total * 100, 2) : 0; $product->testtask = isset($testtasks[$productID]) ? $testtasks[$productID] : ''; } $this->view->products = $products; } /** * Print overview block. * * @access public * @return void */ public function printOverviewBlock($module = 'product') { $func = 'print' . ucfirst($module) . 'OverviewBlock'; $this->view->module = $module; $this->$func(); } /** * Print product overview block. * * @access public * @return void */ public function printProductOverviewBlock() { $normal = 0; $closed = 0; $products = $this->loadModel('product')->getList(); foreach($products as $product) { if(!$this->product->checkPriv($product->id)) continue; if($product->status == 'normal') $normal++; if($product->status == 'closed') $closed++; } $total = $normal + $closed; $this->view->total = $total; $this->view->normal = $normal; $this->view->closed = $closed; $this->view->normalPercent = $total ? round(($normal / $total), 2) * 100 : 0; } /** * Print project overview block. * * @access public * @return void */ public function printProjectOverviewBlock() { $programID = $this->view->block->module == 'my' ? 0 : (int)$this->session->program; $projects = $this->loadModel('project')->getList('all', 0, 0, 0, $programID); $total = 0; foreach($projects as $project) { if(!isset($overview[$project->status])) $overview[$project->status] = 0; $overview[$project->status]++; $total++; } $overviewPercent = array(); foreach($this->lang->project->statusList as $statusKey => $statusName) { if(!isset($overview[$statusKey])) $overview[$statusKey] = 0; $overviewPercent[$statusKey] = $total ? round($overview[$statusKey] / $total, 2) * 100 . '%' : '0%'; } $this->view->total = $total; $this->view->overview = $overview; $this->view->overviewPercent = $overviewPercent; } /** * Print qa overview block. * * @access public * @return void */ public function printQaOverviewBlock() { $casePairs = $this->dao->select('lastRunResult, COUNT(*) AS count')->from(TABLE_CASE) ->where('1=1') ->beginIF($this->view->block->module != 'my' and $this->session->program)->andWhere('program')->eq((int)$this->session->program)->fi() ->groupBy('lastRunResult') ->fetchPairs(); $total = array_sum($casePairs); $this->app->loadLang('testcase'); foreach($this->lang->testcase->resultList as $result => $label) { if(!isset($casePairs[$result])) $casePairs[$result] = 0; } $casePercents = array(); foreach($casePairs as $result => $count) { $casePercents[$result] = $total ? round($count / $total * 100, 2) : 0; } $this->view->total = $total; $this->view->casePairs = $casePairs; $this->view->casePercents = $casePercents; } /** * Print project block. * * @access public * @return void */ public function printProjectBlock() { $this->app->loadClass('pager', $static = true); if(!empty($this->params->type) and preg_match('/[^a-zA-Z0-9_]/', $this->params->type)) die(); $num = isset($this->params->num) ? (int)$this->params->num : 0; $type = isset($this->params->type) ? $this->params->type : 'all'; $pager = pager::init(0, $num, 1); $programID = $this->view->block->module == 'my' ? 0 : (int)$this->session->program; $this->view->projectStats = $this->loadModel('project')->getProjectStats($type, $productID = 0, $branch = 0, $itemCounts = 30, $orderBy = 'order_desc', $this->viewType != 'json' ? $pager : '', $programID); } /** * Print assign to me block. * * @access public * @return void */ public function printAssignToMeBlock($longBlock = true) { if(common::hasPriv('todo', 'view')) $hasViewPriv['todo'] = true; if(common::hasPriv('task', 'view')) $hasViewPriv['task'] = true; if(common::hasPriv('bug', 'view')) $hasViewPriv['bug'] = true; if(common::hasPriv('risk', 'view')) $hasViewPriv['risk'] = true; $params = $this->get->param; $params = json_decode(base64_decode($params)); $count = array(); if(isset($hasViewPriv['todo'])) { $this->app->loadClass('date'); $this->app->loadLang('todo'); $stmt = $this->dao->select('*')->from(TABLE_TODO) ->where("(assignedTo = '{$this->app->user->account}' or (assignedTo = '' and account='{$this->app->user->account}'))") ->andWhere('cycle')->eq(0) ->orderBy('`date`'); if(isset($params->todoNum)) $stmt->limit($params->todoNum); $todos = $stmt->fetchAll(); foreach($todos as $key => $todo) { if($todo->status == 'done' and $todo->finishedBy == $this->app->user->account) { unset($todos[$key]); continue; } $todo->begin = date::formatTime($todo->begin); $todo->end = date::formatTime($todo->end); } $count['todo'] = count($todos); $this->view->todos = $todos; } if(isset($hasViewPriv['task'])) { $this->app->loadLang('task'); $stmt = $this->dao->select('*')->from(TABLE_TASK) ->where('assignedTo')->eq($this->app->user->account) ->andWhere('deleted')->eq('0') ->andWhere('status')->ne('closed') ->orderBy('id_desc'); if(isset($params->taskNum)) $stmt->limit($params->taskNum); $tasks = $stmt->fetchAll(); $count['task'] = count($tasks); $this->view->tasks = $tasks; } if(isset($hasViewPriv['bug'])) { $this->app->loadLang('bug'); $stmt = $this->dao->select('*')->from(TABLE_BUG) ->where('assignedTo')->eq($this->app->user->account) ->andWhere('deleted')->eq('0') ->andWhere('status')->ne('closed') ->orderBy('id_desc'); if(isset($params->bugNum)) $stmt->limit($params->bugNum); $bugs = $stmt->fetchAll(); $count['bug'] = count($bugs); $this->view->bugs = $bugs; } if(isset($hasViewPriv['risk'])) { $this->app->loadLang('risk'); $stmt = $this->dao->select('*')->from(TABLE_RISK) ->where('assignedTo')->eq($this->app->user->account) ->andWhere('deleted')->eq('0') ->andWhere('status')->ne('closed') ->orderBy('id_desc'); if(isset($params->riskNum)) $stmt->limit($params->riskNum); $risks = $stmt->fetchAll(); $count['risk'] = count($risks); $this->view->risks = $risks; } $this->view->selfCall = $this->selfCall; $this->view->hasViewPriv = $hasViewPriv; $this->view->count = $count; $this->view->longBlock = $longBlock; $this->display(); } /** * Print recent program block. * * @access public * @return void */ public function printRecentprogramBlock() { $this->view->programs = $this->loadModel('program')->getProgramStats('all', 3, 'order_desc'); } public function printProgramteamBlock() { $this->loadModel('project'); $num = isset($this->params->num) ? (int)$this->params->num : 15; /* Get projects. */ $this->view->programs = $this->loadModel('program')->getProgramOverview('byStatus', 'doing', 'id_desc', $num); } /** * Print flow chart block * @access public * @return void */ public function flowchart() { $this->display(); } /** * Close block forever. * * @param int $blockID * @access public * @return void */ public function close($blockID) { $block = $this->block->getByID($blockID); $closedBlock = isset($this->config->block->closed) ? $this->config->block->closed : ''; $this->dao->delete()->from(TABLE_BLOCK)->where('source')->eq($block->source)->andWhere('block')->eq($block->block)->exec(); $this->loadModel('setting')->setItem('system.block.closed', $closedBlock . ",{$block->source}|{$block->block}"); die(js::reload('parent')); } /** * Ajax reset. * * @param string $module * @param string $confirm * @access public * @return void */ public function ajaxReset($module, $confirm = 'no') { if($confirm != 'yes') die(js::confirm($this->lang->block->confirmReset, inlink('ajaxReset', "module=$module&confirm=yes"))); $this->dao->delete()->from(TABLE_BLOCK)->where('module')->eq($module)->andWhere('account')->eq($this->app->user->account)->exec(); $this->dao->delete()->from(TABLE_CONFIG)->where('module')->eq($module)->andWhere('owner')->eq($this->app->user->account)->andWhere('`key`')->eq('blockInited')->exec(); die(js::reload('parent')); } /** * Ajax for use new block. * * @param string $module * @param string $confirm * @access public * @return void */ public function ajaxUseNew($module, $confirm = 'no') { if($confirm == 'yes') { $this->dao->delete()->from(TABLE_BLOCK)->where('module')->eq($module)->andWhere('account')->eq($this->app->user->account)->exec(); $this->dao->delete()->from(TABLE_CONFIG)->where('module')->eq($module)->andWhere('owner')->eq($this->app->user->account)->andWhere('`key`')->eq('blockInited')->exec(); die(js::reload('parent')); } elseif($confirm == 'no') { $this->loadModel('setting')->setItem("{$this->app->user->account}.$module.block.initVersion", $this->config->block->version); } } }