apifriendshipsexists.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Show whether there is a friendship between two users
  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 Zach Copley <zach@status.net>
  27. * @copyright 2009-2010 StatusNet, Inc.
  28. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  29. * @link http://status.net/
  30. */
  31. if (!defined('STATUSNET')) {
  32. exit(1);
  33. }
  34. /**
  35. * Tests for the existence of friendship between two users. Will return true if
  36. * user_a follows user_b, otherwise will return false.
  37. *
  38. * @category API
  39. * @package StatusNet
  40. * @author Dan Moore <dan@moore.cx>
  41. * @author Evan Prodromou <evan@status.net>
  42. * @author Zach Copley <zach@status.net>
  43. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  44. * @link http://status.net/
  45. */
  46. class ApiFriendshipsExistsAction extends ApiPrivateAuthAction
  47. {
  48. var $profile_a = null;
  49. var $profile_b = null;
  50. /**
  51. * Take arguments for running
  52. *
  53. * @param array $args $_REQUEST args
  54. *
  55. * @return boolean success flag
  56. */
  57. function prepare($args)
  58. {
  59. parent::prepare($args);
  60. $this->profile_a = $this->getTargetProfile($this->trimmed('user_a'));
  61. $this->profile_b = $this->getTargetProfile($this->trimmed('user_b'));
  62. return true;
  63. }
  64. /**
  65. * Handle the request
  66. *
  67. * Check the format and show the user info
  68. *
  69. * @param array $args $_REQUEST data (unused)
  70. *
  71. * @return void
  72. */
  73. function handle($args)
  74. {
  75. parent::handle($args);
  76. if (empty($this->profile_a) || empty($this->profile_b)) {
  77. $this->clientError(
  78. // TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
  79. _('Two valid IDs or nick names must be supplied.'),
  80. 400,
  81. $this->format
  82. );
  83. return;
  84. }
  85. $result = Subscription::exists($this->profile_a, $this->profile_b);
  86. switch ($this->format) {
  87. case 'xml':
  88. $this->initDocument('xml');
  89. $this->element('friends', null, $result);
  90. $this->endDocument('xml');
  91. break;
  92. case 'json':
  93. $this->initDocument('json');
  94. print json_encode($result);
  95. $this->endDocument('json');
  96. break;
  97. default:
  98. break;
  99. }
  100. }
  101. /**
  102. * Return true if read only.
  103. *
  104. * MAY override
  105. *
  106. * @param array $args other arguments
  107. *
  108. * @return boolean is read only action?
  109. */
  110. function isReadOnly($args)
  111. {
  112. return true;
  113. }
  114. }