summaryrefslogtreecommitdiff
path: root/app/Controller/FeedController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/FeedController.php')
-rw-r--r--app/Controller/FeedController.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/app/Controller/FeedController.php b/app/Controller/FeedController.php
new file mode 100644
index 00000000..e453ecb9
--- /dev/null
+++ b/app/Controller/FeedController.php
@@ -0,0 +1,55 @@
+<?php
+
+namespace Kanboard\Controller;
+
+use Kanboard\Core\Controller\AccessForbiddenException;
+
+/**
+ * Atom/RSS Feed controller
+ *
+ * @package Kanboard\Controller
+ * @author Frederic Guillot
+ */
+class FeedController extends BaseController
+{
+ /**
+ * RSS feed for a user
+ *
+ * @access public
+ */
+ public function user()
+ {
+ $token = $this->request->getStringParam('token');
+ $user = $this->user->getByToken($token);
+
+ // Token verification
+ if (empty($user)) {
+ throw AccessForbiddenException::getInstance()->withoutLayout();
+ }
+
+ $this->response->xml($this->template->render('feed/user', array(
+ 'events' => $this->helper->projectActivity->getProjectsEvents($this->projectPermission->getActiveProjectIds($user['id'])),
+ 'user' => $user,
+ )));
+ }
+
+ /**
+ * RSS feed for a project
+ *
+ * @access public
+ */
+ public function project()
+ {
+ $token = $this->request->getStringParam('token');
+ $project = $this->project->getByToken($token);
+
+ if (empty($project)) {
+ throw AccessForbiddenException::getInstance()->withoutLayout();
+ }
+
+ $this->response->xml($this->template->render('feed/project', array(
+ 'events' => $this->helper->projectActivity->getProjectEvents($project['id']),
+ 'project' => $project,
+ )));
+ }
+}