Activitypub_delete.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 delete 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_delete
  35. {
  36. /**
  37. * Generates an ActivityStreams 2.0 representation of a Delete
  38. *
  39. * @param Notice $object
  40. * @return array pretty array to be used in a response
  41. * @author Diogo Cordeiro <diogo@fc.up.pt>
  42. */
  43. public static function delete_to_array($object): array
  44. {
  45. if ($object instanceof Notice) {
  46. return Activitypub_notice::notice_to_array($object);
  47. } else if ($object instanceof Profile) {
  48. $actor_uri = $object->getUri();
  49. return [
  50. '@context' => 'https://www.w3.org/ns/activitystreams',
  51. 'id' => $actor_uri . '#delete',
  52. 'type' => 'Delete',
  53. 'to' => ['https://www.w3.org/ns/activitystreams#Public'],
  54. 'actor' => $actor_uri,
  55. 'object' => $object
  56. ];
  57. } else {
  58. throw new InvalidArgumentException();
  59. }
  60. }
  61. /**
  62. * Verifies if a given object is acceptable for a Delete Activity.
  63. *
  64. * @param array|string $object
  65. * @return bool
  66. * @throws Exception
  67. * @author Bruno Casteleiro <brunoccast@fc.up.pt>
  68. */
  69. public static function validate_object($object): bool
  70. {
  71. if (!is_array($object)) {
  72. if (!filter_var($object, FILTER_VALIDATE_URL)) {
  73. throw new Exception('Object is not a valid Object URI for Activity.');
  74. }
  75. } else {
  76. if (!isset($object['type'])) {
  77. throw new Exception('Object type was not specified for Delete Activity.');
  78. }
  79. if ($object['type'] !== "Tombstone" && $object['type'] !== "Person") {
  80. throw new Exception('Invalid Object type for Delete Activity.');
  81. }
  82. if (!isset($object['id'])) {
  83. throw new Exception('Object id was not specified for Delete Activity.');
  84. }
  85. }
  86. return true;
  87. }
  88. }