public function processRequest()
 {
     $this->requireApplicationCapability(ManiphestBulkEditCapability::CAPABILITY);
     $request = $this->getRequest();
     $user = $request->getUser();
     $task_ids = $request->getArr('batch');
     $tasks = id(new ManiphestTaskQuery())->setViewer($user)->withIDs($task_ids)->requireCapabilities(array(PhabricatorPolicyCapability::CAN_VIEW, PhabricatorPolicyCapability::CAN_EDIT))->execute();
     $actions = $request->getStr('actions');
     if ($actions) {
         $actions = json_decode($actions, true);
     }
     if ($request->isFormPost() && is_array($actions)) {
         foreach ($tasks as $task) {
             $field_list = PhabricatorCustomField::getObjectFields($task, PhabricatorCustomField::ROLE_EDIT);
             $field_list->readFieldsFromStorage($task);
             $xactions = $this->buildTransactions($actions, $task);
             if ($xactions) {
                 // TODO: Set content source to "batch edit".
                 $editor = id(new ManiphestTransactionEditor())->setActor($user)->setContentSourceFromRequest($request)->setContinueOnNoEffect(true)->setContinueOnMissingFields(true)->applyTransactions($task, $xactions);
             }
         }
         $task_ids = implode(',', mpull($tasks, 'getID'));
         return id(new AphrontRedirectResponse())->setURI('/maniphest/?ids=' . $task_ids);
     }
     $handles = ManiphestTaskListView::loadTaskHandles($user, $tasks);
     $list = new ManiphestTaskListView();
     $list->setTasks($tasks);
     $list->setUser($user);
     $list->setHandles($handles);
     $template = new AphrontTokenizerTemplateView();
     $template = $template->render();
     $projects_source = new PhabricatorProjectDatasource();
     $mailable_source = new PhabricatorMetaMTAMailableDatasource();
     $owner_source = new PhabricatorTypeaheadOwnerDatasource();
     require_celerity_resource('maniphest-batch-editor');
     Javelin::initBehavior('maniphest-batch-editor', array('root' => 'maniphest-batch-edit-form', 'tokenizerTemplate' => $template, 'sources' => array('project' => array('src' => $projects_source->getDatasourceURI(), 'placeholder' => $projects_source->getPlaceholderText()), 'owner' => array('src' => $owner_source->getDatasourceURI(), 'placeholder' => $owner_source->getPlaceholderText(), 'limit' => 1), 'cc' => array('src' => $mailable_source->getDatasourceURI(), 'placeholder' => $mailable_source->getPlaceholderText())), 'input' => 'batch-form-actions', 'priorityMap' => ManiphestTaskPriority::getTaskPriorityMap(), 'statusMap' => ManiphestTaskStatus::getTaskStatusMap()));
     $form = new AphrontFormView();
     $form->setUser($user);
     $form->setID('maniphest-batch-edit-form');
     foreach ($tasks as $task) {
         $form->appendChild(phutil_tag('input', array('type' => 'hidden', 'name' => 'batch[]', 'value' => $task->getID())));
     }
     $form->appendChild(phutil_tag('input', array('type' => 'hidden', 'name' => 'actions', 'id' => 'batch-form-actions')));
     $form->appendChild(phutil_tag('p', array(), pht('These tasks will be edited:')));
     $form->appendChild($list);
     $form->appendChild(id(new AphrontFormInsetView())->setTitle('Actions')->setRightButton(javelin_tag('a', array('href' => '#', 'class' => 'button green', 'sigil' => 'add-action', 'mustcapture' => true), pht('Add Another Action')))->setContent(javelin_tag('table', array('sigil' => 'maniphest-batch-actions', 'class' => 'maniphest-batch-actions-table'), '')))->appendChild(id(new AphrontFormSubmitControl())->setValue(pht('Update Tasks'))->addCancelButton('/maniphest/'));
     $title = pht('Batch Editor');
     $crumbs = $this->buildApplicationCrumbs();
     $crumbs->addTextCrumb($title);
     $form_box = id(new PHUIObjectBoxView())->setHeaderText(pht('Batch Edit Tasks'))->setForm($form);
     return $this->buildApplicationPage(array($crumbs, $form_box), array('title' => $title, 'device' => false));
 }
 public function render()
 {
     $viewer = $this->getUser();
     $tasks = $this->tasks;
     $query = $this->savedQuery;
     // If we didn't match anything, just pick up the default empty state.
     if (!$tasks) {
         return id(new PHUIObjectItemListView())->setUser($viewer)->setNoDataString(pht('No tasks found.'));
     }
     $group_parameter = nonempty($query->getParameter('group'), 'priority');
     $order_parameter = nonempty($query->getParameter('order'), 'priority');
     $handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks);
     $groups = $this->groupTasks($tasks, $group_parameter, $handles);
     $can_edit_priority = $this->canEditPriority;
     $can_drag = $order_parameter == 'priority' && $can_edit_priority && ($group_parameter == 'none' || $group_parameter == 'priority');
     if (!$viewer->isLoggedIn()) {
         // TODO: (T7131) Eventually, we conceivably need to make each task
         // draggable individually, since the user may be able to edit some but
         // not others.
         $can_drag = false;
     }
     $result = array();
     $lists = array();
     foreach ($groups as $group => $list) {
         $task_list = new ManiphestTaskListView();
         $task_list->setShowBatchControls($this->showBatchControls);
         if ($can_drag) {
             $task_list->setShowSubpriorityControls(true);
         }
         $task_list->setUser($viewer);
         $task_list->setTasks($list);
         $task_list->setHandles($handles);
         $header = id(new PHUIHeaderView())->addSigil('task-group')->setMetadata(array('priority' => head($list)->getPriority()))->setHeader(pht('%s (%s)', $group, phutil_count($list)));
         $lists[] = id(new PHUIObjectBoxView())->setHeader($header)->setObjectList($task_list);
     }
     if ($can_drag) {
         Javelin::initBehavior('maniphest-subpriority-editor', array('uri' => '/maniphest/subpriority/'));
     }
     return array($lists, $this->showBatchControls ? $this->renderBatchEditor($query) : null);
 }
 public function processRequest()
 {
     $request = $this->getRequest();
     $viewer = $request->getUser();
     $show_hidden = $request->getBool('hidden');
     $this->showHidden = $show_hidden;
     $project = id(new PhabricatorProjectQuery())->setViewer($viewer)->needImages(true);
     if ($this->slug) {
         $project->withSlugs(array($this->slug));
     } else {
         $project->withIDs(array($this->id));
     }
     $project = $project->executeOne();
     if (!$project) {
         return new Aphront404Response();
     }
     $this->setProject($project);
     $this->id = $project->getID();
     $sort_key = $request->getStr('order');
     switch ($sort_key) {
         case PhabricatorProjectColumn::ORDER_NATURAL:
         case PhabricatorProjectColumn::ORDER_PRIORITY:
             break;
         default:
             $sort_key = PhabricatorProjectColumn::DEFAULT_ORDER;
             break;
     }
     $this->sortKey = $sort_key;
     $column_query = id(new PhabricatorProjectColumnQuery())->setViewer($viewer)->withProjectPHIDs(array($project->getPHID()));
     if (!$show_hidden) {
         $column_query->withStatuses(array(PhabricatorProjectColumn::STATUS_ACTIVE));
     }
     $columns = $column_query->execute();
     $columns = mpull($columns, null, 'getSequence');
     if (empty($columns[0])) {
         switch ($request->getStr('initialize-type')) {
             case 'backlog-only':
                 $unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
                 $column = PhabricatorProjectColumn::initializeNewColumn($viewer)->setSequence(0)->setProperty('isDefault', true)->setProjectPHID($project->getPHID())->save();
                 $column->attachProject($project);
                 $columns[0] = $column;
                 unset($unguarded);
                 break;
             case 'import':
                 return id(new AphrontRedirectResponse())->setURI($this->getApplicationURI('board/' . $project->getID() . '/import/'));
                 break;
             default:
                 return $this->initializeWorkboardDialog($project);
                 break;
         }
     }
     ksort($columns);
     $board_uri = $this->getApplicationURI('board/' . $project->getID() . '/');
     $engine = id(new ManiphestTaskSearchEngine())->setViewer($viewer)->setBaseURI($board_uri)->setIsBoardView(true);
     if ($request->isFormPost()) {
         $saved = $engine->buildSavedQueryFromRequest($request);
         $engine->saveQuery($saved);
         return id(new AphrontRedirectResponse())->setURI($this->getURIWithState($engine->getQueryResultsPageURI($saved->getQueryKey())));
     }
     $query_key = $this->queryKey;
     if (!$query_key) {
         $query_key = 'open';
     }
     $this->queryKey = $query_key;
     $custom_query = null;
     if ($engine->isBuiltinQuery($query_key)) {
         $saved = $engine->buildSavedQueryFromBuiltin($query_key);
     } else {
         $saved = id(new PhabricatorSavedQueryQuery())->setViewer($viewer)->withQueryKeys(array($query_key))->executeOne();
         if (!$saved) {
             return new Aphront404Response();
         }
         $custom_query = $saved;
     }
     if ($this->filter) {
         $filter_form = id(new AphrontFormView())->setUser($viewer);
         $engine->buildSearchForm($filter_form, $saved);
         return $this->newDialog()->setWidth(AphrontDialogView::WIDTH_FULL)->setTitle(pht('Advanced Filter'))->appendChild($filter_form->buildLayoutView())->setSubmitURI($board_uri)->addSubmitButton(pht('Apply Filter'))->addCancelButton($board_uri);
     }
     $task_query = $engine->buildQueryFromSavedQuery($saved);
     $tasks = $task_query->addWithAllProjects(array($project->getPHID()))->setOrderBy(ManiphestTaskQuery::ORDER_PRIORITY)->setViewer($viewer)->execute();
     $tasks = mpull($tasks, null, 'getPHID');
     if ($tasks) {
         $positions = id(new PhabricatorProjectColumnPositionQuery())->setViewer($viewer)->withObjectPHIDs(mpull($tasks, 'getPHID'))->withColumns($columns)->execute();
         $positions = mpull($positions, null, 'getObjectPHID');
     } else {
         $positions = array();
     }
     $task_map = array();
     foreach ($tasks as $task) {
         $task_phid = $task->getPHID();
         if (empty($positions[$task_phid])) {
             // This shouldn't normally be possible because we create positions on
             // demand, but we might have raced as an object was removed from the
             // board. Just drop the task if we don't have a position for it.
             continue;
         }
         $position = $positions[$task_phid];
         $task_map[$position->getColumnPHID()][] = $task_phid;
     }
     // If we're showing the board in "natural" order, sort columns by their
     // column positions.
     if ($this->sortKey == PhabricatorProjectColumn::ORDER_NATURAL) {
         foreach ($task_map as $column_phid => $task_phids) {
             $order = array();
             foreach ($task_phids as $task_phid) {
                 if (isset($positions[$task_phid])) {
                     $order[$task_phid] = $positions[$task_phid]->getOrderingKey();
                 } else {
                     $order[$task_phid] = 0;
                 }
             }
             asort($order);
             $task_map[$column_phid] = array_keys($order);
         }
     }
     $task_can_edit_map = id(new PhabricatorPolicyFilter())->setViewer($viewer)->requireCapabilities(array(PhabricatorPolicyCapability::CAN_EDIT))->apply($tasks);
     $board_id = celerity_generate_unique_node_id();
     $board = id(new PHUIWorkboardView())->setUser($viewer)->setID($board_id);
     $this->initBehavior('project-boards', array('boardID' => $board_id, 'projectPHID' => $project->getPHID(), 'moveURI' => $this->getApplicationURI('move/' . $project->getID() . '/'), 'createURI' => '/maniphest/task/create/', 'order' => $this->sortKey));
     $this->handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks);
     foreach ($columns as $column) {
         $task_phids = idx($task_map, $column->getPHID(), array());
         $column_tasks = array_select_keys($tasks, $task_phids);
         $panel = id(new PHUIWorkpanelView())->setHeader($column->getDisplayName())->addSigil('workpanel');
         $header_icon = $column->getHeaderIcon();
         if ($header_icon) {
             $panel->setHeaderIcon($header_icon);
         }
         if ($column->isHidden()) {
             $panel->addClass('project-panel-hidden');
         }
         $column_menu = $this->buildColumnMenu($project, $column);
         $panel->addHeaderAction($column_menu);
         $tag_id = celerity_generate_unique_node_id();
         $tag_content_id = celerity_generate_unique_node_id();
         $count_tag = id(new PHUITagView())->setType(PHUITagView::TYPE_SHADE)->setShade(PHUITagView::COLOR_BLUE)->setID($tag_id)->setName(phutil_tag('span', array('id' => $tag_content_id), '-'))->setStyle('display: none');
         $panel->setHeaderTag($count_tag);
         $cards = id(new PHUIObjectItemListView())->setUser($viewer)->setFlush(true)->setAllowEmptyList(true)->addSigil('project-column')->setMetadata(array('columnPHID' => $column->getPHID(), 'countTagID' => $tag_id, 'countTagContentID' => $tag_content_id, 'pointLimit' => $column->getPointLimit()));
         foreach ($column_tasks as $task) {
             $owner = null;
             if ($task->getOwnerPHID()) {
                 $owner = $this->handles[$task->getOwnerPHID()];
             }
             $can_edit = idx($task_can_edit_map, $task->getPHID(), false);
             $cards->addItem(id(new ProjectBoardTaskCard())->setViewer($viewer)->setTask($task)->setOwner($owner)->setCanEdit($can_edit)->getItem());
         }
         $panel->setCards($cards);
         $board->addPanel($panel);
     }
     Javelin::initBehavior('boards-dropdown', array());
     $sort_menu = $this->buildSortMenu($viewer, $sort_key);
     $filter_menu = $this->buildFilterMenu($viewer, $custom_query, $engine, $query_key);
     $manage_menu = $this->buildManageMenu($project, $show_hidden);
     $header_link = phutil_tag('a', array('href' => $this->getApplicationURI('view/' . $project->getID() . '/')), $project->getName());
     $header = id(new PHUIHeaderView())->setHeader($header_link)->setUser($viewer)->setNoBackground(true)->setImage($project->getProfileImageURI())->setImageURL($this->getApplicationURI('view/' . $project->getID() . '/'))->addActionLink($sort_menu)->addActionLink($filter_menu)->addActionLink($manage_menu)->setPolicyObject($project);
     $board_box = id(new PHUIBoxView())->appendChild($board)->addClass('project-board-wrapper');
     return $this->buildApplicationPage(array($header, $board_box), array('title' => pht('%s Board', $project->getName()), 'showFooter' => false));
 }
 public function handleRequest(AphrontRequest $request)
 {
     $viewer = $request->getViewer();
     $id = $request->getURIData('id');
     $show_hidden = $request->getBool('hidden');
     $this->showHidden = $show_hidden;
     $project = id(new PhabricatorProjectQuery())->setViewer($viewer)->needImages(true);
     $id = $request->getURIData('id');
     $slug = $request->getURIData('slug');
     if ($slug) {
         $project->withSlugs(array($slug));
     } else {
         $project->withIDs(array($id));
     }
     $project = $project->executeOne();
     if (!$project) {
         return new Aphront404Response();
     }
     $this->setProject($project);
     $this->id = $project->getID();
     $is_sprint = $this->isSprint($project);
     $sort_key = $request->getStr('order');
     switch ($sort_key) {
         case PhabricatorProjectColumn::ORDER_NATURAL:
         case PhabricatorProjectColumn::ORDER_PRIORITY:
             break;
         default:
             $sort_key = PhabricatorProjectColumn::DEFAULT_ORDER;
             break;
     }
     $this->sortKey = $sort_key;
     $column_query = id(new PhabricatorProjectColumnQuery())->setViewer($viewer)->withProjectPHIDs(array($project->getPHID()));
     if (!$show_hidden) {
         $column_query->withStatuses(array(PhabricatorProjectColumn::STATUS_ACTIVE));
     }
     $columns = $column_query->execute();
     $columns = mpull($columns, null, 'getSequence');
     // TODO: Expand the checks here if we add the ability
     // to hide the Backlog column
     if (!$columns) {
         switch ($request->getStr('initialize-type')) {
             case 'backlog-only':
                 $unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
                 $column = PhabricatorProjectColumn::initializeNewColumn($viewer)->setSequence(0)->setProperty('isDefault', true)->setProjectPHID($project->getPHID())->save();
                 $column->attachProject($project);
                 $columns[0] = $column;
                 unset($unguarded);
                 break;
             case 'import':
                 return id(new AphrontRedirectResponse())->setURI($this->getApplicationURI('board/' . $project->getID() . '/import/'));
                 break;
             default:
                 return $this->initializeWorkboardDialog($project);
                 break;
         }
     }
     ksort($columns);
     $board_uri = $this->getApplicationURI('board/' . $project->getID() . '/');
     $engine = id(new ManiphestTaskSearchEngine())->setViewer($viewer)->setBaseURI($board_uri)->setIsBoardView(true);
     if ($request->isFormPost()) {
         $saved = $engine->buildSavedQueryFromRequest($request);
         $engine->saveQuery($saved);
         $filter_form = id(new AphrontFormView())->setUser($viewer);
         $engine->buildSearchForm($filter_form, $saved);
         if ($engine->getErrors()) {
             return $this->newDialog()->setWidth(AphrontDialogView::WIDTH_FULL)->setTitle(pht('Advanced Filter'))->appendChild($filter_form->buildLayoutView())->setErrors($engine->getErrors())->setSubmitURI($board_uri)->addSubmitButton(pht('Apply Filter'))->addCancelButton($board_uri);
         }
         return id(new AphrontRedirectResponse())->setURI($this->getURIWithState($engine->getQueryResultsPageURI($saved->getQueryKey())));
     }
     $query_key = $request->getURIData('queryKey');
     if (!$query_key) {
         if ($is_sprint == true) {
             $query_key = 'all';
         } else {
             $query_key = 'open';
         }
     }
     $this->queryKey = $query_key;
     $custom_query = null;
     if ($engine->isBuiltinQuery($query_key)) {
         $saved = $engine->buildSavedQueryFromBuiltin($query_key);
     } else {
         $saved = id(new PhabricatorSavedQueryQuery())->setViewer($viewer)->withQueryKeys(array($query_key))->executeOne();
         if (!$saved) {
             return new Aphront404Response();
         }
         $custom_query = $saved;
     }
     if ($request->getURIData('filter')) {
         $filter_form = id(new AphrontFormView())->setUser($viewer);
         $engine->buildSearchForm($filter_form, $saved);
         return $this->newDialog()->setWidth(AphrontDialogView::WIDTH_FULL)->setTitle(pht('Advanced Filter'))->appendChild($filter_form->buildLayoutView())->setSubmitURI($board_uri)->addSubmitButton(pht('Apply Filter'))->addCancelButton($board_uri);
     }
     $task_query = $engine->buildQueryFromSavedQuery($saved);
     $tasks = $task_query->withEdgeLogicPHIDs(PhabricatorProjectObjectHasProjectEdgeType::EDGECONST, PhabricatorQueryConstraint::OPERATOR_AND, array($project->getPHID()))->setOrder(ManiphestTaskQuery::ORDER_PRIORITY)->setViewer($viewer)->execute();
     $tasks = mpull($tasks, null, 'getPHID');
     if ($tasks) {
         $positions = id(new PhabricatorProjectColumnPositionQuery())->setViewer($viewer)->withObjectPHIDs(mpull($tasks, 'getPHID'))->withColumns($columns)->execute();
         $positions = mpull($positions, null, 'getObjectPHID');
     } else {
         $positions = array();
     }
     $task_map = array();
     foreach ($tasks as $task) {
         $task_phid = $task->getPHID();
         if (empty($positions[$task_phid])) {
             // This shouldn't normally be possible because we create positions on
             // demand, but we might have raced as an object was removed from the
             // board. Just drop the task if we don't have a position for it.
             continue;
         }
         $position = $positions[$task_phid];
         $task_map[$position->getColumnPHID()][] = $task_phid;
     }
     // If we're showing the board in "natural" order, sort columns by their
     // column positions.
     if ($this->sortKey == PhabricatorProjectColumn::ORDER_NATURAL) {
         foreach ($task_map as $column_phid => $task_phids) {
             $order = array();
             foreach ($task_phids as $task_phid) {
                 if (isset($positions[$task_phid])) {
                     $order[$task_phid] = $positions[$task_phid]->getOrderingKey();
                 } else {
                     $order[$task_phid] = 0;
                 }
             }
             asort($order);
             $task_map[$column_phid] = array_keys($order);
         }
     }
     $task_can_edit_map = id(new PhabricatorPolicyFilter())->setViewer($viewer)->requireCapabilities(array(PhabricatorPolicyCapability::CAN_EDIT))->apply($tasks);
     // If this is a batch edit, select the editable tasks in the chosen column
     // and ship the user into the batch editor.
     $batch_edit = $request->getStr('batch');
     if ($batch_edit) {
         if ($batch_edit !== self::BATCH_EDIT_ALL) {
             $column_id_map = mpull($columns, null, 'getID');
             $batch_column = idx($column_id_map, $batch_edit);
             if (!$batch_column) {
                 return new Aphront404Response();
             }
             $batch_task_phids = idx($task_map, $batch_column->getPHID(), array());
             foreach ($batch_task_phids as $key => $batch_task_phid) {
                 if (empty($task_can_edit_map[$batch_task_phid])) {
                     unset($batch_task_phids[$key]);
                 }
             }
             $batch_tasks = array_select_keys($tasks, $batch_task_phids);
         } else {
             $batch_tasks = $task_can_edit_map;
         }
         if (!$batch_tasks) {
             $cancel_uri = $this->getURIWithState($board_uri);
             return $this->newDialog()->setTitle(pht('No Editable Tasks'))->appendParagraph(pht('The selected column contains no visible tasks which you ' . 'have permission to edit.'))->addCancelButton($board_uri);
         }
         $batch_ids = mpull($batch_tasks, 'getID');
         $batch_ids = implode(',', $batch_ids);
         if ($is_sprint == true) {
             $batch_uri = new PhutilURI('/project/sprint/board/batch/');
         } else {
             $batch_uri = new PhutilURI('/maniphest/batch/');
         }
         $batch_uri->setQueryParam('board', $this->id);
         $batch_uri->setQueryParam('batch', $batch_ids);
         return id(new AphrontRedirectResponse())->setURI($batch_uri);
     }
     $board_id = celerity_generate_unique_node_id();
     $board = id(new PHUIWorkboardView())->setUser($viewer)->setID($board_id);
     if ($is_sprint == true) {
         $behavior_config = array('boardID' => $board_id, 'projectPHID' => $project->getPHID(), 'moveURI' => $this->getApplicationURI('move/' . $project->getID() . '/'), 'createURI' => '/project/sprint/board/task/create/', 'order' => $this->sortKey);
         $this->initSprintBehavior('sprint-boards', $behavior_config);
         $this->addExtraQuickSandConfig(array('boardConfig' => $behavior_config));
     } else {
         $behavior_config = array('boardID' => $board_id, 'projectPHID' => $project->getPHID(), 'moveURI' => $this->getApplicationURI('move/' . $project->getID() . '/'), 'createURI' => '/maniphest/task/create/', 'order' => $this->sortKey);
         $this->initBehavior('project-boards', $behavior_config);
         $this->addExtraQuickSandConfig(array('boardConfig' => $behavior_config));
     }
     $this->handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks);
     foreach ($columns as $column) {
         $task_phids = idx($task_map, $column->getPHID(), array());
         $column_tasks = array_select_keys($tasks, $task_phids);
         $panel = id(new PHUIWorkpanelView())->setHeader($column->getDisplayName())->setSubHeader($column->getDisplayType())->addSigil('workpanel');
         $header_icon = $column->getHeaderIcon();
         if ($header_icon) {
             $panel->setHeaderIcon($header_icon);
         }
         if ($column->isHidden()) {
             $panel->addClass('project-panel-hidden');
         }
         $column_menu = $this->buildColumnMenu($project, $column);
         $panel->addHeaderAction($column_menu);
         $tag_id = celerity_generate_unique_node_id();
         $tag_content_id = celerity_generate_unique_node_id();
         $count_tag = id(new PHUITagView())->setType(PHUITagView::TYPE_SHADE)->setShade(PHUITagView::COLOR_BLUE)->setID($tag_id)->setName(phutil_tag('span', array('id' => $tag_content_id), '-'))->setStyle('display: none');
         $panel->setHeaderTag($count_tag);
         $cards = id(new PHUIObjectItemListView())->setUser($viewer)->setFlush(true)->setAllowEmptyList(true)->addSigil('project-column')->setMetadata(array('columnPHID' => $column->getPHID(), 'countTagID' => $tag_id, 'countTagContentID' => $tag_content_id, 'pointLimit' => $column->getPointLimit()));
         foreach ($column_tasks as $task) {
             $owner = null;
             if ($task->getOwnerPHID()) {
                 $owner = $this->handles[$task->getOwnerPHID()];
             }
             $can_edit = idx($task_can_edit_map, $task->getPHID(), false);
             if ($is_sprint == true) {
                 $cards->addItem(id(new SprintBoardTaskCard())->setProject($project)->setViewer($viewer)->setTask($task)->setOwner($owner)->setCanEdit($can_edit)->getItem());
             } else {
                 $cards->addItem(id(new ProjectBoardTaskCard())->setViewer($viewer)->setTask($task)->setOwner($owner)->setCanEdit($can_edit)->getItem());
             }
         }
         $panel->setCards($cards);
         $board->addPanel($panel);
     }
     $sort_menu = $this->buildSortMenu($viewer, $sort_key);
     $filter_menu = $this->buildFilterMenu($viewer, $custom_query, $engine, $query_key);
     $manage_menu = $this->buildManageMenu($project, $show_hidden);
     $header_link = phutil_tag('a', array('href' => $this->getApplicationURI('profile/' . $project->getID() . '/')), $project->getName());
     $header = id(new PHUIHeaderView())->setHeader($header_link)->setUser($viewer)->setNoBackground(true)->addActionLink($sort_menu)->addActionLink($filter_menu)->addActionLink($manage_menu)->setPolicyObject($project);
     $header_box = id(new PHUIBoxView())->appendChild($header)->addClass('project-board-header');
     $board_box = id(new PHUIBoxView())->appendChild($board)->addClass('project-board-wrapper');
     $nav = $this->buildIconNavView($project);
     $nav->appendChild($header_box);
     $nav->appendChild($board_box);
     return $this->buildApplicationPage($nav, array('title' => pht('%s Board', $project->getName()), 'showFooter' => false, 'pageObjects' => array($project->getPHID())));
 }
 public function handleRequest(AphrontRequest $request)
 {
     $viewer = $this->getViewer();
     $this->requireApplicationCapability(ManiphestBulkEditCapability::CAPABILITY);
     $project = null;
     $board_id = $request->getInt('board');
     if ($board_id) {
         $project = id(new PhabricatorProjectQuery())->setViewer($viewer)->withIDs(array($board_id))->executeOne();
         if (!$project) {
             return new Aphront404Response();
         }
     }
     $task_ids = $request->getArr('batch');
     if (!$task_ids) {
         $task_ids = $request->getStrList('batch');
     }
     if (!$task_ids) {
         throw new Exception(pht('No tasks are selected.'));
     }
     $tasks = id(new ManiphestTaskQuery())->setViewer($viewer)->withIDs($task_ids)->requireCapabilities(array(PhabricatorPolicyCapability::CAN_VIEW, PhabricatorPolicyCapability::CAN_EDIT))->needSubscriberPHIDs(true)->needProjectPHIDs(true)->execute();
     if (!$tasks) {
         throw new Exception(pht("You don't have permission to edit any of the selected tasks."));
     }
     if ($project) {
         $cancel_uri = '/project/board/' . $project->getID() . '/';
         $redirect_uri = $cancel_uri;
     } else {
         $cancel_uri = '/maniphest/';
         $redirect_uri = '/maniphest/?ids=' . implode(',', mpull($tasks, 'getID'));
     }
     $actions = $request->getStr('actions');
     if ($actions) {
         $actions = phutil_json_decode($actions);
     }
     if ($request->isFormPost() && $actions) {
         $job = PhabricatorWorkerBulkJob::initializeNewJob($viewer, new ManiphestTaskEditBulkJobType(), array('taskPHIDs' => mpull($tasks, 'getPHID'), 'actions' => $actions, 'cancelURI' => $cancel_uri, 'doneURI' => $redirect_uri));
         $type_status = PhabricatorWorkerBulkJobTransaction::TYPE_STATUS;
         $xactions = array();
         $xactions[] = id(new PhabricatorWorkerBulkJobTransaction())->setTransactionType($type_status)->setNewValue(PhabricatorWorkerBulkJob::STATUS_CONFIRM);
         $editor = id(new PhabricatorWorkerBulkJobEditor())->setActor($viewer)->setContentSourceFromRequest($request)->setContinueOnMissingFields(true)->applyTransactions($job, $xactions);
         return id(new AphrontRedirectResponse())->setURI($job->getMonitorURI());
     }
     $handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks);
     $list = new ManiphestTaskListView();
     $list->setTasks($tasks);
     $list->setUser($viewer);
     $list->setHandles($handles);
     $template = new AphrontTokenizerTemplateView();
     $template = $template->render();
     $projects_source = new PhabricatorProjectDatasource();
     $mailable_source = new PhabricatorMetaMTAMailableDatasource();
     $mailable_source->setViewer($viewer);
     $owner_source = new ManiphestAssigneeDatasource();
     $owner_source->setViewer($viewer);
     $spaces_source = id(new PhabricatorSpacesNamespaceDatasource())->setViewer($viewer);
     require_celerity_resource('maniphest-batch-editor');
     Javelin::initBehavior('maniphest-batch-editor', array('root' => 'maniphest-batch-edit-form', 'tokenizerTemplate' => $template, 'sources' => array('project' => array('src' => $projects_source->getDatasourceURI(), 'placeholder' => $projects_source->getPlaceholderText(), 'browseURI' => $projects_source->getBrowseURI()), 'owner' => array('src' => $owner_source->getDatasourceURI(), 'placeholder' => $owner_source->getPlaceholderText(), 'browseURI' => $owner_source->getBrowseURI(), 'limit' => 1), 'cc' => array('src' => $mailable_source->getDatasourceURI(), 'placeholder' => $mailable_source->getPlaceholderText(), 'browseURI' => $mailable_source->getBrowseURI()), 'spaces' => array('src' => $spaces_source->getDatasourceURI(), 'placeholder' => $spaces_source->getPlaceholderText(), 'browseURI' => $spaces_source->getBrowseURI(), 'limit' => 1)), 'input' => 'batch-form-actions', 'priorityMap' => ManiphestTaskPriority::getTaskPriorityMap(), 'statusMap' => ManiphestTaskStatus::getTaskStatusMap()));
     $form = id(new AphrontFormView())->setUser($viewer)->addHiddenInput('board', $board_id)->setID('maniphest-batch-edit-form');
     foreach ($tasks as $task) {
         $form->appendChild(phutil_tag('input', array('type' => 'hidden', 'name' => 'batch[]', 'value' => $task->getID())));
     }
     $form->appendChild(phutil_tag('input', array('type' => 'hidden', 'name' => 'actions', 'id' => 'batch-form-actions')));
     $form->appendChild(id(new PHUIFormInsetView())->setTitle(pht('Actions'))->setRightButton(javelin_tag('a', array('href' => '#', 'class' => 'button green', 'sigil' => 'add-action', 'mustcapture' => true), pht('Add Another Action')))->setContent(javelin_tag('table', array('sigil' => 'maniphest-batch-actions', 'class' => 'maniphest-batch-actions-table'), '')))->appendChild(id(new AphrontFormSubmitControl())->setValue(pht('Update Tasks'))->addCancelButton($cancel_uri));
     $title = pht('Batch Editor');
     $crumbs = $this->buildApplicationCrumbs();
     $crumbs->addTextCrumb($title);
     $task_box = id(new PHUIObjectBoxView())->setHeaderText(pht('Selected Tasks'))->setObjectList($list);
     $form_box = id(new PHUIObjectBoxView())->setHeaderText(pht('Batch Editor'))->setForm($form);
     return $this->buildApplicationPage(array($crumbs, $task_box, $form_box), array('title' => $title));
 }
 public function handleRequest(AphrontRequest $request)
 {
     $viewer = $request->getUser();
     $response = $this->loadProject();
     if ($response) {
         return $response;
     }
     $project = $this->getProject();
     $this->readRequestState();
     $board_uri = $this->getApplicationURI('board/' . $project->getID() . '/');
     $search_engine = id(new ManiphestTaskSearchEngine())->setViewer($viewer)->setBaseURI($board_uri)->setIsBoardView(true);
     if ($request->isFormPost() && !$request->getBool('initialize')) {
         $saved = $search_engine->buildSavedQueryFromRequest($request);
         $search_engine->saveQuery($saved);
         $filter_form = id(new AphrontFormView())->setUser($viewer);
         $search_engine->buildSearchForm($filter_form, $saved);
         if ($search_engine->getErrors()) {
             return $this->newDialog()->setWidth(AphrontDialogView::WIDTH_FULL)->setTitle(pht('Advanced Filter'))->appendChild($filter_form->buildLayoutView())->setErrors($search_engine->getErrors())->setSubmitURI($board_uri)->addSubmitButton(pht('Apply Filter'))->addCancelButton($board_uri);
         }
         return id(new AphrontRedirectResponse())->setURI($this->getURIWithState($search_engine->getQueryResultsPageURI($saved->getQueryKey())));
     }
     $query_key = $request->getURIData('queryKey');
     if (!$query_key) {
         $query_key = 'open';
     }
     $this->queryKey = $query_key;
     $custom_query = null;
     if ($search_engine->isBuiltinQuery($query_key)) {
         $saved = $search_engine->buildSavedQueryFromBuiltin($query_key);
     } else {
         $saved = id(new PhabricatorSavedQueryQuery())->setViewer($viewer)->withQueryKeys(array($query_key))->executeOne();
         if (!$saved) {
             return new Aphront404Response();
         }
         $custom_query = $saved;
     }
     if ($request->getURIData('filter')) {
         $filter_form = id(new AphrontFormView())->setUser($viewer);
         $search_engine->buildSearchForm($filter_form, $saved);
         return $this->newDialog()->setWidth(AphrontDialogView::WIDTH_FULL)->setTitle(pht('Advanced Filter'))->appendChild($filter_form->buildLayoutView())->setSubmitURI($board_uri)->addSubmitButton(pht('Apply Filter'))->addCancelButton($board_uri);
     }
     $task_query = $search_engine->buildQueryFromSavedQuery($saved);
     $select_phids = array($project->getPHID());
     if ($project->getHasSubprojects() || $project->getHasMilestones()) {
         $descendants = id(new PhabricatorProjectQuery())->setViewer($viewer)->withAncestorProjectPHIDs($select_phids)->execute();
         foreach ($descendants as $descendant) {
             $select_phids[] = $descendant->getPHID();
         }
     }
     $tasks = $task_query->withEdgeLogicPHIDs(PhabricatorProjectObjectHasProjectEdgeType::EDGECONST, PhabricatorQueryConstraint::OPERATOR_ANCESTOR, array($select_phids))->setOrder(ManiphestTaskQuery::ORDER_PRIORITY)->setViewer($viewer)->execute();
     $tasks = mpull($tasks, null, 'getPHID');
     $board_phid = $project->getPHID();
     $layout_engine = id(new PhabricatorBoardLayoutEngine())->setViewer($viewer)->setBoardPHIDs(array($board_phid))->setObjectPHIDs(array_keys($tasks))->executeLayout();
     $columns = $layout_engine->getColumns($board_phid);
     if (!$columns) {
         $can_edit = PhabricatorPolicyFilter::hasCapability($viewer, $project, PhabricatorPolicyCapability::CAN_EDIT);
         if (!$can_edit) {
             $content = $this->buildNoAccessContent($project);
         } else {
             $content = $this->buildInitializeContent($project);
         }
         if ($content instanceof AphrontResponse) {
             return $content;
         }
         $nav = $this->getProfileMenu();
         $nav->selectFilter(PhabricatorProject::PANEL_WORKBOARD);
         $crumbs = $this->buildApplicationCrumbs();
         $crumbs->addTextCrumb(pht('Workboard'));
         return $this->newPage()->setTitle(array(pht('Workboard'), $project->getName()))->setNavigation($nav)->setCrumbs($crumbs)->appendChild($content);
     }
     $task_can_edit_map = id(new PhabricatorPolicyFilter())->setViewer($viewer)->requireCapabilities(array(PhabricatorPolicyCapability::CAN_EDIT))->apply($tasks);
     // If this is a batch edit, select the editable tasks in the chosen column
     // and ship the user into the batch editor.
     $batch_edit = $request->getStr('batch');
     if ($batch_edit) {
         if ($batch_edit !== self::BATCH_EDIT_ALL) {
             $column_id_map = mpull($columns, null, 'getID');
             $batch_column = idx($column_id_map, $batch_edit);
             if (!$batch_column) {
                 return new Aphront404Response();
             }
             $batch_task_phids = $layout_engine->getColumnObjectPHIDs($board_phid, $batch_column->getPHID());
             foreach ($batch_task_phids as $key => $batch_task_phid) {
                 if (empty($task_can_edit_map[$batch_task_phid])) {
                     unset($batch_task_phids[$key]);
                 }
             }
             $batch_tasks = array_select_keys($tasks, $batch_task_phids);
         } else {
             $batch_tasks = $task_can_edit_map;
         }
         if (!$batch_tasks) {
             $cancel_uri = $this->getURIWithState($board_uri);
             return $this->newDialog()->setTitle(pht('No Editable Tasks'))->appendParagraph(pht('The selected column contains no visible tasks which you ' . 'have permission to edit.'))->addCancelButton($board_uri);
         }
         $batch_ids = mpull($batch_tasks, 'getID');
         $batch_ids = implode(',', $batch_ids);
         $batch_uri = new PhutilURI('/maniphest/batch/');
         $batch_uri->setQueryParam('board', $this->id);
         $batch_uri->setQueryParam('batch', $batch_ids);
         return id(new AphrontRedirectResponse())->setURI($batch_uri);
     }
     $board_id = celerity_generate_unique_node_id();
     $board = id(new PHUIWorkboardView())->setUser($viewer)->setID($board_id);
     $behavior_config = array('boardID' => $board_id, 'projectPHID' => $project->getPHID(), 'moveURI' => $this->getApplicationURI('move/' . $project->getID() . '/'), 'createURI' => $this->getCreateURI(), 'order' => $this->sortKey);
     $this->initBehavior('project-boards', $behavior_config);
     $this->handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks);
     $all_project_phids = array();
     foreach ($tasks as $task) {
         foreach ($task->getProjectPHIDs() as $project_phid) {
             $all_project_phids[$project_phid] = $project_phid;
         }
     }
     foreach ($select_phids as $phid) {
         unset($all_project_phids[$phid]);
     }
     $all_handles = $viewer->loadHandles($all_project_phids);
     $all_handles = iterator_to_array($all_handles);
     foreach ($columns as $column) {
         if (!$this->showHidden) {
             if ($column->isHidden()) {
                 continue;
             }
         }
         $proxy = $column->getProxy();
         if ($proxy && !$proxy->isMilestone()) {
             // TODO: For now, don't show subproject columns because we can't
             // handle tasks with multiple positions yet.
             continue;
         }
         $task_phids = $layout_engine->getColumnObjectPHIDs($board_phid, $column->getPHID());
         $column_tasks = array_select_keys($tasks, $task_phids);
         // If we aren't using "natural" order, reorder the column by the original
         // query order.
         if ($this->sortKey != PhabricatorProjectColumn::ORDER_NATURAL) {
             $column_tasks = array_select_keys($column_tasks, array_keys($tasks));
         }
         $panel = id(new PHUIWorkpanelView())->setHeader($column->getDisplayName())->setSubHeader($column->getDisplayType())->addSigil('workpanel');
         $header_icon = $column->getHeaderIcon();
         if ($header_icon) {
             $panel->setHeaderIcon($header_icon);
         }
         $display_class = $column->getDisplayClass();
         if ($display_class) {
             $panel->addClass($display_class);
         }
         if ($column->isHidden()) {
             $panel->addClass('project-panel-hidden');
         }
         $column_menu = $this->buildColumnMenu($project, $column);
         $panel->addHeaderAction($column_menu);
         $tag_id = celerity_generate_unique_node_id();
         $tag_content_id = celerity_generate_unique_node_id();
         $count_tag = id(new PHUITagView())->setType(PHUITagView::TYPE_SHADE)->setShade(PHUITagView::COLOR_BLUE)->setID($tag_id)->setName(phutil_tag('span', array('id' => $tag_content_id), '-'))->setStyle('display: none');
         $panel->setHeaderTag($count_tag);
         $cards = id(new PHUIObjectItemListView())->setUser($viewer)->setFlush(true)->setAllowEmptyList(true)->addSigil('project-column')->setItemClass('phui-workcard')->setMetadata(array('columnPHID' => $column->getPHID(), 'countTagID' => $tag_id, 'countTagContentID' => $tag_content_id, 'pointLimit' => $column->getPointLimit()));
         foreach ($column_tasks as $task) {
             $owner = null;
             if ($task->getOwnerPHID()) {
                 $owner = $this->handles[$task->getOwnerPHID()];
             }
             $can_edit = idx($task_can_edit_map, $task->getPHID(), false);
             $handles = array_select_keys($all_handles, $task->getProjectPHIDs());
             $cards->addItem(id(new ProjectBoardTaskCard())->setViewer($viewer)->setProjectHandles($handles)->setTask($task)->setOwner($owner)->setCanEdit($can_edit)->getItem());
         }
         $panel->setCards($cards);
         $board->addPanel($panel);
     }
     $sort_menu = $this->buildSortMenu($viewer, $this->sortKey);
     $filter_menu = $this->buildFilterMenu($viewer, $custom_query, $search_engine, $query_key);
     $manage_menu = $this->buildManageMenu($project, $this->showHidden);
     $header_link = phutil_tag('a', array('href' => $this->getApplicationURI('profile/' . $project->getID() . '/')), $project->getName());
     $board_box = id(new PHUIBoxView())->appendChild($board)->addClass('project-board-wrapper');
     $nav = $this->getProfileMenu();
     $crumbs = $this->buildApplicationCrumbs();
     $crumbs->addTextCrumb(pht('Workboard'));
     $crumbs->setBorder(true);
     $crumbs->addAction($sort_menu);
     $crumbs->addAction($filter_menu);
     $crumbs->addAction($manage_menu);
     return $this->newPage()->setTitle(pht('%s Board', $project->getName()))->setPageObjectPHIDs(array($project->getPHID()))->setShowFooter(false)->setNavigation($nav)->setCrumbs($crumbs)->addQuicksandConfig(array('boardConfig' => $behavior_config))->appendChild(array($board_box));
 }