]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/actions/qnanewanswer.php
dbab6c5eefa6692dfda3cdfc0b4bdd6808d7b62c
[quix0rs-gnu-social.git] / plugins / QnA / actions / qnanewanswer.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Answer 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 if (!defined('STATUSNET')) {
31     // This check helps protect against security problems;
32     // your code file can't be executed directly from the web.
33     exit(1);
34 }
35
36 /**
37  * Answer a question
38  *
39  * @category  QnA
40  * @package   StatusNet
41  * @author    Zach Copley <zach@status.net>
42  * @copyright 2010 StatusNet, Inc.
43  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
44  * @link      http://status.net/
45  */
46 class QnanewanswerAction extends Action
47 {
48     protected $user     = null;
49     protected $error    = null;
50     protected $complete = null;
51
52     public    $question = null;
53     protected $content  = null;
54
55     /**
56      * Returns the title of the action
57      *
58      * @return string Action title
59      */
60     function title()
61     {
62         // TRANS: Page title for and answer to a question.
63         return _m('Answer');
64     }
65
66     /**
67      * For initializing members of the class.
68      *
69      * @param array $argarray misc. arguments
70      *
71      * @return boolean true
72      */
73     function prepare($argarray)
74     {
75         parent::prepare($argarray);
76         if ($this->boolean('ajax')) {
77             StatusNet::setApi(true);
78         }
79         common_debug("in qnanewanswer");
80         $this->user = common_current_user();
81
82         if (empty($this->user)) {
83             // TRANS: Client exception thrown trying to answer a question while not logged in.
84             throw new ClientException(
85                 _m("You must be logged in to answer to a question."),
86                 403
87             );
88         }
89
90         if ($this->isPost()) {
91             $this->checkSessionToken();
92         }
93
94         $id = substr($this->trimmed('id'), 9);
95
96         $this->question = QnA_Question::staticGet('id', $id);
97
98         if (empty($this->question)) {
99             // TRANS: Client exception thrown trying to respond to a non-existing question.
100             throw new ClientException(
101                 _m('Invalid or missing question.'),
102                 404
103             );
104         }
105
106         $this->answerText = $this->trimmed('answer');
107
108         return true;
109     }
110
111     /**
112      * Handler method
113      *
114      * @param array $argarray is ignored since it's now passed in in prepare()
115      *
116      * @return void
117      */
118     function handle($argarray=null)
119     {
120         parent::handle($argarray);
121
122         if ($this->isPost()) {
123             $this->newAnswer();
124         } else {
125             $this->showForm();
126         }
127
128         return;
129     }
130
131     /**
132      * Add a new answer
133      *
134      * @return void
135      */
136     function newAnswer()
137     {
138         $profile = $this->user->getProfile();
139
140         try {
141             $notice = QnA_Answer::saveNew(
142                 $profile,
143                 $this->question,
144                 $this->answerText
145             );
146         } catch (ClientException $ce) {
147             $this->error = $ce->getMessage();
148             $this->showForm($this->error);
149             return;
150         }
151         if ($this->boolean('ajax')) {
152             common_debug("ajaxy part");
153             $answer = $this->question->getAnswer($profile);
154             header('Content-Type: text/xml;charset=utf-8');
155             $this->xw->startDocument('1.0', 'UTF-8');
156
157             $this->elementStart('html');
158             $this->elementStart('head');
159             // TRANS: Page title after sending an answer.
160             $this->element('title', null, _m('Answers'));
161             $this->elementEnd('head');
162
163             $this->elementStart('body');
164
165
166             $nli = new NoticeAnswerListItem($notice, $this, $this->question, $answer);
167             $nli->show();
168
169             $this->elementEnd('body');
170             $this->elementEnd('html');
171         } else {
172             common_debug("not ajax");
173             common_redirect($this->question->bestUrl(), 303);
174         }
175     }
176
177     /**
178      * Show the Answer form
179      *
180      * @return void
181      */
182     function showContent()
183     {
184         if (!empty($this->error)) {
185             $this->element('p', 'error', $this->error);
186         }
187
188         $form = new QnanewanswerForm($this->question, $this);
189         $form->show();
190
191         return;
192     }
193
194     /**
195      * Return true if read only.
196      *
197      * MAY override
198      *
199      * @param array $args other arguments
200      *
201      * @return boolean is read only action?
202      */
203     function isReadOnly($args)
204     {
205         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
206             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
207             return true;
208         } else {
209             return false;
210         }
211     }
212
213     /**
214      * Show an Ajax-y error message
215      *
216      * Goes back to the browser, where it's shown in a popup.
217      *
218      * @param string $msg Message to show
219      *
220      * @return void
221      */
222     function ajaxErrorMsg($msg)
223     {
224         $this->startHTML('text/xml;charset=utf-8', true);
225         $this->elementStart('head');
226         // TRANS: Page title after an AJAX error occurs on the post answer page.
227         $this->element('title', null, _m('Ajax Error'));
228         $this->elementEnd('head');
229         $this->elementStart('body');
230         $this->element('p', array('id' => 'error'), $msg);
231         $this->elementEnd('body');
232         $this->elementEnd('html');
233     }
234
235     /**
236      * Show an Ajax-y answer form
237      *
238      * Goes back to the browser, where it's shown in a popup.
239      *
240      * @param string $msg Message to show
241      *
242      * @return void
243      */
244     function ajaxShowForm()
245     {
246         common_debug('ajaxShowForm()');
247         $this->startHTML('text/xml;charset=utf-8', true);
248         $this->elementStart('head');
249         // TRANS: Title for form to send answer to a question.
250         $this->element('title', null, _m('TITLE','Your answer'));
251         $this->elementEnd('head');
252         $this->elementStart('body');
253
254         $form = new QnanewanswerForm($this, $this->question);
255         $form->show();
256
257         $this->elementEnd('body');
258         $this->elementEnd('html');
259     }
260
261     /**
262      * @param string $msg An error message, if any
263      *
264      * @return void
265      */
266     function showForm($msg = null)
267     {
268         common_debug("show form - msg = $msg");
269         if ($this->boolean('ajax')) {
270             if ($msg) {
271                 $this->ajaxErrorMsg($msg);
272             } else {
273                 $this->ajaxShowForm();
274             }
275             return;
276         }
277
278         $this->msg = $msg;
279         $this->showPage();
280     }
281
282 }
283
284 class NoticeAnswerListItem extends NoticeListItem
285 {
286     protected $question;
287     protected $answer;
288
289     /**
290      * constructor
291      *
292      * Also initializes the profile attribute.
293      *
294      * @param Notice $notice The notice we'll display
295      */
296     function __construct($notice, $out=null, $question, $answer)
297     {
298         parent::__construct($notice, $out);
299         $this->question = $question;
300         $this->answer   = $answer;
301
302     }
303
304     function show()
305     {
306         if (empty($this->notice)) {
307             common_log(LOG_WARNING, "Trying to show missing notice; skipping.");
308             return;
309         } else if (empty($this->profile)) {
310             common_log(LOG_WARNING, "Trying to show missing profile (" . $this->notice->profile_id . "); skipping.");
311             return;
312         }
313
314         $this->showStart();
315         $this->showNotice();
316         $this->showNoticeInfo();
317         $notice = $this->question->getNotice();
318         $this->out->hidden('inreplyto', $notice->id);
319         $this->showEnd();
320     }
321
322     /**
323      * show the content of the notice
324      *
325      * Shows the content of the notice. This is pre-rendered for efficiency
326      * at save time. Some very old notices might not be pre-rendered, so
327      * they're rendered on the spot.
328      *
329      * @return void
330      */
331     function showContent()
332     {
333         $this->out->elementStart('p', array('class' => 'entry-content answer-content'));
334         if ($this->notice->rendered) {
335             $this->out->raw($this->notice->rendered);
336         } else {
337             // XXX: may be some uncooked notices in the DB,
338             // we cook them right now. This should probably disappear in future
339             // versions (>> 0.4.x)
340             $this->out->raw(common_render_content($this->notice->content, $this->notice));
341         }
342
343         if (!empty($this->answer)) {
344             $form = new QnashowanswerForm($this->out, $this->answer);
345             $form->show();
346         } else {
347             $out->text(_m('Answer data is missing.'));
348         }
349
350         $this->out->elementEnd('p');
351     }
352
353 }