qnanewquestion.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. * Add a new Question
  37. *
  38. * @category Plugin
  39. * @package StatusNet
  40. * @author Zach Copley <zach@status.net>
  41. * @copyright 2010 StatusNet, Inc.
  42. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  43. * @link http://status.net/
  44. */
  45. class QnanewquestionAction extends Action
  46. {
  47. protected $user = null;
  48. protected $error = null;
  49. protected $complete = null;
  50. protected $title = null;
  51. protected $description = null;
  52. /**
  53. * Returns the title of the action
  54. *
  55. * @return string Action title
  56. */
  57. function title()
  58. {
  59. // TRANS: Title for Question page.
  60. return _m('New question');
  61. }
  62. /**
  63. * For initializing members of the class.
  64. *
  65. * @param array $argarray misc. arguments
  66. *
  67. * @return boolean true
  68. */
  69. function prepare($argarray)
  70. {
  71. parent::prepare($argarray);
  72. $this->user = common_current_user();
  73. if (empty($this->user)) {
  74. throw new ClientException(
  75. // TRANS: Client exception thrown trying to create a Question while not logged in.
  76. _m('You must be logged in to post a question.'),
  77. 403
  78. );
  79. }
  80. if ($this->isPost()) {
  81. $this->checkSessionToken();
  82. }
  83. $this->title = $this->trimmed('title');
  84. $this->description = $this->trimmed('description');
  85. return true;
  86. }
  87. /**
  88. * Handler method
  89. *
  90. * @param array $argarray is ignored since it's now passed in in prepare()
  91. *
  92. * @return void
  93. */
  94. function handle($argarray=null)
  95. {
  96. parent::handle($argarray);
  97. if ($this->isPost()) {
  98. $this->newQuestion();
  99. } else {
  100. $this->showPage();
  101. }
  102. return;
  103. }
  104. /**
  105. * Add a new Question
  106. *
  107. * @return void
  108. */
  109. function newQuestion()
  110. {
  111. if ($this->boolean('ajax')) {
  112. GNUsocial::setApi(true);
  113. }
  114. try {
  115. if (empty($this->title)) {
  116. // TRANS: Client exception thrown trying to create a question without a title.
  117. throw new ClientException(_m('Question must have a title.'));
  118. }
  119. // Notice options
  120. $options = array();
  121. // Does the heavy-lifting for getting "To:" information
  122. ToSelector::fillOptions($this, $options);
  123. $saved = QnA_Question::saveNew(
  124. $this->user->getProfile(),
  125. $this->title,
  126. $this->description,
  127. $options
  128. );
  129. } catch (ClientException $ce) {
  130. $this->error = $ce->getMessage();
  131. $this->showPage();
  132. return;
  133. }
  134. if ($this->boolean('ajax')) {
  135. $this->startHTML('text/xml;charset=utf-8');
  136. $this->elementStart('head');
  137. // TRANS: Page title after sending a notice.
  138. $this->element('title', null, _m('Question posted'));
  139. $this->elementEnd('head');
  140. $this->elementStart('body');
  141. $this->showNotice($saved);
  142. $this->elementEnd('body');
  143. $this->endHTML();
  144. } else {
  145. common_redirect($saved->getUrl(), 303);
  146. }
  147. }
  148. /**
  149. * Output a notice
  150. *
  151. * Used to generate the notice code for Ajax results.
  152. *
  153. * @param Notice $notice Notice that was saved
  154. *
  155. * @return void
  156. */
  157. function showNotice($notice)
  158. {
  159. $nli = new NoticeQuestionListItem($notice, $this);
  160. $nli->show();
  161. }
  162. /**
  163. * Show the Question form
  164. *
  165. * @return void
  166. */
  167. function showContent()
  168. {
  169. if (!empty($this->error)) {
  170. $this->element('p', 'error', $this->error);
  171. }
  172. $form = new QuestionForm(
  173. $this,
  174. $this->title,
  175. $this->description
  176. );
  177. $form->show();
  178. return;
  179. }
  180. /**
  181. * Return true if read only.
  182. *
  183. * MAY override
  184. *
  185. * @param array $args other arguments
  186. *
  187. * @return boolean is read only action?
  188. */
  189. function isReadOnly($args)
  190. {
  191. if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
  192. $_SERVER['REQUEST_METHOD'] == 'HEAD') {
  193. return true;
  194. } else {
  195. return false;
  196. }
  197. }
  198. }
  199. class NoticeQuestionListItem extends NoticeListItem
  200. {
  201. /**
  202. * constructor
  203. *
  204. * Also initializes the profile attribute.
  205. *
  206. * @param Notice $notice The notice we'll display
  207. */
  208. function __construct($notice, $out=null)
  209. {
  210. parent::__construct($notice, $out);
  211. }
  212. function showEnd()
  213. {
  214. $this->out->element('ul', 'notices threaded-replies xoxo');
  215. parent::showEnd();
  216. }
  217. }