From 0ba99486039b10686a520e22ef50385625e5b9ae Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 19 Jun 2008 09:51:48 -0400 Subject: move update_user function to openid.php darcs-hash:20080619135148-84dde-6caaa7f97d2405bc318bfa818c4ac9cbc31cab33.gz --- actions/finishopenidlogin.php | 44 ++----------------------------------------- 1 file changed, 2 insertions(+), 42 deletions(-) (limited to 'actions/finishopenidlogin.php') diff --git a/actions/finishopenidlogin.php b/actions/finishopenidlogin.php index 3a7f9f250..2db941275 100644 --- a/actions/finishopenidlogin.php +++ b/actions/finishopenidlogin.php @@ -108,7 +108,7 @@ class FinishopenidloginAction extends Action { if ($user) { oid_set_last($display); - $this->update_user($user, $sreg); + oid_update_user($user, $sreg); common_set_user($user->nickname); $this->go_home($user->nickname); } else { @@ -124,46 +124,6 @@ class FinishopenidloginAction extends Action { common_show_footer(); } - function update_user($user, $sreg) { - - $profile = $user->getProfile(); - - $orig_profile = clone($profile); - - if ($sreg['fullname'] && strlen($sreg['fullname']) <= 255) { - $profile->fullname = $sreg['fullname']; - } - - if ($sreg['country']) { - if ($sreg['postcode']) { - # XXX: use postcode to get city and region - # XXX: also, store postcode somewhere -- it's valuable! - $profile->location = $sreg['postcode'] . ', ' . $sreg['country']; - } else { - $profile->location = $sreg['country']; - } - } - - # XXX save language if it's passed - # XXX save timezone if it's passed - - if (!$profile->update($orig_profile)) { - common_server_error(_t('Error saving the profile.')); - return; - } - - $orig_user = clone($user); - - if ($sreg['email'] && Validate::email($sreg['email'], true)) { - $user->email = $sreg['email']; - } - - if (!$user->update($orig_user)) { - common_server_error(_t('Error saving the user.')); - return; - } - } - function save_values($display, $canonical, $sreg) { common_ensure_session(); $_SESSION['openid_display'] = $display; @@ -297,7 +257,7 @@ class FinishopenidloginAction extends Action { return; } - $this->update_user($user, $sreg); + oid_update_user($user, $sreg); oid_set_last($display); common_set_user($user->nickname); $this->go_home($user->nickname); -- cgit v1.2.3-54-g00ecf