2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2020-09-21 21:54:23 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-01-18 17:06:38 +00:00
|
|
|
/**
|
|
|
|
* Handler for posting new notices
|
|
|
|
*
|
|
|
|
* @category Personal
|
2020-09-21 21:54:23 +01:00
|
|
|
* @package GNUsocial
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2020-09-21 21:54:23 +01:00
|
|
|
* @copyright 2013 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2008-05-14 20:26:48 +01:00
|
|
|
*/
|
|
|
|
|
2020-09-21 21:54:23 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-01-18 17:06:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Action for posting new notices
|
|
|
|
*
|
2020-09-21 21:54:23 +01:00
|
|
|
* @category Personal
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-18 17:06:38 +00:00
|
|
|
*/
|
2013-09-01 19:56:35 +01:00
|
|
|
class NewnoticeAction extends FormAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2014-07-03 13:00:40 +01:00
|
|
|
protected $form = 'Notice';
|
|
|
|
|
2017-04-30 09:37:21 +01:00
|
|
|
protected $inreplyto = null;
|
|
|
|
|
2009-01-18 17:06:38 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
2009-11-09 19:01:46 +00:00
|
|
|
* Note that this usually doesn't get called unless something went wrong
|
2009-01-18 17:06:38 +00:00
|
|
|
*
|
|
|
|
* @return string page title
|
|
|
|
*/
|
2020-09-21 21:54:23 +01:00
|
|
|
public function title()
|
2009-01-18 17:06:38 +00:00
|
|
|
{
|
2014-07-14 16:11:54 +01:00
|
|
|
if ($this->getInfo() && $this->stored instanceof Notice) {
|
|
|
|
// TRANS: Page title after sending a notice.
|
|
|
|
return _('Notice posted');
|
|
|
|
}
|
2015-03-07 19:34:46 +00:00
|
|
|
if ($this->int('inreplyto')) {
|
|
|
|
return _m('TITLE', 'New reply');
|
|
|
|
}
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Page title for sending a new notice.
|
2020-09-21 21:54:23 +01:00
|
|
|
return _m('TITLE', 'New notice');
|
2009-01-18 17:06:38 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 11:56:13 +01:00
|
|
|
protected function doPreparation()
|
|
|
|
{
|
2020-09-21 21:54:23 +01:00
|
|
|
foreach (['inreplyto'] as $opt) {
|
2014-07-15 17:15:36 +01:00
|
|
|
if ($this->trimmed($opt)) {
|
2014-07-06 11:56:13 +01:00
|
|
|
$this->formOpts[$opt] = $this->trimmed($opt);
|
|
|
|
}
|
|
|
|
}
|
2015-02-09 23:06:26 +00:00
|
|
|
|
2017-04-30 09:37:21 +01:00
|
|
|
if ($this->int('inreplyto')) {
|
|
|
|
// Throws exception if the inreplyto Notice is given but not found.
|
|
|
|
$this->inreplyto = Notice::getByID($this->int('inreplyto'));
|
|
|
|
}
|
|
|
|
|
2015-02-10 15:53:24 +00:00
|
|
|
// Backwards compatibility for "share this" widget things.
|
|
|
|
// If no 'content', use 'status_textarea'
|
|
|
|
$this->formOpts['content'] = $this->trimmed('content') ?: $this->trimmed('status_textarea');
|
2014-07-06 11:56:13 +01:00
|
|
|
}
|
|
|
|
|
2009-01-18 17:06:38 +00:00
|
|
|
/**
|
2015-03-08 19:41:42 +00:00
|
|
|
* This doPost saves a new notice, based on arguments
|
2009-01-18 17:06:38 +00:00
|
|
|
*
|
|
|
|
* If successful, will show the notice, or return an Ajax-y result.
|
|
|
|
* If not, it will show an error message -- possibly Ajax-y.
|
|
|
|
*
|
|
|
|
* Also, if the notice input looks like a command, it will run the
|
|
|
|
* command and show the results -- again, possibly ajaxy.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-03-08 19:41:42 +00:00
|
|
|
protected function doPost()
|
2009-01-18 17:06:38 +00:00
|
|
|
{
|
2015-03-08 19:41:42 +00:00
|
|
|
assert($this->scoped instanceof Profile); // XXX: maybe an error instead...
|
2013-09-01 19:56:35 +01:00
|
|
|
$user = $this->scoped->getUser();
|
2016-01-27 21:39:43 +00:00
|
|
|
$content = $this->formOpts['content'];
|
2016-01-01 19:18:54 +00:00
|
|
|
$options = array('source' => 'web');
|
2010-08-11 22:39:39 +01:00
|
|
|
Event::handle('StartSaveNewNoticeWeb', array($this, $user, &$content, &$options));
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2020-09-21 21:54:23 +01:00
|
|
|
$inter = new CommandInterpreter();
|
|
|
|
|
|
|
|
$cmd = $inter->handle_command($user, $content);
|
|
|
|
|
|
|
|
if ($cmd) {
|
|
|
|
if (GNUsocial::isAjax()) {
|
|
|
|
$cmd->execute(new AjaxWebChannel($this));
|
|
|
|
} else {
|
|
|
|
$cmd->execute(new WebChannel($this));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$act = new Activity();
|
|
|
|
$act->verb = ActivityVerb::POST;
|
|
|
|
$act->time = time();
|
|
|
|
$act->actor = $this->scoped->asActivityObject();
|
|
|
|
|
2016-01-27 21:39:43 +00:00
|
|
|
$upload = null;
|
|
|
|
try {
|
|
|
|
// throws exception on failure
|
|
|
|
$upload = MediaFile::fromUpload('attach', $this->scoped);
|
|
|
|
if (Event::handle('StartSaveNewNoticeAppendAttachment', array($this, $upload, &$content, &$options))) {
|
2016-01-27 22:04:19 +00:00
|
|
|
$content .= ($content==='' ? '' : ' ') . $upload->shortUrl();
|
2016-01-27 21:39:43 +00:00
|
|
|
}
|
|
|
|
Event::handle('EndSaveNewNoticeAppendAttachment', array($this, $upload, &$content, &$options));
|
|
|
|
|
|
|
|
// We could check content length here if the URL was added, but I'll just let it slide for now...
|
|
|
|
|
|
|
|
$act->enclosures[] = $upload->getEnclosure();
|
|
|
|
} catch (NoUploadedMediaException $e) {
|
|
|
|
// simply no attached media to the new notice
|
|
|
|
if (empty($content)) {
|
|
|
|
// TRANS: Client error displayed trying to send a notice without content.
|
2020-09-21 21:54:23 +01:00
|
|
|
throw new ClientException(_m('No content!'));
|
2016-01-27 21:39:43 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2016-01-07 17:14:45 +00:00
|
|
|
// Reject notice if it is too long (without the HTML)
|
|
|
|
// This is done after MediaFile::fromUpload etc. just to act the same as the ApiStatusesUpdateAction
|
|
|
|
if (Notice::contentTooLong($content)) {
|
|
|
|
// TRANS: Client error displayed when the parameter "status" is missing.
|
|
|
|
// TRANS: %d is the maximum number of character for a notice.
|
2020-09-21 21:54:23 +01:00
|
|
|
throw new ClientException(sprintf(
|
|
|
|
_m('That\'s too long. Maximum notice size is %d character.',
|
|
|
|
'That\'s too long. Maximum notice size is %d characters.',
|
|
|
|
Notice::maxContent()),
|
|
|
|
Notice::maxContent()
|
|
|
|
));
|
2016-01-07 17:14:45 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 19:18:54 +00:00
|
|
|
$act->context = new ActivityContext();
|
|
|
|
|
2017-04-30 09:37:21 +01:00
|
|
|
if ($this->inreplyto instanceof Notice) {
|
|
|
|
$act->context->replyToID = $this->inreplyto->getUri();
|
|
|
|
$act->context->replyToUrl = $this->inreplyto->getUrl(true); // maybe we don't have to send true here to force a URL?
|
2016-01-01 19:18:54 +00:00
|
|
|
}
|
2015-01-21 16:32:57 +00:00
|
|
|
|
2013-10-06 12:38:09 +01:00
|
|
|
if ($this->scoped->shareLocation()) {
|
2010-04-01 17:58:06 +01:00
|
|
|
// use browser data if checked; otherwise profile data
|
|
|
|
if ($this->arg('notice_data-geo')) {
|
2020-09-21 21:54:23 +01:00
|
|
|
$locOptions = Notice::locationOptions(
|
|
|
|
$this->trimmed('lat'),
|
|
|
|
$this->trimmed('lon'),
|
|
|
|
$this->trimmed('location_id'),
|
|
|
|
$this->trimmed('location_ns'),
|
|
|
|
$this->scoped
|
|
|
|
);
|
2010-04-01 17:58:06 +01:00
|
|
|
} else {
|
2020-09-21 21:54:23 +01:00
|
|
|
$locOptions = Notice::locationOptions(
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$this->scoped
|
|
|
|
);
|
2010-04-01 17:58:06 +01:00
|
|
|
}
|
2009-12-28 22:21:07 +00:00
|
|
|
|
2016-01-01 19:18:54 +00:00
|
|
|
$act->context->location = Location::fromOptions($locOptions);
|
2009-12-28 22:21:07 +00:00
|
|
|
}
|
|
|
|
|
2016-01-07 22:24:15 +00:00
|
|
|
$content = $this->scoped->shortenLinks($content);
|
|
|
|
|
|
|
|
// FIXME: Make sure NoticeTitle plugin gets a change to add the title to our activityobject!
|
|
|
|
if (Event::handle('StartNoticeSaveWeb', array($this, $this->scoped, &$content, &$options))) {
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2016-01-07 22:24:15 +00:00
|
|
|
// FIXME: We should be able to get the attentions from common_render_content!
|
|
|
|
// and maybe even directly save whether they're local or not!
|
2017-04-30 09:37:21 +01:00
|
|
|
$act->context->attention = common_get_attentions($content, $this->scoped, $this->inreplyto);
|
2011-03-28 16:02:20 +01:00
|
|
|
|
2016-02-17 22:44:15 +00:00
|
|
|
// $options gets filled with possible scoping settings
|
|
|
|
ToSelector::fillActivity($this, $act, $options);
|
|
|
|
|
2016-01-07 22:24:15 +00:00
|
|
|
$actobj = new ActivityObject();
|
|
|
|
$actobj->type = ActivityObject::NOTE;
|
2017-04-30 09:37:21 +01:00
|
|
|
$actobj->content = common_render_content($content, $this->scoped, $this->inreplyto);
|
2011-03-28 16:02:20 +01:00
|
|
|
|
2016-01-07 22:24:15 +00:00
|
|
|
// Finally add the activity object to our activity
|
|
|
|
$act->objects[] = $actobj;
|
2010-08-13 19:21:07 +01:00
|
|
|
|
2016-01-01 19:18:54 +00:00
|
|
|
$this->stored = Notice::saveActivity($act, $this->scoped, $options);
|
2010-08-13 19:21:07 +01:00
|
|
|
|
2020-09-21 21:54:23 +01:00
|
|
|
$upload->attachToNotice($this->stored);
|
2010-08-13 19:21:07 +01:00
|
|
|
|
2014-07-06 11:56:13 +01:00
|
|
|
Event::handle('EndNoticeSaveWeb', array($this, $this->stored));
|
2009-06-01 19:02:59 +01:00
|
|
|
}
|
2014-06-01 23:20:27 +01:00
|
|
|
|
2016-01-01 19:18:54 +00:00
|
|
|
Event::handle('EndSaveNewNoticeWeb', array($this, $user, &$content, &$options));
|
2009-06-23 15:29:43 +01:00
|
|
|
|
2015-02-27 11:44:15 +00:00
|
|
|
if (!GNUsocial::isAjax()) {
|
2015-01-12 11:13:34 +00:00
|
|
|
$url = common_local_url('shownotice', array('notice' => $this->stored->id));
|
2008-12-23 19:19:07 +00:00
|
|
|
common_redirect($url, 303);
|
|
|
|
}
|
2011-03-04 22:11:11 +00:00
|
|
|
|
2020-09-21 21:54:23 +01:00
|
|
|
return _m('Saved the notice!');
|
2011-03-04 22:11:11 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 11:56:13 +01:00
|
|
|
protected function showContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2014-07-06 11:56:13 +01:00
|
|
|
if ($this->getInfo() && $this->stored instanceof Notice) {
|
|
|
|
$this->showNotice($this->stored);
|
|
|
|
} elseif (!$this->getError()) {
|
2017-04-30 09:37:21 +01:00
|
|
|
if (!GNUsocial::isAjax() && $this->inreplyto instanceof Notice) {
|
|
|
|
$this->showNotice($this->inreplyto);
|
|
|
|
}
|
2014-07-06 11:56:13 +01:00
|
|
|
parent::showContent();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-18 17:06:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a notice
|
|
|
|
*
|
|
|
|
* Used to generate the notice code for Ajax results.
|
|
|
|
*
|
|
|
|
* @param Notice $notice Notice that was saved
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2020-09-21 21:54:23 +01:00
|
|
|
public function showNotice(Notice $notice)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-18 17:06:38 +00:00
|
|
|
$nli = new NoticeListItem($notice, $this);
|
2008-12-11 23:20:00 +00:00
|
|
|
$nli->show();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2015-01-08 16:33:09 +00:00
|
|
|
|
|
|
|
public function showNoticeForm()
|
|
|
|
{
|
|
|
|
// pass
|
|
|
|
}
|
2008-06-20 08:17:00 +01:00
|
|
|
}
|