]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/lib/polllistitem.php
Added adaptNoticeListItem and PollListItem
[quix0rs-gnu-social.git] / plugins / Poll / lib / polllistitem.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Adapter to show polls in a nicer way
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Poll
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * An adapter to show polls in a nicer way
39  *
40  * @category  Poll
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47
48 class PollListItem extends NoticeListItemAdapter
49 {
50     // @fixme which domain should we use for these namespaces?
51     const POLL_OBJECT          = 'http://activityschema.org/object/poll';
52     const POLL_RESPONSE_OBJECT = 'http://activityschema.org/object/poll-response';
53
54     function showNotice()
55     {
56         $notice = $this->nli->notice;
57         $out = $this->nli->out;
58
59         switch ($notice->object_type) {
60         case self::POLL_OBJECT:
61             return $this->showNoticePoll($notice, $out);
62         case self::POLL_RESPONSE_OBJECT:
63             return $this->showNoticePollResponse($notice, $out);
64         default:
65             // TRANS: Exception thrown when performing an unexpected action on a poll.
66             // TRANS: %s is the unexpected object type.
67             throw new Exception(sprintf(_m('Unexpected type for poll plugin: %s.'), $notice->object_type));
68         }
69     }
70
71     function showNoticePoll(Notice $notice, $out)
72     {
73         $user = common_current_user();
74
75         // @hack we want regular rendering, then just add stuff after that
76         $nli = new NoticeListItem($notice, $out);
77         $nli->showNotice();
78
79         $out->elementStart('div', array('class' => 'e-content poll-content'));
80         $poll = Poll::getByNotice($notice);
81         if ($poll) {
82             if ($user) {
83                 $profile = $user->getProfile();
84                 $response = $poll->getResponse($profile);
85                 if ($response) {
86                     // User has already responded; show the results.
87                     $form = new PollResultForm($poll, $out);
88                 } else {
89                     $form = new PollResponseForm($poll, $out);
90                 }
91                 $form->show();
92             }
93         } else {
94             // TRANS: Error text displayed if no poll data could be found.
95             $out->text(_m('Poll data is missing'));
96         }
97         $out->elementEnd('div');
98
99         // @fixme
100         $out->elementStart('div', array('class' => 'e-content'));
101     }
102
103     function showNoticePollResponse(Notice $notice, $out)
104     {
105         $user = common_current_user();
106
107         // @hack we want regular rendering, then just add stuff after that
108         $nli = new NoticeListItem($notice, $out);
109         $nli->showNotice();
110
111         // @fixme
112         $out->elementStart('div', array('class' => 'e-content'));
113     }
114 }