]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apifriendshipsshow.php
8850496c792fe627d8da8eaadab852d779f0f140
[quix0rs-gnu-social.git] / actions / apifriendshipsshow.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show information about the relationship 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    Zach Copley <zach@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/apibareauth.php';
35
36 /**
37  * Outputs detailed information about the relationship between two users
38  *
39  * @category API
40  * @package  StatusNet
41  * @author   Zach Copley <zach@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  */
45
46 class ApiFriendshipsShowAction extends ApiBareAuthAction
47 {
48     var $user   = null;
49     var $source = null;
50     var $target = null;
51
52     /**
53      * Take arguments for running
54      *
55      * @param array $args $_REQUEST args
56      *
57      * @return boolean success flag
58      *
59      */
60
61     function prepare($args)
62     {
63         parent::prepare($args);
64
65         $source_id          = (int)$this->trimmed('source_id');
66         $source_screen_name = $this->trimmed('source_screen_name');
67         $target_id          = (int)$this->trimmed('target_id');
68         $target_screen_name = $this->trimmed('target_screen_name');
69     
70         if (!empty($source_id)) {
71             $this->source = User::staticGet($source_id);
72         } elseif (!empty($source_screen_name)) {
73             $this->source = User::staticGet('nickname', $source_screen_name);
74         } else {
75             $this->source = $this->auth_user;
76         }
77
78         if (!empty($target_id)) {
79             $this->target = User::staticGet($target_id);
80         } elseif (!empty($target_screen_name)) {
81             $this->target = User::staticGet('nickname', $target_screen_name);
82         }
83
84         return true;
85     }
86
87
88     /**
89      * Determines whether this API resource requires auth.  Overloaded to look
90      * return true in case source_id and source_screen_name are both empty
91      *
92      * @return boolean true or false
93      */
94        
95     function requiresAuth()
96     {
97         if (common_config('site', 'private')) {
98             return true;
99         }
100
101         $source_id          = $this->trimmed('source_id');
102         $source_screen_name = $this->trimmed('source_screen_name');
103
104         if (empty($source_id) && empty($source_screen_name)) {
105             return true;
106         }
107
108         return false;
109     }
110
111     /**
112      * Handle the request
113      *
114      * Check the format and show the user info
115      *
116      * @param array $args $_REQUEST data (unused)
117      *
118      * @return void
119      */
120
121     function handle($args)
122     {
123         parent::handle($args);
124
125         if (!in_array($this->format, array('xml', 'json'))) {
126             $this->clientError(_('API method not found!'), 404);
127             return;
128         }
129         
130         if (empty($this->source)) {
131             $this->clientError(
132                 _('Could not determine source user.'),
133                 404
134              );
135             return;
136         }
137               
138         if (empty($this->target)) {
139             $this->clientError(
140                 _('Could not find target user.'),
141                 404
142             );
143             return;
144         }
145         
146         $result = $this->twitterRelationshipArray($this->source, $this->target);
147
148         switch ($this->format) {
149         case 'xml':
150             $this->initDocument('xml');
151             $this->showTwitterXmlRelationship($result[relationship]);
152             $this->endDocument('xml');
153             break;
154         case 'json':
155             $this->initDocument('json');
156             print json_encode($result);
157             $this->endDocument('json');
158             break;
159         default:
160             break;
161         }
162         
163     }
164
165 }