apinbox.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. /**
  3. * GNU social - a federating social network
  4. *
  5. * ActivityPubPlugin implementation for GNU Social
  6. *
  7. * LICENCE: This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * @category Plugin
  21. * @package GNUsocial
  22. * @author Diogo Cordeiro <diogo@fc.up.pt>
  23. * @copyright 2018 Free Software Foundation http://fsf.org
  24. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  25. * @link https://www.gnu.org/software/social/
  26. */
  27. if (!defined('GNUSOCIAL')) {
  28. exit(1);
  29. }
  30. /**
  31. * Inbox Request Handler
  32. *
  33. * @category Plugin
  34. * @package GNUsocial
  35. * @author Diogo Cordeiro <diogo@fc.up.pt>
  36. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  37. * @link http://www.gnu.org/software/social/
  38. */
  39. class apInboxAction extends ManagedAction
  40. {
  41. protected $needLogin = false;
  42. protected $canPost = true;
  43. /**
  44. * Handle the Inbox request
  45. *
  46. * @author Diogo Cordeiro <diogo@fc.up.pt>
  47. * @return void
  48. */
  49. protected function handle()
  50. {
  51. if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
  52. ActivityPubReturn::error('Only POST requests allowed.');
  53. }
  54. common_debug('ActivityPub Inbox: Received a POST request.');
  55. $data = file_get_contents('php://input');
  56. common_debug('ActivityPub Inbox: Request contents: '.$data);
  57. $data = json_decode(file_get_contents('php://input'), true);
  58. if (!isset($data['actor'])) {
  59. ActivityPubReturn::error('Actor not found in the request.');
  60. }
  61. $actor = ActivityPub_explorer::get_profile_from_url($data['actor']);
  62. $actor_public_key = new Activitypub_rsa();
  63. $actor_public_key = $actor_public_key->ensure_public_key($actor);
  64. common_debug('ActivityPub Inbox: HTTP Signature: Validation will now start!');
  65. $headers = $this->get_all_headers();
  66. common_debug('ActivityPub Inbox: Request Headers: '.print_r($headers, true));
  67. // TODO: Validate HTTP Signature, if it fails, attempt once with profile update
  68. common_debug('ActivityPub Inbox: HTTP Signature: Authorized request. Will now start the inbox handler.');
  69. try {
  70. new Activitypub_inbox_handler($data, $actor);
  71. ActivityPubReturn::answer();
  72. } catch (Exception $e) {
  73. ActivityPubReturn::error($e->getMessage());
  74. }
  75. }
  76. /**
  77. * Get all HTTP header key/values as an associative array for the current request.
  78. *
  79. * @author PHP Manual Contributed Notes <joyview@gmail.com>
  80. * @return string[string] The HTTP header key/value pairs.
  81. */
  82. private function get_all_headers()
  83. {
  84. $headers = [];
  85. foreach ($_SERVER as $name => $value) {
  86. if (substr($name, 0, 5) == 'HTTP_') {
  87. $headers[strtolower(str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5))))))] = $value;
  88. }
  89. }
  90. return $headers;
  91. }
  92. }