summaryrefslogtreecommitdiff
path: root/app/Controller/Feed.php
blob: c08919c21ad03d2cff98b9fa5e35b55cdb6efdbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php

namespace Controller;

/**
 * Atom/RSS Feed controller
 *
 * @package  controller
 * @author   Frederic Guillot
 */
class Feed extends Base
{
    /**
     * 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)) {
            $this->forbidden(true);
        }

        $projects = $this->projectPermission->getActiveMemberProjects($user['id']);

        $this->response->xml($this->template->render('feed/user', array(
            'events' => $this->projectActivity->getProjects(array_keys($projects)),
            'user' => $user,
        )));
    }

    /**
     * RSS feed for a project
     *
     * @access public
     */
    public function project()
    {
        $token = $this->request->getStringParam('token');
        $project = $this->project->getByToken($token);

        // Token verification
        if (empty($project)) {
            $this->forbidden(true);
        }

        $this->response->xml($this->template->render('feed/project', array(
            'events' => $this->projectActivity->getProject($project['id']),
            'project' => $project,
        )));
    }
}