3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Vote on a question or answer
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.
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.
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/>.
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/
30 if (!defined('STATUSNET')) {
31 // This check helps protect against security problems;
32 // your code file can't be executed directly from the web.
37 * Vote on a question or answer
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/
46 class Qnavote extends Action
48 protected $user = null;
49 protected $error = null;
50 protected $complete = null;
52 protected $question = null;
53 protected $answer = null;
56 * Returns the title of the action
58 * @return string Action title
62 // TRANS: Page title for and answer to a question.
67 * For initializing members of the class.
69 * @param array $argarray misc. arguments
71 * @return boolean true
73 function prepare($argarray)
75 parent::prepare($argarray);
76 if ($this->boolean('ajax')) {
77 StatusNet::setApi(true);
80 $this->user = common_current_user();
82 if (empty($this->user)) {
83 // TRANS: Client exception thrown trying to answer a question while not logged in.
84 throw new ClientException(_m('You must be logged in to answer to a question.'),
88 if ($this->isPost()) {
89 $this->checkSessionToken();
92 $id = $this->trimmed('id');
93 $this->question = QnA_Question::getKV('id', $id);
94 if (empty($this->question)) {
95 // TRANS: Client exception thrown trying to respond to a non-existing question.
96 throw new ClientException(_m('Invalid or missing question.'), 404);
99 $answer = $this->trimmed('answer');
108 * @param array $argarray is ignored since it's now passed in in prepare()
112 function handle($argarray=null)
114 parent::handle($argarray);
116 if ($this->isPost()) {
133 $notice = Answer::saveNew(
134 $this->user->getProfile(),
138 } catch (ClientException $ce) {
139 $this->error = $ce->getMessage();
144 if ($this->boolean('ajax')) {
145 $this->startHTML('text/xml;charset=utf-8');
146 $this->elementStart('head');
147 // TRANS: Page title after sending in a vote for a question or answer.
148 $this->element('title', null, _m('Answers'));
149 $this->elementEnd('head');
150 $this->elementStart('body');
151 $form = new QnA_Answer($this->question, $this);
153 $this->elementEnd('body');
156 common_redirect($this->question->getUrl(), 303);
161 * Show the Answer form
165 function showContent()
167 if (!empty($this->error)) {
168 $this->element('p', 'error', $this->error);
171 $form = new QnaanswerForm($this->question, $this);
179 * Return true if read only.
183 * @param array $args other arguments
185 * @return boolean is read only action?
187 function isReadOnly($args)
189 if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
190 $_SERVER['REQUEST_METHOD'] == 'HEAD') {