Activitypub_create.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 error 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_create
  35. {
  36. /**
  37. * Generates an ActivityPub representation of a Create
  38. *
  39. * @param string $actor
  40. * @param string $uri
  41. * @param mixed $object
  42. * @param bool $directMessage whether it is a private Create activity or not
  43. * @return array pretty array to be used in a response
  44. * @author Diogo Cordeiro <diogo@fc.up.pt>
  45. */
  46. public static function create_to_array(string $actor, string $uri, $object, bool $directMessage = false): array
  47. {
  48. $res = [
  49. '@context' => 'https://www.w3.org/ns/activitystreams',
  50. 'id' => $uri,
  51. 'type' => 'Create',
  52. 'directMessage' => $directMessage,
  53. 'to' => $object['to'],
  54. 'cc' => $object['cc'],
  55. 'actor' => $actor,
  56. 'object' => $object
  57. ];
  58. return $res;
  59. }
  60. /**
  61. * Verifies if a given object is acceptable for a Create Activity.
  62. *
  63. * @param array $object
  64. * @return bool True if acceptable, false if valid but unsupported
  65. * @throws Exception if invalid
  66. * @author Diogo Cordeiro <diogo@fc.up.pt>
  67. */
  68. public static function validate_object($object): bool
  69. {
  70. if (!is_array($object)) {
  71. common_debug('ActivityPub Create Validator: Rejected because of invalid Object format.');
  72. throw new Exception('Invalid Object Format for Create Activity.');
  73. }
  74. if (!isset($object['type'])) {
  75. common_debug('ActivityPub Create Validator: Rejected because of Type.');
  76. throw new Exception('Object type was not specified for Create Activity.');
  77. }
  78. if (isset($object['directMessage']) && !is_bool($object['directMessage'])) {
  79. common_debug('ActivityPub Create Validator: Rejected because Object directMessage is invalid.');
  80. throw new Exception('Invalid Object directMessage.');
  81. }
  82. switch ($object['type']) {
  83. case 'Note':
  84. // Validate data
  85. return Activitypub_notice::validate_note($object);
  86. break;
  87. default:
  88. throw new Exception('This is not a supported Object Type for Create Activity.');
  89. }
  90. return true;
  91. }
  92. /**
  93. * Verify if received note is private (direct).
  94. * Note that we're conformant with the (yet) non-standard directMessage attribute:
  95. * https://github.com/w3c/activitypub/issues/196#issuecomment-304958984
  96. *
  97. * @param array $activity received Create-Note activity
  98. * @return bool true if note is private, false otherwise
  99. * @author Bruno casteleiro <brunoccast@fc.up.pt>
  100. */
  101. public static function isPrivateNote(array $activity): bool
  102. {
  103. if (isset($activity['directMessage'])) {
  104. return $activity['directMessage'];
  105. }
  106. return empty($activity['cc']) && !in_array('https://www.w3.org/ns/activitystreams#Public', $activity['to']);
  107. }
  108. }