apiusershow.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Show a 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 StatusNet
  24. * @author Dan Moore <dan@moore.cx>
  25. * @author Evan Prodromou <evan@status.net>
  26. * @author mac65 <mac65@mac65.com>
  27. * @author Zach Copley <zach@status.net>
  28. * @copyright 2009 StatusNet, Inc.
  29. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  30. * @link http://status.net/
  31. */
  32. if (!defined('STATUSNET')) {
  33. exit(1);
  34. }
  35. /**
  36. * Ouputs information for a user, specified by ID or screen name.
  37. * The user's most recent status will be returned inline.
  38. *
  39. * @category API
  40. * @package StatusNet
  41. * @author Dan Moore <dan@moore.cx>
  42. * @author Evan Prodromou <evan@status.net>
  43. * @author mac65 <mac65@mac65.com>
  44. * @author Zach Copley <zach@status.net>
  45. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  46. * @link http://status.net/
  47. */
  48. class ApiUserShowAction extends ApiPrivateAuthAction
  49. {
  50. /**
  51. * Take arguments for running
  52. *
  53. * @param array $args $_REQUEST args
  54. *
  55. * @return boolean success flag
  56. *
  57. */
  58. protected function prepare(array $args=array())
  59. {
  60. parent::prepare($args);
  61. $email = $this->arg('email');
  62. // XXX: email field deprecated in Twitter's API
  63. if (!empty($email)) {
  64. $user = User::getKV('email', $email);
  65. } else {
  66. $user = $this->getTargetUser($this->arg('id'));
  67. }
  68. if (!($user instanceof User)) {
  69. // TRANS: Client error displayed when requesting user information for a non-existing user.
  70. $this->clientError(_('User not found.'), 404);
  71. }
  72. $this->target = $user->getProfile();
  73. return true;
  74. }
  75. /**
  76. * Handle the request
  77. *
  78. * Check the format and show the user info
  79. *
  80. * @return void
  81. */
  82. protected function handle()
  83. {
  84. parent::handle();
  85. if (!in_array($this->format, array('xml', 'json'))) {
  86. // TRANS: Client error displayed when coming across a non-supported API method.
  87. $this->clientError(_('API method not found.'), 404);
  88. }
  89. $twitter_user = $this->twitterUserArray($this->target, true);
  90. if ($this->format == 'xml') {
  91. $this->initDocument('xml');
  92. $this->showTwitterXmlUser($twitter_user, 'user', true);
  93. $this->endDocument('xml');
  94. } elseif ($this->format == 'json') {
  95. $this->initDocument('json');
  96. $this->showJsonObjects($twitter_user);
  97. $this->endDocument('json');
  98. }
  99. }
  100. /**
  101. * Return true if read only.
  102. *
  103. * MAY override
  104. *
  105. * @param array $args other arguments
  106. *
  107. * @return boolean is read only action?
  108. */
  109. function isReadOnly($args)
  110. {
  111. return true;
  112. }
  113. }