]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/actions/qnashowquestion.php
Merge branch 'social-master' of gitorious.org:statusnet/quix0rs-gnu-social into socia...
[quix0rs-gnu-social.git] / plugins / QnA / actions / qnashowquestion.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Show 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
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Show a question
39  *
40  * @category  QnA
41  * @package   StatusNet
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/
46  */
47 class QnashowquestionAction extends ShownoticeAction
48 {
49     protected $question = null;
50
51     /**
52      * For initializing members of the class.
53      *
54      * @param array $argarray misc. arguments
55      *
56      * @return boolean true
57      */
58     function prepare($argarray)
59     {
60         Action::prepare($argarray);
61
62         $this->id = $this->trimmed('id');
63
64         $this->question = QnA_Question::getKV('id', $this->id);
65
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);
69         }
70
71         $this->notice = $this->question->getNotice();
72
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);
77         }
78
79         $this->user = User::getKV('id', $this->question->profile_id);
80
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);
84         }
85
86         $this->profile = $this->user->getProfile();
87
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.'));
91         }
92
93         try {
94             $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
95         } catch (Exception $e) {
96             $this->avatar = null;
97         }
98
99         return true;
100     }
101
102     function showContent()
103     {
104         $this->elementStart('div', 'qna-full-question');
105         $this->raw($this->question->asHTML());
106
107         $answer = $this->question->getAnswers();
108
109         $this->elementStart('div', 'qna-full-question-answers');
110
111         $answerIds = array();
112
113         // @fixme use a filtered stream!
114
115         if (!empty($answer)) {
116             while ($answer->fetch()) {
117                 $answerIds[] = $answer->getNotice()->id;
118             }
119         }
120
121         if (count($answerIds) > 0) {
122             $notice = Notice::multiGet('id', $answerIds);
123
124             $nli = new NoticeList($notice, $this);
125             $nli->show();
126         }
127
128         $user = common_current_user();
129
130         if (!empty($user)) {
131             $profile = $user->getProfile();
132             $answer  = QnA_Question::getAnswer($profile);
133             if (empty($answer)) {
134                 $form = new QnanewanswerForm($this, $this->question, false);
135                 $form->show();
136             }
137         }
138
139         $this->elementEnd('div');
140         $this->elementEnd('div');
141     }
142
143     /**
144      * Title of the page
145      *
146      * Used by Action class for layout.
147      *
148      * @return string page tile
149      */
150     function title()
151     {
152         return sprintf(
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
158         );
159     }
160
161     /**
162      * @fixme combine the notice time with question update time
163      */
164     function lastModified()
165     {
166         return Action::lastModified();
167     }
168
169     /**
170      * @fixme combine the notice time with question update time
171      */
172     function etag()
173     {
174         return Action::etag();
175     }
176 }