]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/QnA/actions/newquestion.php
Renamed QuestionAndAnswerPlugin to QnAPlugin
[quix0rs-gnu-social.git] / plugins / QnA / actions / newquestion.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Add a new 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 if (!defined('STATUSNET')) {
31     // This check helps protect against security problems;
32     // your code file can't be executed directly from the web.
33     exit(1);
34 }
35
36 /**
37  * Add a new Question
38  *
39  * @category  Plugin
40  * @package   StatusNet
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/
45  */
46 class NewquestionAction extends Action
47 {
48     protected $user        = null;
49     protected $error       = null;
50     protected $complete    = null;
51
52     protected $question    = null;
53
54     /**
55      * Returns the title of the action
56      *
57      * @return string Action title
58      */
59     function title()
60     {
61         // TRANS: Title for Question page.
62         return _m('New question');
63     }
64
65     /**
66      * For initializing members of the class.
67      *
68      * @param array $argarray misc. arguments
69      *
70      * @return boolean true
71      */
72     function prepare($argarray)
73     {
74         parent::prepare($argarray);
75
76         $this->user = common_current_user();
77
78         if (empty($this->user)) {
79             // TRANS: Client exception thrown trying to create a Question while not logged in.
80             throw new ClientException(_m('You must be logged in to post a question.'),
81                                       403);
82         }
83
84         if ($this->isPost()) {
85             $this->checkSessionToken();
86         }
87
88         return true;
89     }
90
91     /**
92      * Handler method
93      *
94      * @param array $argarray is ignored since it's now passed in in prepare()
95      *
96      * @return void
97      */
98     function handle($argarray=null)
99     {
100         parent::handle($argarray);
101
102         if ($this->isPost()) {
103             $this->newQuestion();
104         } else {
105             $this->showPage();
106         }
107
108         return;
109     }
110
111     /**
112      * Add a new Question
113      *
114      * @return void
115      */
116     function newQuestion()
117     {
118         if ($this->boolean('ajax')) {
119             StatusNet::setApi(true);
120         }
121         try {
122             if (empty($this->question)) {
123             // TRANS: Client exception thrown trying to create a Question without a question.
124                 throw new ClientException(_m('Question must have a question.'));
125             }
126
127             $saved = Question::saveNew(
128                 $this->user->getProfile(),
129                 $this->question
130             );
131         } catch (ClientException $ce) {
132             $this->error = $ce->getMessage();
133             $this->showPage();
134             return;
135         }
136
137         if ($this->boolean('ajax')) {
138             header('Content-Type: text/xml;charset=utf-8');
139             $this->xw->startDocument('1.0', 'UTF-8');
140             $this->elementStart('html');
141             $this->elementStart('head');
142             // TRANS: Page title after sending a notice.
143             $this->element('title', null, _m('Notice posted'));
144             $this->elementEnd('head');
145             $this->elementStart('body');
146             $this->showNotice($saved);
147             $this->elementEnd('body');
148             $this->elementEnd('html');
149         } else {
150             common_redirect($saved->bestUrl(), 303);
151         }
152     }
153
154     /**
155      * Output a notice
156      *
157      * Used to generate the notice code for Ajax results.
158      *
159      * @param Notice $notice Notice that was saved
160      *
161      * @return void
162      */
163     function showNotice($notice)
164     {
165         class_exists('NoticeList'); // @fixme hack for autoloader
166         $nli = new NoticeListItem($notice, $this);
167         $nli->show();
168     }
169
170     /**
171      * Show the Question form
172      *
173      * @return void
174      */
175     function showContent()
176     {
177         if (!empty($this->error)) {
178             $this->element('p', 'error', $this->error);
179         }
180
181         $form = new NewQuestionForm(
182             $this,
183             $this->question,
184             $this->options
185         );
186
187         $form->show();
188
189         return;
190     }
191
192     /**
193      * Return true if read only.
194      *
195      * MAY override
196      *
197      * @param array $args other arguments
198      *
199      * @return boolean is read only action?
200      */
201     function isReadOnly($args)
202     {
203         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
204             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
205             return true;
206         } else {
207             return false;
208         }
209     }
210 }
211