summaryrefslogtreecommitdiff
path: root/app/Controller/TaskExternalLink.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-28 13:41:54 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-28 13:41:54 -0400
commit1353929a7dbd3f2e897fa7d3ab88e959ca573f9f (patch)
tree30bdbac4e466e74c3dfb4d451422f03c62bcbe41 /app/Controller/TaskExternalLink.php
parentab48a09f0d674b703467975b376c5ac7352670ae (diff)
Rename controllers
Diffstat (limited to 'app/Controller/TaskExternalLink.php')
-rw-r--r--app/Controller/TaskExternalLink.php178
1 files changed, 0 insertions, 178 deletions
diff --git a/app/Controller/TaskExternalLink.php b/app/Controller/TaskExternalLink.php
deleted file mode 100644
index 0bd55dba..00000000
--- a/app/Controller/TaskExternalLink.php
+++ /dev/null
@@ -1,178 +0,0 @@
-<?php
-
-namespace Kanboard\Controller;
-
-use Kanboard\Core\Controller\PageNotFoundException;
-use Kanboard\Core\ExternalLink\ExternalLinkProviderNotFound;
-
-/**
- * Task External Link Controller
- *
- * @package controller
- * @author Frederic Guillot
- */
-class TaskExternalLink extends BaseController
-{
- /**
- * First creation form
- *
- * @access public
- * @param array $values
- * @param array $errors
- * @throws PageNotFoundException
- * @throws \Kanboard\Core\Controller\AccessForbiddenException
- */
- public function find(array $values = array(), array $errors = array())
- {
- $task = $this->getTask();
-
- $this->response->html($this->template->render('task_external_link/find', array(
- 'values' => $values,
- 'errors' => $errors,
- 'task' => $task,
- 'types' => $this->externalLinkManager->getTypes(),
- )));
- }
-
- /**
- * Second creation form
- *
- * @access public
- */
- public function create()
- {
- $task = $this->getTask();
- $values = $this->request->getValues();
-
- try {
- $provider = $this->externalLinkManager->setUserInput($values)->find();
- $link = $provider->getLink();
-
- $this->response->html($this->template->render('task_external_link/create', array(
- 'values' => array(
- 'title' => $link->getTitle(),
- 'url' => $link->getUrl(),
- 'link_type' => $provider->getType(),
- ),
- 'dependencies' => $provider->getDependencies(),
- 'errors' => array(),
- 'task' => $task,
- )));
-
- } catch (ExternalLinkProviderNotFound $e) {
- $errors = array('text' => array(t('Unable to fetch link information.')));
- $this->find($values, $errors);
- }
- }
-
- /**
- * Save link
- *
- * @access public
- */
- public function save()
- {
- $task = $this->getTask();
- $values = $this->request->getValues();
- list($valid, $errors) = $this->externalLinkValidator->validateCreation($values);
-
- if ($valid && $this->taskExternalLink->create($values)) {
- $this->flash->success(t('Link added successfully.'));
- return $this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), true);
- }
-
- return $this->edit($values, $errors);
- }
-
- /**
- * Edit form
- *
- * @access public
- * @param array $values
- * @param array $errors
- * @throws ExternalLinkProviderNotFound
- * @throws PageNotFoundException
- * @throws \Kanboard\Core\Controller\AccessForbiddenException
- */
- public function edit(array $values = array(), array $errors = array())
- {
- $task = $this->getTask();
- $link_id = $this->request->getIntegerParam('link_id');
-
- if ($link_id > 0) {
- $values = $this->taskExternalLink->getById($link_id);
- }
-
- if (empty($values)) {
- throw new PageNotFoundException();
- }
-
- $provider = $this->externalLinkManager->getProvider($values['link_type']);
-
- $this->response->html($this->template->render('task_external_link/edit', array(
- 'values' => $values,
- 'errors' => $errors,
- 'task' => $task,
- 'dependencies' => $provider->getDependencies(),
- )));
- }
-
- /**
- * Update link
- *
- * @access public
- */
- public function update()
- {
- $task = $this->getTask();
- $values = $this->request->getValues();
- list($valid, $errors) = $this->externalLinkValidator->validateModification($values);
-
- if ($valid && $this->taskExternalLink->update($values)) {
- $this->flash->success(t('Link updated successfully.'));
- return $this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), true);
- }
-
- return $this->edit($values, $errors);
- }
-
- /**
- * Confirmation dialog before removing a link
- *
- * @access public
- */
- public function confirm()
- {
- $task = $this->getTask();
- $link_id = $this->request->getIntegerParam('link_id');
- $link = $this->taskExternalLink->getById($link_id);
-
- if (empty($link)) {
- throw new PageNotFoundException();
- }
-
- $this->response->html($this->template->render('task_external_link/remove', array(
- 'link' => $link,
- 'task' => $task,
- )));
- }
-
- /**
- * Remove a link
- *
- * @access public
- */
- public function remove()
- {
- $this->checkCSRFParam();
- $task = $this->getTask();
-
- if ($this->taskExternalLink->remove($this->request->getIntegerParam('link_id'))) {
- $this->flash->success(t('Link removed successfully.'));
- } else {
- $this->flash->failure(t('Unable to remove this link.'));
- }
-
- $this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])));
- }
-}