apactorprofile.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. * Actor's profile (Local users only)
  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 apActorProfileAction extends ManagedAction
  35. {
  36. protected $needLogin = false;
  37. protected $canPost = true;
  38. /**
  39. * Handle the Actor Profile request
  40. *
  41. * @return void
  42. * @throws InvalidUrlException
  43. * @throws ServerException
  44. * @author Diogo Cordeiro <diogo@fc.up.pt>
  45. */
  46. protected function handle()
  47. {
  48. if (!empty($id = $this->trimmed('id'))) {
  49. try {
  50. $profile = Profile::getByID($id);
  51. } catch (Exception $e) {
  52. ActivityPubReturn::error('Invalid Actor URI.', 404);
  53. }
  54. unset($id);
  55. } else {
  56. try {
  57. $profile = User::getByNickname($this->trimmed('nickname'))->getProfile();
  58. } catch (Exception $e) {
  59. ActivityPubReturn::error('Invalid username.', 404);
  60. }
  61. }
  62. if (!$profile->isLocal()) {
  63. ActivityPubReturn::error("This is not a local user.", 403);
  64. }
  65. $res = Activitypub_profile::profile_to_array($profile);
  66. ActivityPubReturn::answer($res, 200);
  67. }
  68. }