]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/xrdaction.php
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / lib / xrdaction.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @package OStatusPlugin
22  * @maintainer James Walker <james@status.net>
23  */
24
25 if (!defined('STATUSNET')) {
26     exit(1);
27 }
28
29 class XrdAction extends Action
30 {
31     const PROFILEPAGE = 'http://webfinger.net/rel/profile-page';
32     const UPDATESFROM = 'http://schemas.google.com/g/2010#updates-from';
33     const HCARD = 'http://microformats.org/profile/hcard';
34     
35     public $uri;
36
37     public $user;
38
39     public $xrd;
40
41     function handle()
42     {
43         $nick    = $this->user->nickname;
44         $profile = $this->user->getProfile();
45
46         if (empty($this->xrd)) {
47             $xrd = new XRD();
48         } else {
49             $xrd = $this->xrd;
50         }
51
52         if (empty($xrd->subject)) {
53             $xrd->subject = self::normalize($this->uri);
54         }
55
56         if (Event::handle('StartXrdActionAliases', array(&$xrd, $this->user))) {
57             
58             // Possible aliases for the user
59             
60             $uris = array($this->user->uri, $profile->profileurl);
61             
62             // FIXME: Webfinger generation code should live somewhere on its own
63             
64             $path = common_config('site', 'path');
65             
66             if (empty($path)) {
67                 $uris[] = sprintf('acct:%s@%s', $nick, common_config('site', 'server'));
68             }
69             
70             foreach ($uris as $uri) {
71                 if ($uri != $xrd->subject) {
72                     $xrd->alias[] = $uri;
73                 }
74             }
75             
76             Event::handle('EndXrdActionAliases', array(&$xrd, $this->user));
77         }
78
79         if (Event::handle('StartXrdActionLinks', array(&$xrd, $this->user))) {
80             
81             $xrd->links[] = array('rel' => self::PROFILEPAGE,
82                                   'type' => 'text/html',
83                                   'href' => $profile->profileurl);
84             
85             // hCard
86             $xrd->links[] = array('rel' => self::HCARD,
87                                   'type' => 'text/html',
88                                   'href' => common_local_url('hcard', array('nickname' => $nick)));
89             
90             // XFN
91             $xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11',
92                                   'type' => 'text/html',
93                                   'href' => $profile->profileurl);
94             // FOAF
95             $xrd->links[] = array('rel' => 'describedby',
96                                   'type' => 'application/rdf+xml',
97                                   'href' => common_local_url('foaf',
98                                                              array('nickname' => $nick)));
99             
100             $xrd->links[] = array('rel' => 'http://apinamespace.org/atom',
101                                   'type' => 'application/atomsvc+xml',
102                                   'href' => common_local_url('ApiAtomService', array('id' => $nick)),
103                                   'property' => array(array('type' => 'http://apinamespace.org/atom/username',
104                                                             'value' => $nick)));
105
106             if (common_config('site', 'fancy')) {
107                 $apiRoot = common_path('api/', true);
108             } else {
109                 $apiRoot = common_path('index.php/api/', true);
110             }
111             
112             $xrd->links[] = array('rel' => 'http://apinamespace.org/twitter',
113                                   'href' => $apiRoot,
114                                   'property' => array(array('type' => 'http://apinamespace.org/twitter/username',
115                                                             'value' => $nick)));
116
117             Event::handle('EndXrdActionLinks', array(&$xrd, $this->user));
118         }
119
120         header('Content-type: application/xrd+xml');
121         print $xrd->toXML();
122     }
123     
124     /**
125      * Given a "user id" make sure it's normalized to either a webfinger
126      * acct: uri or a profile HTTP URL.
127      */
128     
129     public static function normalize($user_id)
130     {
131         if (substr($user_id, 0, 5) == 'http:' ||
132             substr($user_id, 0, 6) == 'https:' ||
133             substr($user_id, 0, 5) == 'acct:') {
134             return $user_id;
135         }
136
137         if (strpos($user_id, '@') !== FALSE) {
138             return 'acct:' . $user_id;
139         }
140
141         return 'http://' . $user_id;
142     }
143
144     public static function isWebfinger($user_id)
145     {
146         $uri = self::normalize($user_id);
147
148         return (substr($uri, 0, 5) == 'acct:');
149     }
150
151     /**
152      * Is this action read-only?
153      *
154      * @param array $args other arguments
155      *
156      * @return boolean is read only action?
157      */
158     function isReadOnly($args)
159     {
160         return true;
161     }
162 }