3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
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.
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 QnanewquestionAction extends Action
48 protected $user = null;
49 protected $error = null;
50 protected $complete = null;
51 protected $title = null;
52 protected $description = null;
55 * Returns the title of the action
57 * @return string Action title
61 // TRANS: Title for Question page.
62 return _m('New question');
66 * For initializing members of the class.
68 * @param array $argarray misc. arguments
70 * @return boolean true
72 function prepare($argarray)
74 parent::prepare($argarray);
76 $this->user = common_current_user();
78 if (empty($this->user)) {
79 throw new ClientException(
80 // TRANS: Client exception thrown trying to create a Question while not logged in.
81 _m('You must be logged in to post a question.'),
86 if ($this->isPost()) {
87 $this->checkSessionToken();
90 $this->title = $this->trimmed('title');
91 $this->description = $this->trimmed('description');
99 * @param array $argarray is ignored since it's now passed in in prepare()
103 function handle($argarray=null)
105 parent::handle($argarray);
107 if ($this->isPost()) {
108 $this->newQuestion();
121 function newQuestion()
123 if ($this->boolean('ajax')) {
124 StatusNet::setApi(true);
127 if (empty($this->title)) {
128 // TRANS: Client exception thrown trying to create a question without a title.
129 throw new ClientException(_m('Question must have a title.'));
135 // Does the heavy-lifting for getting "To:" information
136 ToSelector::fillOptions($this, $options);
138 $saved = QnA_Question::saveNew(
139 $this->user->getProfile(),
144 } catch (ClientException $ce) {
145 $this->error = $ce->getMessage();
150 if ($this->boolean('ajax')) {
151 $this->startHTML('text/xml;charset=utf-8');
152 $this->elementStart('head');
153 // TRANS: Page title after sending a notice.
154 $this->element('title', null, _m('Question posted'));
155 $this->elementEnd('head');
156 $this->elementStart('body');
157 $this->showNotice($saved);
158 $this->elementEnd('body');
161 common_redirect($saved->getUrl(), 303);
168 * Used to generate the notice code for Ajax results.
170 * @param Notice $notice Notice that was saved
174 function showNotice($notice)
176 $nli = new NoticeQuestionListItem($notice, $this);
181 * Show the Question form
185 function showContent()
187 if (!empty($this->error)) {
188 $this->element('p', 'error', $this->error);
191 $form = new QuestionForm(
203 * Return true if read only.
207 * @param array $args other arguments
209 * @return boolean is read only action?
211 function isReadOnly($args)
213 if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
214 $_SERVER['REQUEST_METHOD'] == 'HEAD') {
222 class NoticeQuestionListItem extends NoticeListItem
227 * Also initializes the profile attribute.
229 * @param Notice $notice The notice we'll display
231 function __construct($notice, $out=null)
233 parent::__construct($notice, $out);
238 $this->out->element('ul', 'notices threaded-replies xoxo');