apiexternalprofileshow.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Show an external user's profile information
  6. *
  7. * PHP version 5
  8. *
  9. * LICENCE: This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * @category API
  23. * @package GNUsocial
  24. * @author Hannes Mannerheim <h@nnesmannerhe.im>
  25. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  26. * @link http://www.gnu.org/software/social/
  27. */
  28. if (!defined('GNUSOCIAL')) { exit(1); }
  29. /**
  30. * Ouputs information for a user, specified by ID or screen name.
  31. * The user's most recent status will be returned inline.
  32. */
  33. class ApiExternalProfileShowAction extends ApiPrivateAuthAction
  34. {
  35. /**
  36. * Take arguments for running
  37. *
  38. * @param array $args $_REQUEST args
  39. *
  40. * @return boolean success flag
  41. *
  42. */
  43. protected function prepare(array $args=array())
  44. {
  45. parent::prepare($args);
  46. if ($this->format !== 'json') {
  47. $this->clientError('This method currently only serves JSON.', 415);
  48. }
  49. $profileurl = urldecode($this->arg('profileurl'));
  50. // TODO: Make this more ... unique!
  51. $this->profile = Profile::getKV('profileurl', $profileurl);
  52. if (!($this->profile instanceof Profile)) {
  53. // TRANS: Client error displayed when requesting profile information for a non-existing profile.
  54. $this->clientError(_('Profile not found.'), 404);
  55. }
  56. return true;
  57. }
  58. /**
  59. * Handle the request
  60. *
  61. * Check the format and show the user info
  62. *
  63. * @param array $args $_REQUEST data (unused)
  64. *
  65. * @return void
  66. */
  67. protected function handle()
  68. {
  69. parent::handle();
  70. $twitter_user = $this->twitterUserArray($this->profile, true);
  71. $this->initDocument('json');
  72. $this->showJsonObjects($twitter_user);
  73. $this->endDocument('json');
  74. }
  75. /**
  76. * Return true if read only.
  77. *
  78. * MAY override
  79. *
  80. * @param array $args other arguments
  81. *
  82. * @return boolean is read only action?
  83. */
  84. function isReadOnly($args)
  85. {
  86. return true;
  87. }
  88. }