]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/actions/qnashowquestion.php
Make errors work correctly
[quix0rs-gnu-social.git] / plugins / QnA / actions / qnashowquestion.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Show a question
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  QnA
24  * @package   StatusNet
25  * @author    Zach Copley <zach@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  * Show a question
39  *
40  * @category  QnA
41  * @package   StatusNet
42  * @author    Zach Copley <zach@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 class QnashowquestionAction extends ShownoticeAction
48 {
49     protected $question = null;
50
51     /**
52      * For initializing members of the class.
53      *
54      * @param array $argarray misc. arguments
55      *
56      * @return boolean true
57      */
58     function prepare($argarray)
59     {
60         OwnerDesignAction::prepare($argarray);
61
62         $this->id = $this->trimmed('id');
63
64         $this->question = QnA_Question::staticGet('id', $this->id);
65
66         if (empty($this->question)) {
67             // TRANS: Client exception thrown trying to view a non-existing question.
68             throw new ClientException(_m('No such question.'), 404);
69         }
70
71         $this->notice = $this->question->getNotice();
72
73         if (empty($this->notice)) {
74             // Did we used to have it, and it got deleted?
75             // TRANS: Client exception thrown trying to view a non-existing question notice.
76             throw new ClientException(_m('No such question notice.'), 404);
77         }
78
79         $this->user = User::staticGet('id', $this->question->profile_id);
80
81         if (empty($this->user)) {
82             // TRANS: Client exception thrown trying to view a question of a non-existing user.
83             throw new ClientException(_m('No such user.'), 404);
84         }
85
86         $this->profile = $this->user->getProfile();
87
88         if (empty($this->profile)) {
89             // TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded.
90             throw new ServerException(_m('User without a profile.'));
91         }
92
93         $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
94
95         return true;
96     }
97
98     function showContent()
99     {
100         $this->elementStart('div', 'qna-full-question');
101         $this->raw($this->question->asHTML());
102
103         $answer = $this->question->getAnswers();
104
105         $this->elementStart('div', 'qna-full-question-answers');
106
107         $answerIds = array();
108
109         // @fixme use a filtered stream!
110
111         if (!empty($answer)) {
112             while ($answer->fetch()) {
113                 $answerIds[] = $answer->getNotice()->id;
114             }
115         }
116
117         if (count($answerIds) > 0) {
118             $notice = new Notice();
119             $notice->query(
120                 sprintf(
121                     'SELECT notice.* FROM notice WHERE notice.id IN (%s)',
122                     implode(',', $answerIds)
123                 )
124             );
125
126             $nli = new NoticeList($notice, $this);
127             $nli->show();
128         }
129
130         $user = common_current_user();
131
132         if (!empty($user)) {
133             $profile = $user->getProfile();
134             $answer  = QnA_Question::getAnswer($profile);
135             if (empty($answer)) {
136                 $form = new QnanewanswerForm($this, $this->question, false);
137                 $form->show();
138             }
139         }
140
141         $this->elementEnd('div');
142         $this->elementEnd('div');
143     }
144
145     /**
146      * Title of the page
147      *
148      * Used by Action class for layout.
149      *
150      * @return string page tile
151      */
152     function title()
153     {
154         // TRANS: Page title for a question.
155         // TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question.
156         return sprintf(
157             _m('%1$s\'s question: %2$s'),
158             $this->user->nickname,
159             $this->question->title
160         );
161     }
162
163     /**
164      * @fixme combine the notice time with question update time
165      */
166     function lastModified()
167     {
168         return Action::lastModified();
169     }
170
171
172     /**
173      * @fixme combine the notice time with question update time
174      */
175     function etag()
176     {
177         return Action::etag();
178     }
179 }