2015-09-29 14:17:38 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* GNU Social - a federating social network
|
|
|
|
* Copyright (C) 2014, Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package Activity
|
|
|
|
* @maintainer Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
*/
|
2019-08-12 15:03:30 +01:00
|
|
|
class ActivityVerbPostModule extends ActivityVerbHandlerModule
|
2015-09-29 14:17:38 +01:00
|
|
|
{
|
2019-08-12 15:03:30 +01:00
|
|
|
const MODULE_VERSION = '2.0.0';
|
2019-06-03 01:56:52 +01:00
|
|
|
|
2015-10-10 22:47:43 +01:00
|
|
|
// TODO: Implement a "fallback" feature which can handle anything _as_ an activityobject "note"
|
|
|
|
|
2015-09-29 14:17:38 +01:00
|
|
|
public function tag()
|
|
|
|
{
|
|
|
|
return 'post';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function types()
|
|
|
|
{
|
|
|
|
return array(ActivityObject::ARTICLE,
|
|
|
|
ActivityObject::BLOGENTRY,
|
|
|
|
ActivityObject::NOTE,
|
|
|
|
ActivityObject::STATUS,
|
|
|
|
ActivityObject::COMMENT,
|
|
|
|
// null, // if we want to follow the original Ostatus_profile::processActivity code
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function verbs()
|
|
|
|
{
|
|
|
|
return array(ActivityVerb::POST);
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
// FIXME: Set this to abstract public in classes/modules/ActivityHandlerModule.php when all plugins have migrated!
|
2015-09-29 14:17:38 +01:00
|
|
|
protected function saveObjectFromActivity(Activity $act, Notice $stored, array $options=array())
|
|
|
|
{
|
|
|
|
assert($this->isMyActivity($act));
|
|
|
|
|
|
|
|
$stored->object_type = ActivityUtils::resolveUri($act->objects[0]->type);
|
2015-10-27 23:13:17 +00:00
|
|
|
if (common_valid_http_url($act->objects[0]->link)) {
|
|
|
|
$stored->url = $act->objects[0]->link;
|
|
|
|
}
|
2015-09-29 14:17:38 +01:00
|
|
|
|
|
|
|
// We don't have to do just about anything for a new, remote notice since the fields
|
|
|
|
// are handled in the main Notice::saveActivity function. Such as content, attachments,
|
|
|
|
// parent/conversation etc.
|
|
|
|
|
|
|
|
// By returning true here instead of something that evaluates
|
|
|
|
// to false, we show that we have processed everything properly.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function activityObjectFromNotice(Notice $notice)
|
|
|
|
{
|
|
|
|
$object = new ActivityObject();
|
|
|
|
|
|
|
|
$object->type = $notice->object_type ?: ActivityObject::NOTE;
|
|
|
|
$object->id = $notice->getUri();
|
|
|
|
$object->title = sprintf('New %1$s by %2$s', ActivityObject::canonicalType($object->type), $notice->getProfile()->getNickname());
|
2016-01-06 14:32:00 +00:00
|
|
|
$object->content = $notice->getRendered();
|
2015-09-29 14:17:38 +01:00
|
|
|
$object->link = $notice->getUrl();
|
|
|
|
|
2017-02-04 10:59:30 +00:00
|
|
|
$object->extra[] = array('statusnet:notice_id', null, $notice->getID());
|
2015-09-29 14:17:38 +01:00
|
|
|
|
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deleteRelated(Notice $notice)
|
|
|
|
{
|
|
|
|
// No action needed as the table for data storage _is_ the notice table.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Command stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
// FIXME: Move stuff from lib/command.php to here just as with Share etc.
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Layout stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
protected function showNoticeContent(Notice $stored, HTMLOutputter $out, Profile $scoped=null)
|
|
|
|
{
|
2016-01-06 14:32:00 +00:00
|
|
|
$out->raw($stored->getRendered());
|
2015-09-29 14:17:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function getActionTitle(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
|
|
|
// return page title
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function doActionPreparation(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
|
|
|
// prepare Action?
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function doActionPost(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
2015-10-13 11:31:35 +01:00
|
|
|
// handle POST
|
2015-09-29 14:17:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function getActivityForm(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
|
|
|
return new NoticeForm($action, array());
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
public function onModuleVersion(array &$versions): bool
|
2015-09-29 14:17:38 +01:00
|
|
|
{
|
|
|
|
$versions[] = array('name' => 'Post verb',
|
2019-08-12 15:03:30 +01:00
|
|
|
'version' => self::MODULE_VERSION,
|
2015-09-29 14:17:38 +01:00
|
|
|
'author' => 'Mikael Nordfeldth',
|
2019-11-21 00:21:22 +00:00
|
|
|
'homepage' => GNUSOCIAL_ENGINE_URL,
|
2015-09-29 14:17:38 +01:00
|
|
|
'rawdescription' =>
|
2019-08-12 15:03:30 +01:00
|
|
|
// TRANS: Module description.
|
2015-09-29 14:17:38 +01:00
|
|
|
_m('Post handling with ActivityStreams.'));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|