Activitypub_delete.php 3.0 KB

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