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/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
42 * @author Zach Copley <zach@status.net>
43 * @copyright 2011 StatusNet, Inc.
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45 * @link http://status.net/
47 class QnashowquestionAction extends ShownoticeAction
49 protected $question = null;
52 * For initializing members of the class.
54 * @param array $argarray misc. arguments
56 * @return boolean true
58 function prepare($argarray)
60 Action::prepare($argarray);
62 $this->id = $this->trimmed('id');
64 $this->question = QnA_Question::getKV('id', $this->id);
66 if (empty($this->question)) {
67 // TRANS: Client exception thrown trying to view a non-existing question.
68 throw new ClientException(_m('No such question.'), 404);
71 $this->notice = $this->question->getNotice();
73 if (empty($this->notice)) {
74 // Did we used to have it, and it got deleted?
75 // TRANS: Client exception thrown trying to view a non-existing question notice.
76 throw new ClientException(_m('No such question notice.'), 404);
79 $this->user = User::getKV('id', $this->question->profile_id);
81 if (empty($this->user)) {
82 // TRANS: Client exception thrown trying to view a question of a non-existing user.
83 throw new ClientException(_m('No such user.'), 404);
86 $this->profile = $this->user->getProfile();
88 if (empty($this->profile)) {
89 // TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded.
90 throw new ServerException(_m('User without a profile.'));
94 $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
95 } catch (Exception $e) {
102 function showContent()
104 $this->elementStart('div', 'qna-full-question');
105 $this->raw($this->question->asHTML());
107 $answer = $this->question->getAnswers();
109 $this->elementStart('div', 'qna-full-question-answers');
111 $answerIds = array();
113 // @fixme use a filtered stream!
115 if (!empty($answer)) {
116 while ($answer->fetch()) {
117 $answerIds[] = $answer->getNotice()->id;
121 if (count($answerIds) > 0) {
122 $notice = Notice::multiGet('id', $answerIds);
124 $nli = new NoticeList($notice, $this);
128 $user = common_current_user();
131 $profile = $user->getProfile();
132 $answer = QnA_Question::getAnswer($profile);
133 if (empty($answer)) {
134 $form = new QnanewanswerForm($this, $this->question, false);
139 $this->elementEnd('div');
140 $this->elementEnd('div');
146 * Used by Action class for layout.
148 * @return string page tile
153 // TRANS: Page title for a question.
154 // TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question.
155 _m('%1$s\'s question: %2$s'),
156 $this->user->nickname,
157 $this->question->title
162 * @fixme combine the notice time with question update time
164 function lastModified()
166 return Action::lastModified();
170 * @fixme combine the notice time with question update time
174 return Action::etag();