]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/finishaddopenid.php
do some commits
[quix0rs-gnu-social.git] / actions / finishaddopenid.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 require_once(INSTALLDIR.'/lib/openid.php');
23
24 class FinishaddopenidAction extends Action {
25
26         function handle($args) {
27                 parent::handle($args);
28                 if (!common_logged_in()) {
29                         common_user_error(_t('Not logged in.'));
30                 } else {
31                         $this->try_login();
32                 }
33         }
34
35         function try_login() {
36
37                 $consumer =& oid_consumer();
38
39                 $response = $consumer->complete(common_local_url('finishaddopenid'));
40
41                 if ($response->status == Auth_OpenID_CANCEL) {
42                         $this->message(_t('OpenID authentication cancelled.'));
43                         return;
44                 } else if ($response->status == Auth_OpenID_FAILURE) {
45                         // Authentication failed; display the error message.
46                         $this->message(_t('OpenID authentication failed: ') . $response->message);
47                 } else if ($response->status == Auth_OpenID_SUCCESS) {
48                         
49                         $display = $response->getDisplayIdentifier();
50                         $canonical = ($response->endpoint && $response->endpoint->canonicalID) ?
51                           $response->endpoint->canonicalID : $display;
52
53                         $sreg_resp = Auth_OpenID_SRegResponse::fromSuccessResponse($response);
54
55                         if ($sreg_resp) {
56                                 $sreg = $sreg_resp->contents();
57                         }
58                         
59                         $cur =& common_current_user();
60                         common_debug('cur = ' .print_r($cur, TRUE), __FILE__);
61                         $result = oid_link_user($cur->id, $display, $canonical);
62                         
63                         if (!$result) {
64                                 $this->message(_t('Error connecting user.'));
65                                 return;
66                         }
67                         if ($sreg) {
68                                 if (!$this->update_user($cur, $sreg)) {
69                                         $this->message(_t('Error updating profile'));
70                                         return;
71                                 }
72                         }
73                         # success!
74                         common_redirect(common_local_url('openidsettings'));
75                 }
76         }
77
78         function message($msg) {
79                 common_show_header(_t('OpenID Login'));
80                 common_element('p', NULL, $msg);
81                 common_show_footer();
82         }
83
84         function get_user($canonical) {
85                 $user = NULL;
86                 $oid = User_openid::staticGet('canonical', $canonical);
87                 if ($oid) {
88                         $user = User::staticGet('id', $oid->user_id);
89                 }
90                 return $user;
91         }
92
93         function update_user(&$user, $sreg) {
94
95                 $profile =& $user->getProfile();
96
97                 $orig_profile = clone($profile);
98
99                 if ($sreg['fullname'] && strlen($sreg['fullname']) <= 255) {
100                         $profile->fullname = $sreg['fullname'];
101                 }
102
103                 if ($sreg['country']) {
104                         if ($sreg['postcode']) {
105                                 # XXX: use postcode to get city and region
106                                 # XXX: also, store postcode somewhere -- it's valuable!
107                                 $profile->location = $sreg['postcode'] . ', ' . $sreg['country'];
108                         } else {
109                                 $profile->location = $sreg['country'];
110                         }
111                 }
112
113                 # XXX save language if it's passed
114                 # XXX save timezone if it's passed
115
116                 if (!$profile->update($orig_profile)) {
117                         common_server_error(_t('Error saving the profile.'));
118                         return false;
119                 }
120
121                 $orig_user = clone($user);
122
123                 if ($sreg['email'] && Validate::email($sreg['email'], true)) {
124                         $user->email = $sreg['email'];
125                 }
126
127                 if (!$user->update($orig_user)) {
128                         common_server_error(_t('Error saving the user.'));
129                         return false;
130                 }
131                 
132                 return true;
133         }
134 }