]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/openidserver.php
Moved the public XRDS from the OpenID plugin to core
[quix0rs-gnu-social.git] / plugins / OpenID / openidserver.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Settings for OpenID
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  Settings
23  * @package   StatusNet
24  * @author   Craig Andrews <candrews@integralblue.com>
25  * @copyright 2008-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') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/action.php';
35 require_once INSTALLDIR.'/plugins/OpenID/openid.php';
36
37 /**
38  * Settings for OpenID
39  *
40  * Lets users add, edit and delete OpenIDs from their account
41  *
42  * @category Settings
43  * @package  StatusNet
44  * @author   Craig Andrews <candrews@integralblue.com>
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
49 class OpenidserverAction extends Action
50 {
51
52     function handle($args)
53     {
54         parent::handle($args);
55         $oserver = oid_server();
56         $request = $oserver->decodeRequest();
57         if (in_array($request->mode, array('checkid_immediate',
58             'checkid_setup'))) {
59             $cur = common_current_user();
60             error_log("Request identity: " . $request->identity);
61             if(!$cur){
62                 /* Go log in, and then come back. */
63                 common_set_returnto($_SERVER['REQUEST_URI']);
64                 common_redirect(common_local_url('login'));
65                 return;
66             }else if(common_profile_url($cur->nickname) == $request->identity || $request->idSelect()){
67                 $response = &$request->answer(true, null, common_profile_url($cur->nickname));
68             } else if ($request->immediate) {
69                 $response = &$request->answer(false);
70             } else {
71                 //invalid
72                 $this->clientError(sprintf(_('You are not authorized to use the identity %s'),$request->identity),$code=403);
73             }
74         } else {
75             $response = &$oserver->handleRequest($request);
76         }
77
78         if($response){
79             $webresponse = $oserver->encodeResponse($response);
80
81             if ($webresponse->code != AUTH_OPENID_HTTP_OK) {
82                 header(sprintf("HTTP/1.1 %d ", $webresponse->code),
83                        true, $webresponse->code);
84             }
85
86             if($webresponse->headers){
87                 foreach ($webresponse->headers as $k => $v) {
88                     header("$k: $v");
89                 }
90             }
91             $this->raw($webresponse->body);
92         }else{
93             $this->clientError(_('Just an OpenID provider. Nothing to see here, move along...'),$code=500);
94         }
95     }
96 }