]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/lib/polllistitem.php
Some cleanups:
[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(Notice $notice, $out)
55     {
56         switch ($notice->object_type) {
57         case self::POLL_OBJECT:
58             return $this->showNoticePoll($notice, $out);
59         case self::POLL_RESPONSE_OBJECT:
60             return $this->showNoticePollResponse($notice, $out);
61         default:
62             // TRANS: Exception thrown when performing an unexpected action on a poll.
63             // TRANS: %s is the unexpected object type.
64             throw new Exception(sprintf(_m('Unexpected type for poll plugin: %s.'), $notice->object_type));
65         }
66     }
67
68     function showNoticePoll(Notice $notice, $out)
69     {
70         $user = common_current_user();
71
72         // @hack we want regular rendering, then just add stuff after that
73         $nli = new NoticeListItem($notice, $out);
74         $nli->showNotice();
75
76         $out->elementStart('div', array('class' => 'e-content poll-content'));
77         $poll = Poll::getByNotice($notice);
78         if ($poll) {
79             if ($user instanceof User) {
80                 $profile = $user->getProfile();
81                 $response = $poll->getResponse($profile);
82                 if ($response) {
83                     // User has already responded; show the results.
84                     $form = new PollResultForm($poll, $out);
85                 } else {
86                     $form = new PollResponseForm($poll, $out);
87                 }
88                 $form->show();
89             }
90         } else {
91             // TRANS: Error text displayed if no poll data could be found.
92             $out->text(_m('Poll data is missing'));
93         }
94         $out->elementEnd('div');
95
96         // @fixme
97         $out->elementStart('div', array('class' => 'e-content'));
98     }
99
100     function showNoticePollResponse(Notice $notice, $out)
101     {
102         $user = common_current_user();
103
104         // @hack we want regular rendering, then just add stuff after that
105         $nli = new NoticeListItem($notice, $out);
106         $nli->showNotice();
107
108         // @fixme
109         $out->elementStart('div', array('class' => 'e-content'));
110     }
111 }