newnotice.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Handler for posting new notices
  6. *
  7. * PHP version 5
  8. *
  9. * LICENCE: This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * @category Personal
  23. * @package StatusNet
  24. * @author Evan Prodromou <evan@status.net>
  25. * @author Zach Copley <zach@status.net>
  26. * @author Sarven Capadisli <csarven@status.net>
  27. * @copyright 2008-2009 StatusNet, Inc.
  28. * @copyright 2013 Free Software Foundation, Inc.
  29. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  30. * @link http://status.net/
  31. */
  32. if (!defined('GNUSOCIAL')) { exit(1); }
  33. /**
  34. * Action for posting new notices
  35. *
  36. * @category Personal
  37. * @package StatusNet
  38. * @author Evan Prodromou <evan@status.net>
  39. * @author Zach Copley <zach@status.net>
  40. * @author Sarven Capadisli <csarven@status.net>
  41. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  42. * @link http://status.net/
  43. */
  44. class NewnoticeAction extends FormAction
  45. {
  46. protected $form = 'Notice';
  47. /**
  48. * Title of the page
  49. *
  50. * Note that this usually doesn't get called unless something went wrong
  51. *
  52. * @return string page title
  53. */
  54. function title()
  55. {
  56. if ($this->getInfo() && $this->stored instanceof Notice) {
  57. // TRANS: Page title after sending a notice.
  58. return _('Notice posted');
  59. }
  60. if ($this->int('inreplyto')) {
  61. return _m('TITLE', 'New reply');
  62. }
  63. // TRANS: Page title for sending a new notice.
  64. return _m('TITLE','New notice');
  65. }
  66. protected function doPreparation()
  67. {
  68. foreach(array('inreplyto') as $opt) {
  69. if ($this->trimmed($opt)) {
  70. $this->formOpts[$opt] = $this->trimmed($opt);
  71. }
  72. }
  73. // Backwards compatibility for "share this" widget things.
  74. // If no 'content', use 'status_textarea'
  75. $this->formOpts['content'] = $this->trimmed('content') ?: $this->trimmed('status_textarea');
  76. }
  77. /**
  78. * This doPost saves a new notice, based on arguments
  79. *
  80. * If successful, will show the notice, or return an Ajax-y result.
  81. * If not, it will show an error message -- possibly Ajax-y.
  82. *
  83. * Also, if the notice input looks like a command, it will run the
  84. * command and show the results -- again, possibly ajaxy.
  85. *
  86. * @return void
  87. */
  88. protected function doPost()
  89. {
  90. assert($this->scoped instanceof Profile); // XXX: maybe an error instead...
  91. $user = $this->scoped->getUser();
  92. $content = $this->formOpts['content'];
  93. $options = array('source' => 'web');
  94. Event::handle('StartSaveNewNoticeWeb', array($this, $user, &$content, &$options));
  95. $upload = null;
  96. try {
  97. // throws exception on failure
  98. $upload = MediaFile::fromUpload('attach', $this->scoped);
  99. if (Event::handle('StartSaveNewNoticeAppendAttachment', array($this, $upload, &$content, &$options))) {
  100. $content .= ($content==='' ? '' : ' ') . $upload->shortUrl();
  101. }
  102. Event::handle('EndSaveNewNoticeAppendAttachment', array($this, $upload, &$content, &$options));
  103. // We could check content length here if the URL was added, but I'll just let it slide for now...
  104. $act->enclosures[] = $upload->getEnclosure();
  105. } catch (NoUploadedMediaException $e) {
  106. // simply no attached media to the new notice
  107. if (empty($content)) {
  108. // TRANS: Client error displayed trying to send a notice without content.
  109. $this->clientError(_('No content!'));
  110. }
  111. }
  112. $inter = new CommandInterpreter();
  113. $cmd = $inter->handle_command($user, $content);
  114. if ($cmd) {
  115. if (GNUsocial::isAjax()) {
  116. $cmd->execute(new AjaxWebChannel($this));
  117. } else {
  118. $cmd->execute(new WebChannel($this));
  119. }
  120. return;
  121. }
  122. if ($this->int('inreplyto')) {
  123. // Throws exception if the inreplyto Notice is given but not found.
  124. $parent = Notice::getByID($this->int('inreplyto'));
  125. } else {
  126. $parent = null;
  127. }
  128. $act = new Activity();
  129. $act->verb = ActivityVerb::POST;
  130. $act->time = time();
  131. $act->actor = $this->scoped->asActivityObject();
  132. // Reject notice if it is too long (without the HTML)
  133. // This is done after MediaFile::fromUpload etc. just to act the same as the ApiStatusesUpdateAction
  134. if (Notice::contentTooLong($content)) {
  135. // TRANS: Client error displayed when the parameter "status" is missing.
  136. // TRANS: %d is the maximum number of character for a notice.
  137. throw new ClientException(sprintf(_m('That\'s too long. Maximum notice size is %d character.',
  138. 'That\'s too long. Maximum notice size is %d characters.',
  139. Notice::maxContent()),
  140. Notice::maxContent()));
  141. }
  142. $act->context = new ActivityContext();
  143. if ($parent instanceof Notice) {
  144. $act->context->replyToID = $parent->getUri();
  145. $act->context->replyToUrl = $parent->getUrl(true); // maybe we don't have to send true here to force a URL?
  146. }
  147. if ($this->scoped->shareLocation()) {
  148. // use browser data if checked; otherwise profile data
  149. if ($this->arg('notice_data-geo')) {
  150. $locOptions = Notice::locationOptions($this->trimmed('lat'),
  151. $this->trimmed('lon'),
  152. $this->trimmed('location_id'),
  153. $this->trimmed('location_ns'),
  154. $this->scoped);
  155. } else {
  156. $locOptions = Notice::locationOptions(null,
  157. null,
  158. null,
  159. null,
  160. $this->scoped);
  161. }
  162. $act->context->location = Location::fromOptions($locOptions);
  163. }
  164. $content = $this->scoped->shortenLinks($content);
  165. // FIXME: Make sure NoticeTitle plugin gets a change to add the title to our activityobject!
  166. if (Event::handle('StartNoticeSaveWeb', array($this, $this->scoped, &$content, &$options))) {
  167. // FIXME: We should be able to get the attentions from common_render_content!
  168. // and maybe even directly save whether they're local or not!
  169. $act->context->attention = common_get_attentions($content, $this->scoped, $parent);
  170. // $options gets filled with possible scoping settings
  171. ToSelector::fillActivity($this, $act, $options);
  172. $actobj = new ActivityObject();
  173. $actobj->type = ActivityObject::NOTE;
  174. $actobj->content = common_render_content($content, $this->scoped, $parent);
  175. // Finally add the activity object to our activity
  176. $act->objects[] = $actobj;
  177. $this->stored = Notice::saveActivity($act, $this->scoped, $options);
  178. if ($upload instanceof MediaFile) {
  179. $upload->attachToNotice($this->stored);
  180. }
  181. Event::handle('EndNoticeSaveWeb', array($this, $this->stored));
  182. }
  183. Event::handle('EndSaveNewNoticeWeb', array($this, $user, &$content, &$options));
  184. if (!GNUsocial::isAjax()) {
  185. $url = common_local_url('shownotice', array('notice' => $this->stored->id));
  186. common_redirect($url, 303);
  187. }
  188. return _('Saved the notice!');
  189. }
  190. protected function showContent()
  191. {
  192. if ($this->getInfo() && $this->stored instanceof Notice) {
  193. $this->showNotice($this->stored);
  194. } elseif (!$this->getError()) {
  195. parent::showContent();
  196. }
  197. }
  198. /**
  199. * Output a notice
  200. *
  201. * Used to generate the notice code for Ajax results.
  202. *
  203. * @param Notice $notice Notice that was saved
  204. *
  205. * @return void
  206. */
  207. function showNotice(Notice $notice)
  208. {
  209. $nli = new NoticeListItem($notice, $this);
  210. $nli->show();
  211. }
  212. public function showNoticeForm()
  213. {
  214. // pass
  215. }
  216. }