return '';
}
- if (!empty($child['author'])) {
- $actor = $child['author'];
- } elseif (!empty($object['actor'])) {
- $actor = $object['actor'];
+ if (!empty($object['actor'])) {
+ $object_actor = $object['actor'];
} elseif (!empty($object['attributedTo'])) {
- $actor = $object['attributedTo'];
+ $object_actor = $object['attributedTo'];
} else {
// Shouldn't happen
- $actor = '';
+ $object_actor = '';
+ }
+
+ $signer = [$object_actor];
+
+ if (!empty($child['author'])) {
+ $actor = $child['author'];
+ $signer[] = $actor;
+ } else {
+ $actor = $object_actor;
}
if (!empty($object['published'])) {
$ldactivity['thread-completion'] = true;
- ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true, false, [$actor]);
+ ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true, false, $signer);
Logger::notice('Activity had been fetched and processed.', ['url' => $url, 'object' => $activity['id']]);
*/
public static function processInbox($body, $header, $uid)
{
- $http_signer = HTTPSignature::getSigner($body, $header);
- if (empty($http_signer)) {
- Logger::warning('Invalid HTTP signature, message will be discarded.');
- return;
- } else {
- Logger::info('Valid HTTP signature', ['signer' => $http_signer]);
- }
-
- $signer = [$http_signer];
$activity = json_decode($body, true);
-
if (empty($activity)) {
Logger::warning('Invalid body.');
return;
$actor = JsonLD::fetchElement($ldactivity, 'as:actor', '@id');
+ $apcontact = APContact::getByURL($actor);
+ if (!empty($apcontact) && ($apcontact['type'] == 'Application') && ($apcontact['nick'] == 'relay')) {
+ self::processRelayPost($ldactivity);
+ return;
+ }
+
+ $http_signer = HTTPSignature::getSigner($body, $header);
+ if (empty($http_signer)) {
+ Logger::warning('Invalid HTTP signature, message will be discarded.');
+ return;
+ } else {
+ Logger::info('Valid HTTP signature', ['signer' => $http_signer]);
+ }
+
+ $signer = [$http_signer];
+
Logger::info('Message for user ' . $uid . ' is from actor ' . $actor);
if (LDSignature::isSigned($activity)) {
self::processActivity($ldactivity, $body, $uid, $trust_source, true, $signer);
}
+ /**
+ * Process incoming posts from relays
+ *
+ * @param array $activity
+ * @return void
+ */
+ private static function processRelayPost(array $activity)
+ {
+ $type = JsonLD::fetchElement($activity, '@type');
+ if (!$type) {
+ Logger::info('Empty type', ['activity' => $activity]);
+ return;
+ }
+
+ if ($type != 'as:Announce') {
+ Logger::info('Not an announcement', ['activity' => $activity]);
+ }
+
+ $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
+ if (empty($object_id)) {
+ Logger::info('No object id found', ['activity' => $activity]);
+ }
+
+ Logger::info('Got relayed message id', ['id' => $object_id]);
+
+ $item_id = Item::searchByLink($object_id);
+ if ($item_id) {
+ Logger::info('Relayed message already exists', ['id' => $object_id, 'item' => $item_id]);
+ return;
+ }
+
+ Processor::fetchMissingActivity($object_id);
+ }
+
/**
* Fetches the object type for a given object id
*
$object_data['thread-completion'] = true;
$item = ActivityPub\Processor::createItem($object_data);
+ $item['post-type'] = Item::PT_ANNOUNCEMENT;
ActivityPub\Processor::postItem($object_data, $item);
$announce_object_data = self::processObject($activity);