]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/actions/qnanewanswer.php
Merge remote-tracking branch 'upstream/master' into social-master
[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             GNUsocial::setApi(true);
78         }
79         common_debug("in qnanewanswer");
80         $this->user = common_current_user();
81
82         if (empty($this->user)) {
83             throw new ClientException(
84                 // TRANS: Client exception thrown trying to answer a question while not logged in.
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::getKV('id', $id);
97
98         if (empty($this->question)) {
99             throw new ClientException(
100                 // TRANS: Client exception thrown trying to respond to a non-existing question.
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
155             $this->startHTML('text/xml;charset=utf-8');
156             $this->elementStart('head');
157             // TRANS: Page title after sending an answer.
158             $this->element('title', null, _m('Answers'));
159             $this->elementEnd('head');
160
161             $this->elementStart('body');
162
163             $nli = new NoticeAnswerListItem($notice, $this, $this->question, $answer);
164             $nli->show();
165
166             $this->elementEnd('body');
167             $this->endHTML();
168         } else {
169             common_debug("not ajax");
170             common_redirect($this->question->getUrl(), 303);
171         }
172     }
173
174     /**
175      * Show the Answer form
176      *
177      * @return void
178      */
179     function showContent()
180     {
181         if (!empty($this->error)) {
182             $this->element('p', 'error', $this->error);
183         }
184
185         $form = new QnanewanswerForm($this->question, $this);
186         $form->show();
187
188         return;
189     }
190
191     /**
192      * Return true if read only.
193      *
194      * MAY override
195      *
196      * @param array $args other arguments
197      *
198      * @return boolean is read only action?
199      */
200     function isReadOnly(array $args=array())
201     {
202         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
203             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
204             return true;
205         } else {
206             return false;
207         }
208     }
209
210     /**
211      * Show an Ajax-y error message
212      *
213      * Goes back to the browser, where it's shown in a popup.
214      *
215      * @param string $msg Message to show
216      *
217      * @return void
218      */
219     function ajaxErrorMsg($msg)
220     {
221         $this->startHTML('text/xml;charset=utf-8', true);
222         $this->elementStart('head');
223         // TRANS: Page title after an AJAX error occurs on the post answer page.
224         $this->element('title', null, _m('Ajax Error'));
225         $this->elementEnd('head');
226         $this->elementStart('body');
227         $this->element('p', array('id' => 'error'), $msg);
228         $this->elementEnd('body');
229         $this->endHTML();
230     }
231
232     /**
233      * Show an Ajax-y answer form
234      *
235      * Goes back to the browser, where it's shown in a popup.
236      *
237      * @param string $msg Message to show
238      *
239      * @return void
240      */
241     function ajaxShowForm()
242     {
243         common_debug('ajaxShowForm()');
244         $this->startHTML('text/xml;charset=utf-8', true);
245         $this->elementStart('head');
246         // TRANS: Title for form to send answer to a question.
247         $this->element('title', null, _m('TITLE','Your answer'));
248         $this->elementEnd('head');
249         $this->elementStart('body');
250
251         $form = new QnanewanswerForm($this, $this->question);
252         $form->show();
253
254         $this->elementEnd('body');
255         $this->endHTML();
256     }
257
258     /**
259      * @param string $msg An error message, if any
260      *
261      * @return void
262      */
263     function showForm($msg = null)
264     {
265         common_debug("show form - msg = $msg");
266         if ($this->boolean('ajax')) {
267             if ($msg) {
268                 $this->ajaxErrorMsg($msg);
269             } else {
270                 $this->ajaxShowForm();
271             }
272             return;
273         }
274
275         $this->msg = $msg;
276         $this->showPage();
277     }
278 }
279
280 class NoticeAnswerListItem extends NoticeListItem
281 {
282     protected $question;
283     protected $answer;
284
285     /**
286      * constructor
287      *
288      * Also initializes the profile attribute.
289      *
290      * @param Notice $notice The notice we'll display
291      */
292     function __construct($notice, $out=null, $question, $answer)
293     {
294         parent::__construct($notice, $out);
295         $this->question = $question;
296         $this->answer   = $answer;
297
298     }
299
300     function show()
301     {
302         if (empty($this->notice)) {
303             common_log(LOG_WARNING, "Trying to show missing notice; skipping.");
304             return;
305         } else if (empty($this->profile)) {
306             common_log(LOG_WARNING, "Trying to show missing profile (" . $this->notice->profile_id . "); skipping.");
307             return;
308         }
309
310         $this->showStart();
311         $this->showNotice();
312         $this->showNoticeInfo();
313         $notice = $this->question->getNotice();
314         $this->out->hidden('inreplyto', $notice->id);
315         $this->showEnd();
316     }
317
318     /**
319      * show the content of the notice
320      *
321      * Shows the content of the notice. This is pre-rendered for efficiency
322      * at save time. Some very old notices might not be pre-rendered, so
323      * they're rendered on the spot.
324      *
325      * @return void
326      */
327     function showContent()
328     {
329         $this->out->elementStart('p', array('class' => 'e-content answer-content'));
330         $this->out->raw($this->notice->getRendered());
331
332         if (!empty($this->answer)) {
333             $form = new QnashowanswerForm($this->out, $this->answer);
334             $form->show();
335         } else {
336             // TRANS: Error message displayed when an answer has no content.
337             $out->text(_m('Answer data is missing.'));
338         }
339
340         $this->out->elementEnd('p');
341     }
342 }