apactorprofile.php 2.5 KB

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