3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * Show an answer to a question
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 2010 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.
38 * Show an answer to a question, and associated data
42 * @author Zach Copley <zach@status.net>
43 * @copyright 2010 StatusNet, Inc.
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45 * @link http://status.net/
47 class QnashowanswerAction extends ShownoticeAction
49 protected $answer = 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->answer = QnA_Answer::getKV('id', $this->id);
66 if (empty($this->answer)) {
67 // TRANS: Client exception thrown when requesting a non-existing answer.
68 throw new ClientException(_m('No such answer.'), 404);
71 $this->question = $this->answer->getQuestion();
73 if (empty($this->question)) {
74 // TRANS: Client exception thrown when requesting an answer that has no connected question.
75 throw new ClientException(_m('No question for this answer.'), 404);
78 $this->notice = Notice::getKV('uri', $this->answer->uri);
80 if (empty($this->notice)) {
81 // TRANS: Did we used to have it, and it got deleted?
82 throw new ClientException(_m('No such answer.'), 404);
85 $this->user = User::getKV('id', $this->answer->profile_id);
87 if (empty($this->user)) {
88 // TRANS: Client exception thrown when requesting answer data for a non-existing user.
89 throw new ClientException(_m('No such user.'), 404);
92 $this->profile = $this->user->getProfile();
94 if (empty($this->profile)) {
95 // TRANS: Client exception thrown when requesting answer data for a user without a profile.
96 throw new ServerException(_m('User without a profile.'));
100 $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
101 } catch (Exception $e) {
102 $this->avatar = null;
111 * Used by Action class for layout.
113 * @return string page tile
117 $question = $this->answer->getQuestion();
120 // TRANS: Page title.
121 // TRANS: %1$s is the user who answered a question, %2$s is the question.
122 _m('%1$s\'s answer to "%2$s"'),
123 $this->user->nickname,
129 * Overload page title display to show answer link
133 function showPageTitle()
135 $this->elementStart('h1');
138 array('href' => $this->answer->uri),
139 $this->question->title
141 $this->elementEnd('h1');
144 function showContent()
146 $this->raw($this->answer->asHTML());