]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/openidserver.php
a6b18608d76e44a352262080272aef0429d0feff
[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 class OpenidserverAction extends Action
49 {
50
51     function handle($args)
52     {
53         parent::handle($args);
54         $oserver = oid_server();
55         $request = $oserver->decodeRequest();
56         if (in_array($request->mode, array('checkid_immediate',
57             'checkid_setup'))) {
58             $cur = common_current_user();
59             error_log("Request identity: " . $request->identity);
60             if(!$cur){
61                 /* Go log in, and then come back. */
62                 common_set_returnto($_SERVER['REQUEST_URI']);
63                 common_redirect(common_local_url('login'));
64                 return;
65             }else if(common_profile_url($cur->nickname) == $request->identity || $request->idSelect()){
66                 $response = &$request->answer(true, null, common_profile_url($cur->nickname));
67             } else if ($request->immediate) {
68                 $response = &$request->answer(false);
69             } else {
70                 //invalid
71                 $this->clientError(sprintf(_('You are not authorized to use the identity %s'),$request->identity),$code=403);
72             }
73         } else {
74             $response = &$oserver->handleRequest($request);
75         }
76
77         if($response){
78             $webresponse = $oserver->encodeResponse($response);
79
80             if ($webresponse->code != AUTH_OPENID_HTTP_OK) {
81                 header(sprintf("HTTP/1.1 %d ", $webresponse->code),
82                        true, $webresponse->code);
83             }
84
85             if($webresponse->headers){
86                 foreach ($webresponse->headers as $k => $v) {
87                     header("$k: $v");
88                 }
89             }
90             $this->raw($webresponse->body);
91         }else{
92             $this->clientError(_('Just an OpenID provider. Nothing to see here, move along...'),$code=500);
93         }
94     }
95 }