3 * StatusNet, the distributed open-source microblogging tool
5 * Show whether there is a friendship between two users
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.
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.
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/>.
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/
32 if (!defined('STATUSNET')) {
37 * Tests for the existence of friendship between two users. Will return true if
38 * user_a follows user_b, otherwise will return false.
42 * @author Dan Moore <dan@moore.cx>
43 * @author Evan Prodromou <evan@status.net>
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/
48 class ApiFriendshipsExistsAction extends ApiPrivateAuthAction
50 var $profile_a = null;
51 var $profile_b = null;
54 * Take arguments for running
56 * @param array $args $_REQUEST args
58 * @return boolean success flag
60 function prepare($args)
62 parent::prepare($args);
64 $this->profile_a = $this->getTargetProfile($this->trimmed('user_a'));
65 $this->profile_b = $this->getTargetProfile($this->trimmed('user_b'));
73 * Check the format and show the user info
75 * @param array $args $_REQUEST data (unused)
79 function handle($args)
81 parent::handle($args);
83 if (empty($this->profile_a) || empty($this->profile_b)) {
85 // TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
86 _('Two valid IDs or nick names must be supplied.'),
93 $result = Subscription::exists($this->profile_a, $this->profile_b);
95 switch ($this->format) {
97 $this->initDocument('xml');
98 $this->element('friends', null, $result);
99 $this->endDocument('xml');
102 $this->initDocument('json');
103 print json_encode($result);
104 $this->endDocument('json');
112 * Return true if read only.
116 * @param array $args other arguments
118 * @return boolean is read only action?
120 function isReadOnly($args)