]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/finishaddopenid.php
79c99e6b17157864399e384bb843b23017d463c1
[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                         // This means the authentication succeeded; extract the
49                         // identity URL and Simple Registration data (if it was
50                         // returned).
51                         $display = $response->getDisplayIdentifier();
52                         $canonical = ($response->endpoint->canonicalID) ?
53                           $response->endpoint->canonicalID : $response->getDisplayIdentifier();
54
55                         $sreg_resp = Auth_OpenID_SRegResponse::fromSuccessResponse($response);
56
57                         if ($sreg_resp) {
58                                 $sreg = $sreg_resp->contents();
59                         }
60
61                         $user = $this->get_user($canonical);
62                         
63                         if ($user) {
64                                 $this->message(_t('This OpenID is already associated with user "') . $user->nickname . _t('"'));
65                         } else {
66                                 $user = common_current_user();
67                                 $this->connect_user($user, $display, $canonical);
68                                 if ($sreg) {
69                                         $this->update_user($user, $sreg);
70                                 }
71                                 common_redirect(common_local_url('openidsettings'));
72                         }
73                 }
74         }
75
76         function message($msg) {
77                 common_show_header(_t('OpenID Login'));
78                 common_element('p', NULL, $msg);
79                 common_show_footer();
80         }
81         
82         function get_user($canonical) {
83                 $user = NULL;
84                 $oid = User_openid::staticGet('canonical', $canonical);
85                 if ($oid) {
86                         $user = User::staticGet('id', $oid->user_id);
87                 }
88                 return $user;
89         }
90
91         function update_user($user, $sreg) {
92                 
93                 $profile = $user->getProfile();
94
95                 $orig_profile = clone($profile);
96                 
97                 if ($sreg['fullname'] && strlen($sreg['fullname']) <= 255) {
98                         $profile->fullname = $sreg['fullname'];
99                 }
100                 
101                 if ($sreg['country']) {
102                         if ($sreg['postcode']) {
103                                 # XXX: use postcode to get city and region
104                                 # XXX: also, store postcode somewhere -- it's valuable!
105                                 $profile->location = $sreg['postcode'] . ', ' . $sreg['country'];
106                         } else {
107                                 $profile->location = $sreg['country'];
108                         }
109                 }
110
111                 # XXX save language if it's passed
112                 # XXX save timezone if it's passed
113                 
114                 if (!$profile->update($orig_profile)) {
115                         common_server_error(_t('Error saving the profile.'));
116                         return;
117                 }
118
119                 $orig_user = clone($user);
120                 
121                 if ($sreg['email'] && Validate::email($sreg['email'], true)) {
122                         $user->email = $sreg['email'];
123                 }
124                 
125                 if (!$user->update($orig_user)) {
126                         common_server_error(_t('Error saving the user.'));
127                         return;
128                 }
129         }
130         
131         function connect_user($user, $display, $canonical) {
132                 
133                 $oid = new User_openid();
134                 $oid->display = $display;
135                 $oid->canonical = $canonical;
136                 $oid->user_id = $user->id;
137                 $oid->created = DB_DataObject_Cast::dateTime();
138                 
139                 if (!$oid->insert()) {
140                         common_server_error(_t('Error connecting OpenID.'));
141                         return;
142                 }
143         }
144 }