Activitypub_notice.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * ActivityPub implementation for GNU social
  18. *
  19. * @package GNUsocial
  20. * @author Diogo Cordeiro <diogo@fc.up.pt>
  21. * @copyright 2018-2019 Free Software Foundation, Inc http://www.fsf.org
  22. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  23. * @link http://www.gnu.org/software/social/
  24. */
  25. defined('GNUSOCIAL') || die();
  26. /**
  27. * ActivityPub notice representation
  28. *
  29. * @category Plugin
  30. * @package GNUsocial
  31. * @author Diogo Cordeiro <diogo@fc.up.pt>
  32. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  33. */
  34. class Activitypub_notice
  35. {
  36. /**
  37. * Generates a pretty notice from a Notice object
  38. *
  39. * @param Notice $notice
  40. * @return array array to be used in a response
  41. * @throws EmptyPkeyValueException
  42. * @throws InvalidUrlException
  43. * @throws ServerException
  44. * @throws Exception
  45. * @author Diogo Cordeiro <diogo@fc.up.pt>
  46. */
  47. public static function notice_to_array(Notice $notice): array
  48. {
  49. $profile = $notice->getProfile();
  50. $attachments = [];
  51. foreach ($notice->attachments() as $attachment) {
  52. $attachments[] = Activitypub_attachment::attachment_to_array($attachment);
  53. }
  54. $tags = [];
  55. foreach ($notice->getTags() as $tag) {
  56. if ($tag != "") { // Hacky workaround to avoid stupid outputs
  57. $tags[] = Activitypub_tag::tag_to_array($tag);
  58. }
  59. }
  60. if ($notice->isPublic()) {
  61. $to = ['https://www.w3.org/ns/activitystreams#Public'];
  62. $cc = [common_local_url('apActorFollowers', ['id' => $profile->getID()])];
  63. } else {
  64. // Since we currently don't support sending unlisted/followers-only
  65. // notices, arriving here means we're instead answering to that type
  66. // of posts. Not having subscription policy working, its safer to
  67. // always send answers of type unlisted.
  68. $to = [];
  69. $cc = ['https://www.w3.org/ns/activitystreams#Public'];
  70. }
  71. foreach ($notice->getAttentionProfiles() as $to_profile) {
  72. $to[] = $href = $to_profile->getUri();
  73. $tags[] = Activitypub_mention_tag::mention_tag_to_array_from_values($href, $to_profile->getNickname() . '@' . parse_url($href, PHP_URL_HOST));
  74. }
  75. if (ActivityUtils::compareVerbs($notice->getVerb(), ActivityVerb::DELETE)) {
  76. $item = [
  77. '@context' => 'https://www.w3.org/ns/activitystreams',
  78. 'id' => self::getUri($notice),
  79. 'type' => 'Delete',
  80. // XXX: A bit of ugly code here
  81. 'object' => array_merge(Activitypub_tombstone::tombstone_to_array((int)substr(explode(':', $notice->getUri())[2], 9)), ['deleted' => str_replace(' ', 'T', $notice->getCreated()) . 'Z']),
  82. 'url' => $notice->getUrl(),
  83. 'actor' => $profile->getUri(),
  84. 'to' => $to,
  85. 'cc' => $cc,
  86. 'conversationId' => $notice->getConversationUrl(false),
  87. 'conversationUrl' => $notice->getConversationUrl(),
  88. 'content' => $notice->getRendered(),
  89. 'isLocal' => $notice->isLocal(),
  90. 'attachment' => $attachments,
  91. 'tag' => $tags
  92. ];
  93. } else { // Note
  94. $item = [
  95. '@context' => 'https://www.w3.org/ns/activitystreams',
  96. 'id' => self::note_uri($notice->getID()),
  97. 'type' => 'Note',
  98. 'published' => str_replace(' ', 'T', $notice->getCreated()) . 'Z',
  99. 'url' => $notice->getUrl(),
  100. 'attributedTo' => $profile->getUri(),
  101. 'to' => $to,
  102. 'cc' => $cc,
  103. 'conversationId' => $notice->getConversationUrl(false),
  104. 'conversationUrl' => $notice->getConversationUrl(),
  105. 'content' => $notice->getRendered(),
  106. 'isLocal' => $notice->isLocal(),
  107. 'attachment' => $attachments,
  108. 'tag' => $tags
  109. ];
  110. }
  111. // Is this a reply?
  112. if (!empty($notice->reply_to)) {
  113. $item['inReplyTo'] = self::getUri(Notice::getById($notice->reply_to));
  114. }
  115. // Do we have a location for this notice?
  116. try {
  117. $location = Notice_location::locFromStored($notice);
  118. $item['latitude'] = $location->lat;
  119. $item['longitude'] = $location->lon;
  120. } catch (Exception $e) {
  121. // Apparently no.
  122. }
  123. return $item;
  124. }
  125. /**
  126. * Create a Notice via ActivityPub Note Object.
  127. * Returns created Notice.
  128. *
  129. * @param array $object
  130. * @param Profile $actor_profile
  131. * @param bool $directMessage
  132. * @return Notice
  133. * @throws Exception
  134. * @author Diogo Cordeiro <diogo@fc.up.pt>
  135. */
  136. public static function create_notice(array $object, Profile $actor_profile, bool $directMessage = false): Notice
  137. {
  138. $id = $object['id']; // int
  139. $url = isset($object['url']) ? $object['url'] : $id; // string
  140. $content = $object['content']; // string
  141. // possible keys: ['inReplyTo', 'latitude', 'longitude']
  142. $settings = [];
  143. if (isset($object['inReplyTo'])) {
  144. $settings['inReplyTo'] = $object['inReplyTo'];
  145. }
  146. if (isset($object['latitude'])) {
  147. $settings['latitude'] = $object['latitude'];
  148. }
  149. if (isset($object['longitude'])) {
  150. $settings['longitude'] = $object['longitude'];
  151. }
  152. $act = new Activity();
  153. $act->verb = ActivityVerb::POST;
  154. $act->time = time();
  155. $act->actor = $actor_profile->asActivityObject();
  156. $act->context = new ActivityContext();
  157. $options = ['source' => 'ActivityPub',
  158. 'uri' => $id,
  159. 'url' => $url,
  160. 'is_local' => self::getNotePolicyType($object, $actor_profile)];
  161. if ($directMessage) {
  162. $options['scope'] = Notice::MESSAGE_SCOPE;
  163. }
  164. // Is this a reply?
  165. if (isset($settings['inReplyTo'])) {
  166. try {
  167. $inReplyTo = ActivityPubPlugin::grab_notice_from_url($settings['inReplyTo']);
  168. $act->context->replyToID = $inReplyTo->getUri();
  169. $act->context->replyToUrl = $inReplyTo->getUrl();
  170. } catch (Exception $e) {
  171. // It failed to grab, maybe we got this note from another source
  172. // (e.g.: OStatus) that handles this differently or we really
  173. // failed to get it...
  174. // Welp, nothing that we can do about, let's
  175. // just fake we don't have such notice.
  176. }
  177. } else {
  178. $inReplyTo = null;
  179. }
  180. // Mentions
  181. $mentions = [];
  182. if (isset($object['tag']) && is_array($object['tag'])) {
  183. foreach ($object['tag'] as $tag) {
  184. if (array_key_exists('type', $tag) && $tag['type'] == 'Mention') {
  185. $mentions[] = $tag['href'];
  186. }
  187. }
  188. }
  189. $mentions_profiles = [];
  190. $discovery = new Activitypub_explorer;
  191. foreach ($mentions as $mention) {
  192. try {
  193. $mentioned_profile = $discovery->lookup($mention);
  194. if (!empty($mentioned_profile)) {
  195. $mentions_profiles[] = $mentioned_profile[0];
  196. }
  197. } catch (Exception $e) {
  198. // Invalid actor found, just let it go, it will eventually be handled by some other federation plugin like OStatus.
  199. }
  200. }
  201. unset($discovery);
  202. foreach ($mentions_profiles as $mp) {
  203. if (!$mp->hasBlocked($actor_profile)) {
  204. $act->context->attention[$mp->getUri()] = 'http://activitystrea.ms/schema/1.0/person';
  205. }
  206. }
  207. // Add location if that is set
  208. if (isset($settings['latitude'], $settings['longitude'])) {
  209. $act->context->location = Location::fromLatLon($settings['latitude'], $settings['longitude']);
  210. }
  211. // Reject notice if it is too long (without the HTML)
  212. if (Notice::contentTooLong($content)) {
  213. throw new Exception('That\'s too long. Maximum notice size is %d character.');
  214. }
  215. // Attachments (first part)
  216. $attachments = [];
  217. if (isset($object['attachment']) && is_array($object['attachment'])) {
  218. foreach ($object['attachment'] as $attachment) {
  219. if (array_key_exists('type', $attachment)
  220. && $attachment['type'] === 'Document'
  221. && array_key_exists('url', $attachment)) {
  222. try {
  223. $file = new File();
  224. $file->url = $attachment['url'];
  225. $file->title = array_key_exists('type', $attachment) ? $attachment['name'] : null;
  226. if (array_key_exists('type', $attachment)) {
  227. $file->mimetype = $attachment['mediaType'];
  228. } else {
  229. $http = new HTTPClient();
  230. common_debug(
  231. 'Performing HEAD request for incoming activity '
  232. . 'to avoid unnecessarily downloading too '
  233. . 'large files. URL: ' . $file->url
  234. );
  235. $head = $http->head($file->url);
  236. $headers = $head->getHeader();
  237. $headers = array_change_key_case($headers, CASE_LOWER);
  238. if (array_key_exists('content-type', $headers)) {
  239. $file->mimetype = $headers['content-type'];
  240. } else {
  241. continue;
  242. }
  243. if (array_key_exists('content-length', $headers)) {
  244. $file->size = $headers['content-length'];
  245. }
  246. }
  247. $file->saveFile();
  248. $act->enclosures[] = $file->getEnclosure();
  249. $attachments[] = $file;
  250. } catch (Exception $e) {
  251. // Whatever.
  252. continue;
  253. }
  254. }
  255. }
  256. }
  257. $actobj = new ActivityObject();
  258. $actobj->type = ActivityObject::NOTE;
  259. $actobj->content = strip_tags($content, '<p><b><i><u><a><ul><ol><li>');
  260. // Finally add the activity object to our activity
  261. $act->objects[] = $actobj;
  262. $note = Notice::saveActivity($act, $actor_profile, $options);
  263. // Attachments (last part)
  264. foreach ($attachments as $file) {
  265. File_to_post::processNew($file, $note);
  266. }
  267. return $note;
  268. }
  269. /**
  270. * Validates a note.
  271. *
  272. * @param array $object
  273. * @return bool false if unacceptable for GS but valid ActivityPub object
  274. * @throws Exception if invalid ActivityPub object
  275. * @author Diogo Cordeiro <diogo@fc.up.pt>
  276. */
  277. public static function validate_note(array $object): bool
  278. {
  279. if (!isset($object['id'])) {
  280. common_debug('ActivityPub Notice Validator: Rejected because Object ID was not specified.');
  281. throw new Exception('Object ID not specified.');
  282. } elseif (!filter_var($object['id'], FILTER_VALIDATE_URL)) {
  283. common_debug('ActivityPub Notice Validator: Rejected because Object ID is invalid.');
  284. throw new Exception('Invalid Object ID.');
  285. }
  286. if (!isset($object['type']) || $object['type'] !== 'Note') {
  287. common_debug('ActivityPub Notice Validator: Rejected because of Type.');
  288. throw new Exception('Invalid Object type.');
  289. }
  290. if (isset($object['url']) && !filter_var($object['url'], FILTER_VALIDATE_URL)) {
  291. common_debug('ActivityPub Notice Validator: Rejected because Object URL is invalid.');
  292. throw new Exception('Invalid Object URL.');
  293. }
  294. if (!(isset($object['to']) && isset($object['cc']))) {
  295. common_debug('ActivityPub Notice Validator: Rejected because either Object CC or TO wasn\'t specified.');
  296. throw new Exception('Either Object CC or TO wasn\'t specified.');
  297. }
  298. if (!isset($object['content'])) {
  299. common_debug('ActivityPub Notice Validator: Rejected because Content was not specified (GNU social requires content in notes).');
  300. return false;
  301. }
  302. return true;
  303. }
  304. /**
  305. * Get the original representation URL of a given notice.
  306. *
  307. * @param Notice $notice notice from which to retrieve the URL
  308. * @return string URL
  309. * @throws InvalidUrlException
  310. * @throws Exception
  311. * @author Bruno Casteleiro <brunoccast@fc.up.pt>
  312. * @see note_uri when it's not a generic activity but a object type note
  313. */
  314. public static function getUri(Notice $notice): string
  315. {
  316. if ($notice->isLocal()) {
  317. return common_local_url('apNotice', ['id' => $notice->getID()]);
  318. } else {
  319. return $notice->getUrl();
  320. }
  321. }
  322. /**
  323. * Use this if your Notice is in fact a note
  324. *
  325. * @param int $id
  326. * @return string it's uri
  327. * @author Diogo Cordeiro <diogo@fc.up.pt>
  328. * @see getUri for every other activity that aren't objects of a certain type like note
  329. */
  330. public static function note_uri(int $id): string
  331. {
  332. return common_root_url() . 'object/note/' . $id;
  333. }
  334. /**
  335. * Extract note policy type from note targets.
  336. *
  337. * @param array $note received Note
  338. * @param Profile $actor_profile Note author
  339. * @return int Notice policy type
  340. * @author Bruno Casteleiro <brunoccast@fc.up.pt>
  341. */
  342. public static function getNotePolicyType(array $note, Profile $actor_profile): int
  343. {
  344. $addressee = array_unique(array_merge($note['to'], $note['cc']));
  345. if (in_array('https://www.w3.org/ns/activitystreams#Public', $addressee)) {
  346. return $actor_profile->isLocal() ? Notice::LOCAL_PUBLIC : Notice::REMOTE;
  347. } else {
  348. // either an unlisted or followers-only note, we'll handle
  349. // both as a GATEWAY notice since this type is not visible
  350. // from the public timelines, hence partially enough while
  351. // we don't have subscription_policy working.
  352. return Notice::GATEWAY;
  353. }
  354. }
  355. }