]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/actions/qnanewanswer.php
QnA - Work on getting questions and answers to appear correctly inline
[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     protected $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
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             $nli = new NoticeListItem($notice, $this);
166             $nli->show();
167             //$this->raw($answer->asHTML());
168
169             /*
170             $question = $this->question;
171
172             $nli = new NoticeListItem($notice, $this);
173             $nli->showNotice();
174
175             $this->elementStart('div', array('class' => 'entry-content answer-content'));
176
177             if (!empty($answer)) {
178                 $form = new QnashowanswerForm($this, $answer);
179                 $form->show();
180             } else {
181                 $this->text(_m('Answer data is missing.'));
182             }
183
184             $this->elementEnd('div');
185
186             // @fixme
187             //$this->elementStart('div', array('class' => 'entry-content'));
188             */
189             $this->elementEnd('body');
190             $this->elementEnd('html');
191         } else {
192             common_redirect($this->question->bestUrl(), 303);
193         }
194     }
195
196     /**
197      * Show the Answer form
198      *
199      * @return void
200      */
201     function showContent()
202     {
203         if (!empty($this->error)) {
204             $this->element('p', 'error', $this->error);
205         }
206
207         $form = new QnanewanswerForm($this->question, $this);
208         $form->show();
209
210         return;
211     }
212
213     /**
214      * Return true if read only.
215      *
216      * MAY override
217      *
218      * @param array $args other arguments
219      *
220      * @return boolean is read only action?
221      */
222     function isReadOnly($args)
223     {
224         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
225             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
226             return true;
227         } else {
228             return false;
229         }
230     }
231
232     /**
233      * Show an Ajax-y error message
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 ajaxErrorMsg($msg)
242     {
243         $this->startHTML('text/xml;charset=utf-8', true);
244         $this->elementStart('head');
245         // TRANS: Page title after an AJAX error occurs on the post answer page.
246         $this->element('title', null, _('Ajax Error'));
247         $this->elementEnd('head');
248         $this->elementStart('body');
249         $this->element('p', array('id' => 'error'), $msg);
250         $this->elementEnd('body');
251         $this->elementEnd('html');
252     }
253
254     /**
255      * Show an Ajax-y answer form
256      *
257      * Goes back to the browser, where it's shown in a popup.
258      *
259      * @param string $msg Message to show
260      *
261      * @return void
262      */
263     function ajaxShowForm()
264     {
265         common_debug('ajaxShowForm()');
266         $this->startHTML('text/xml;charset=utf-8', true);
267         $this->elementStart('head');
268         // TRANS: Title for form to send answer to a question.
269         $this->element('title', null, _m('TITLE','Your answer'));
270         $this->elementEnd('head');
271         $this->elementStart('body');
272
273         $form = new QnanewanswerForm($this, $this->question);
274         $form->show();
275
276         $this->elementEnd('body');
277         $this->elementEnd('html');
278     }
279
280     /**
281      * @param string $msg An error message, if any
282      *
283      * @return void
284      */
285     function showForm($msg = null)
286     {
287         common_debug("show form - msg = $msg");
288         if ($this->boolean('ajax')) {
289             if ($msg) {
290                 $this->ajaxErrorMsg($msg);
291             } else {
292                 $this->ajaxShowForm();
293             }
294             return;
295         }
296
297         $this->msg = $msg;
298         $this->showPage();
299     }
300
301 }