]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/userauthorization.php
add X-XRDS-Location header
[quix0rs-gnu-social.git] / actions / userauthorization.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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 if (!defined('LACONICA')) { exit(1); }
21
22 class UserauthorizationAction extends Action {
23         function handle($args) {
24                 parent::handle($args);
25                 
26                 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
27                         $this->send_authorization();
28                 } else {
29                         try {
30                                 $req = $this->get_request();
31                                 $server = common_oauth_server();
32                                 $server->get_version($req);
33                                 $consumer = $server->get_consumer($req);
34                                 $token = $server->get_token($req, $consumer, "request");
35                                 $server->check_signature($req, $consumer, $token);
36                         } catch (OAuthException $e) {
37                                 $this->clear_request();
38                                 common_server_error($e->getMessage());
39                                 return;
40                         }
41                         
42                         if (common_logged_in()) {
43                                 $this->show_form($req);
44                         } else {
45                                 # Go log in, and then come back
46                                 common_set_returnto(common_local_url('userauthorization'));
47                                 common_redirect(common_local_url('login'));
48                         }
49                 }
50         }
51         
52         function store_request($req) {
53                 common_ensure_session();
54                 $_SESSION['userauthorizationrequest'] = $req;
55         }
56         
57         function get_request() {
58                 common_ensure_session();                
59                 $req = $_SESSION['userauthorizationrequest'];
60                 if (!$req) {
61                         # XXX: may have an uncaught exception
62                         $req = OAuthRequest::from_request();
63                         if ($req) {
64                                 $this->store_request($req);
65                         }
66                 }
67                 return $req;
68         }
69         
70         function show_form($req) {
71                 common_show_header(_t('Authorize subscription'));
72
73                 common_show_footer();
74         }
75         
76         function send_authorization() {
77                 $req = $this->get_request();
78                 
79                 if (!$req) {
80                         common_user_error(_t('No authorization request!'));
81                         return;
82                 }
83                 
84                 if ($this->boolean('authorize')) {
85                         
86                 }
87         }
88 }