2008-06-18 14:26:38 +09:00
< ? php
/*
* Laconica - a distributed open - source microblogging tool
* Copyright ( C ) 2008 , Controlez - Vous , Inc .
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
*/
if ( ! defined ( 'LACONICA' )) { exit ( 1 ); }
require_once ( INSTALLDIR . '/lib/openid.php' );
class FinishopenidloginAction extends Action {
function handle ( $args ) {
parent :: handle ( $args );
if ( common_logged_in ()) {
2008-07-08 18:45:31 +09:00
common_user_error ( _ ( 'Already logged in.' ));
2008-06-18 14:26:38 +09:00
} else if ( $_SERVER [ 'REQUEST_METHOD' ] == 'POST' ) {
2008-08-29 12:48:54 +09:00
$token = $this -> trimmed ( 'token' );
if ( ! $token || $token != common_session_token ()) {
$this -> show_form ( _ ( 'There was a problem with your session token. Try again, please.' ));
return ;
}
2008-06-18 14:56:57 +09:00
if ( $this -> arg ( 'create' )) {
2008-06-20 02:32:25 +09:00
if ( ! $this -> boolean ( 'license' )) {
2008-07-08 18:45:31 +09:00
$this -> show_form ( _ ( 'You can\'t register if you don\'t agree to the license.' ),
2008-06-20 02:32:25 +09:00
$this -> trimmed ( 'newname' ));
return ;
}
2008-06-18 14:26:38 +09:00
$this -> create_new_user ();
2008-06-18 14:56:57 +09:00
} else if ( $this -> arg ( 'connect' )) {
2008-06-18 14:26:38 +09:00
$this -> connect_user ();
} else {
2008-06-18 14:53:49 +09:00
common_debug ( print_r ( $this -> args , true ), __FILE__ );
2008-07-08 18:45:31 +09:00
$this -> show_form ( _ ( 'Something weird happened.' ),
2008-06-18 14:26:38 +09:00
$this -> trimmed ( 'newname' ));
}
} else {
$this -> try_login ();
}
}
2008-06-20 02:32:25 +09:00
function show_top ( $error = NULL ) {
2008-06-18 14:26:38 +09:00
if ( $error ) {
common_element ( 'div' , array ( 'class' => 'error' ), $error );
} else {
global $config ;
common_element ( 'div' , 'instructions' ,
2008-07-13 13:46:08 +09:00
sprintf ( _ ( 'This is the first time you\'ve logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one.' ), $config [ 'site' ][ 'name' ]));
2008-07-02 22:15:07 +09:00
}
2008-06-20 02:32:25 +09:00
}
2008-07-02 22:15:07 +09:00
2008-06-20 02:32:25 +09:00
function show_form ( $error = NULL , $username = NULL ) {
2008-07-08 18:51:13 +09:00
common_show_header ( _ ( 'OpenID Account Setup' ), NULL , $error ,
2008-06-20 02:32:25 +09:00
array ( $this , 'show_top' ));
2008-07-02 22:15:07 +09:00
common_element_start ( 'form' , array ( 'method' => 'post' ,
2008-06-18 14:26:38 +09:00
'id' => 'account_connect' ,
'action' => common_local_url ( 'finishopenidlogin' )));
2008-08-29 12:48:54 +09:00
common_hidden ( 'token' , common_session_token ());
2008-06-18 14:26:38 +09:00
common_element ( 'h2' , NULL ,
2008-07-08 18:45:31 +09:00
_ ( 'Create new account' ));
2008-06-18 14:26:38 +09:00
common_element ( 'p' , NULL ,
2008-07-08 18:45:31 +09:00
_ ( 'Create a new user with this nickname.' ));
common_input ( 'newname' , _ ( 'New nickname' ),
2008-06-18 14:26:38 +09:00
( $username ) ? $username : '' ,
2008-07-08 18:45:31 +09:00
_ ( '1-64 lowercase letters or numbers, no punctuation or spaces' ));
2008-06-20 02:32:25 +09:00
common_element_start ( 'p' );
common_element ( 'input' , array ( 'type' => 'checkbox' ,
'id' => 'license' ,
'name' => 'license' ,
'value' => 'true' ));
2008-07-08 18:45:31 +09:00
common_text ( _ ( 'My text and files are available under ' ));
2008-06-20 02:32:25 +09:00
common_element ( 'a' , array ( href => common_config ( 'license' , 'url' )),
common_config ( 'license' , 'title' ));
2008-07-08 18:45:31 +09:00
common_text ( _ ( ' except this private data: password, email address, IM address, phone number.' ));
2008-06-20 02:32:25 +09:00
common_element_end ( 'p' );
2008-07-08 18:45:31 +09:00
common_submit ( 'create' , _ ( 'Create' ));
2008-06-18 14:26:38 +09:00
common_element ( 'h2' , NULL ,
2008-07-08 18:45:31 +09:00
_ ( 'Connect existing account' ));
2008-06-18 14:26:38 +09:00
common_element ( 'p' , NULL ,
2008-07-13 13:46:08 +09:00
_ ( 'If you already have an account, login with your username and password to connect it to your OpenID.' ));
2008-07-08 18:45:31 +09:00
common_input ( 'nickname' , _ ( 'Existing nickname' ));
common_password ( 'password' , _ ( 'Password' ));
common_submit ( 'connect' , _ ( 'Connect' ));
2008-06-18 14:26:38 +09:00
common_element_end ( 'form' );
common_show_footer ();
}
function try_login () {
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
$consumer = oid_consumer ();
$response = $consumer -> complete ( common_local_url ( 'finishopenidlogin' ));
if ( $response -> status == Auth_OpenID_CANCEL ) {
2008-07-08 18:45:31 +09:00
$this -> message ( _ ( 'OpenID authentication cancelled.' ));
2008-06-18 14:26:38 +09:00
return ;
} else if ( $response -> status == Auth_OpenID_FAILURE ) {
// Authentication failed; display the error message.
2008-07-08 18:45:31 +09:00
$this -> message ( sprintf ( _ ( 'OpenID authentication failed: %s' ), $response -> message ));
2008-06-18 14:26:38 +09:00
} else if ( $response -> status == Auth_OpenID_SUCCESS ) {
// This means the authentication succeeded; extract the
// identity URL and Simple Registration data (if it was
// returned).
$display = $response -> getDisplayIdentifier ();
$canonical = ( $response -> endpoint -> canonicalID ) ?
$response -> endpoint -> canonicalID : $response -> getDisplayIdentifier ();
$sreg_resp = Auth_OpenID_SRegResponse :: fromSuccessResponse ( $response );
if ( $sreg_resp ) {
$sreg = $sreg_resp -> contents ();
}
2008-06-19 22:47:10 +09:00
$user = oid_get_user ( $canonical );
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( $user ) {
2008-06-19 22:47:10 +09:00
oid_set_last ( $display );
2008-07-11 00:18:42 +09:00
# XXX: commented out at @edd's request until better
# control over how data flows from OpenID provider.
# oid_update_user($user, $sreg);
2008-06-18 14:26:38 +09:00
common_set_user ( $user -> nickname );
2008-06-24 11:52:34 +09:00
common_real_login ( true );
2008-06-18 14:26:38 +09:00
$this -> go_home ( $user -> nickname );
} else {
$this -> save_values ( $display , $canonical , $sreg );
$this -> show_form ( NULL , $this -> best_new_nickname ( $display , $sreg ));
}
}
}
function message ( $msg ) {
2008-07-08 18:45:31 +09:00
common_show_header ( _ ( 'OpenID Login' ));
2008-06-18 14:26:38 +09:00
common_element ( 'p' , NULL , $msg );
common_show_footer ();
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function save_values ( $display , $canonical , $sreg ) {
common_ensure_session ();
$_SESSION [ 'openid_display' ] = $display ;
2008-07-02 22:15:07 +09:00
$_SESSION [ 'openid_canonical' ] = $canonical ;
$_SESSION [ 'openid_sreg' ] = $sreg ;
2008-06-18 14:26:38 +09:00
}
2008-06-18 15:05:49 +09:00
function get_saved_values () {
2008-06-18 14:26:38 +09:00
return array ( $_SESSION [ 'openid_display' ],
$_SESSION [ 'openid_canonical' ],
$_SESSION [ 'openid_sreg' ]);
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:58:36 +09:00
function create_new_user () {
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
$nickname = $this -> trimmed ( 'newname' );
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( ! Validate :: string ( $nickname , array ( 'min_length' => 1 ,
'max_length' => 64 ,
'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER ))) {
2008-07-13 14:37:48 +09:00
$this -> show_form ( _ ( 'Nickname must have only lowercase letters and numbers and no spaces.' ));
2008-06-18 14:26:38 +09:00
return ;
}
2008-06-23 03:04:37 +09:00
if ( ! User :: allowed_nickname ( $nickname )) {
2008-07-08 18:45:31 +09:00
$this -> show_form ( _ ( 'Nickname not allowed.' ));
2008-06-23 03:04:37 +09:00
return ;
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( User :: staticGet ( 'nickname' , $nickname )) {
2008-07-08 18:45:31 +09:00
$this -> show_form ( _ ( 'Nickname already in use. Try another one.' ));
2008-06-18 14:26:38 +09:00
return ;
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
list ( $display , $canonical , $sreg ) = $this -> get_saved_values ();
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( ! $display || ! $canonical ) {
2008-07-08 18:45:31 +09:00
common_server_error ( _ ( 'Stored OpenID not found.' ));
2008-06-18 14:26:38 +09:00
return ;
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
# Possible race condition... let's be paranoid
2008-07-02 22:15:07 +09:00
2008-06-19 22:47:10 +09:00
$other = oid_get_user ( $canonical );
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( $other ) {
2008-07-08 18:45:31 +09:00
common_server_error ( _ ( 'Creating new account for OpenID that already has a user.' ));
2008-06-18 14:26:38 +09:00
return ;
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( $sreg [ 'country' ]) {
if ( $sreg [ 'postcode' ]) {
# XXX: use postcode to get city and region
# XXX: also, store postcode somewhere -- it's valuable!
2008-08-14 09:20:38 +09:00
$location = $sreg [ 'postcode' ] . ', ' . $sreg [ 'country' ];
2008-06-18 14:26:38 +09:00
} else {
2008-08-14 09:20:38 +09:00
$location = $sreg [ 'country' ];
2008-06-18 14:26:38 +09:00
}
}
2008-08-14 09:20:38 +09:00
if ( $sreg [ 'fullname' ] && strlen ( $sreg [ 'fullname' ]) <= 255 ) {
$fullname = $sreg [ 'fullname' ];
2008-06-18 14:26:38 +09:00
}
2008-08-14 09:20:38 +09:00
2008-06-18 14:26:38 +09:00
if ( $sreg [ 'email' ] && Validate :: email ( $sreg [ 'email' ], true )) {
2008-08-14 09:20:38 +09:00
$email = $sreg [ 'email' ];
2008-06-18 14:26:38 +09:00
}
2008-07-02 22:15:07 +09:00
2008-08-14 09:20:38 +09:00
# XXX: add language
# XXX: add timezone
$user = User :: register ( array ( 'nickname' => $nickname ,
'email' => $email ,
'fullname' => $fullname ,
'location' => $location ));
2008-06-18 14:26:38 +09:00
2008-06-18 21:39:41 +09:00
$result = oid_link_user ( $user -> id , $canonical , $display );
2008-08-14 09:20:38 +09:00
oid_set_last ( $display );
2008-06-18 15:11:17 +09:00
common_set_user ( $user -> nickname );
2008-06-24 11:52:34 +09:00
common_real_login ( true );
2008-06-18 15:20:59 +09:00
common_redirect ( common_local_url ( 'showstream' , array ( 'nickname' => $user -> nickname )));
2008-06-18 14:26:38 +09:00
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function connect_user () {
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
$nickname = $this -> trimmed ( 'nickname' );
$password = $this -> trimmed ( 'password' );
if ( ! common_check_user ( $nickname , $password )) {
2008-07-08 18:45:31 +09:00
$this -> show_form ( _ ( 'Invalid username or password.' ));
2008-06-18 14:26:38 +09:00
return ;
}
# They're legit!
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
$user = User :: staticGet ( 'nickname' , $nickname );
list ( $display , $canonical , $sreg ) = $this -> get_saved_values ();
if ( ! $display || ! $canonical ) {
2008-07-08 18:45:31 +09:00
common_server_error ( _ ( 'Stored OpenID not found.' ));
2008-06-18 14:26:38 +09:00
return ;
}
2008-07-02 22:15:07 +09:00
2008-06-18 20:43:10 +09:00
$result = oid_link_user ( $user -> id , $canonical , $display );
2008-07-02 22:15:07 +09:00
2008-06-18 20:43:10 +09:00
if ( ! $result ) {
2008-07-08 18:45:31 +09:00
common_server_error ( _ ( 'Error connecting user to OpenID.' ));
2008-06-18 14:26:38 +09:00
return ;
}
2008-07-02 22:15:07 +09:00
2008-06-19 22:51:48 +09:00
oid_update_user ( $user , $sreg );
2008-06-19 22:47:10 +09:00
oid_set_last ( $display );
2008-06-18 14:26:38 +09:00
common_set_user ( $user -> nickname );
2008-06-24 11:52:34 +09:00
common_real_login ( true );
2008-06-18 14:26:38 +09:00
$this -> go_home ( $user -> nickname );
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function go_home ( $nickname ) {
$url = common_get_returnto ();
if ( $url ) {
# We don't have to return to it again
common_set_returnto ( NULL );
} else {
$url = common_local_url ( 'all' ,
array ( 'nickname' =>
$nickname ));
}
common_redirect ( $url );
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function best_new_nickname ( $display , $sreg ) {
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
# Try the passed-in nickname
2008-06-18 15:11:17 +09:00
if ( $sreg [ 'nickname' ]) {
$nickname = $this -> nicknamize ( $sreg [ 'nickname' ]);
if ( $this -> is_new_nickname ( $nickname )) {
return $nickname ;
}
2008-06-18 14:26:38 +09:00
}
# Try the full name
if ( $sreg [ 'fullname' ]) {
$fullname = $this -> nicknamize ( $sreg [ 'fullname' ]);
if ( $this -> is_new_nickname ( $fullname )) {
return $fullname ;
}
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
# Try the URL
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
$from_url = $this -> openid_to_nickname ( $display );
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
if ( $from_url && $this -> is_new_nickname ( $from_url )) {
return $from_url ;
}
# XXX: others?
return NULL ;
}
function is_new_nickname ( $str ) {
if ( ! Validate :: string ( $str , array ( 'min_length' => 1 ,
'max_length' => 64 ,
'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER ))) {
return false ;
2008-07-02 22:15:07 +09:00
}
2008-06-23 03:15:50 +09:00
if ( ! User :: allowed_nickname ( $str )) {
2008-06-23 03:04:37 +09:00
return false ;
}
2008-06-18 14:26:38 +09:00
if ( User :: staticGet ( 'nickname' , $str )) {
return false ;
}
return true ;
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function openid_to_nickname ( $openid ) {
if ( Auth_Yadis_identifierScheme ( $openid ) == 'XRI' ) {
return $this -> xri_to_nickname ( $openid );
} else {
return $this -> url_to_nickname ( $openid );
}
}
# We try to use an OpenID URL as a legal Laconica user name in this order
# 1. Plain hostname, like http://evanp.myopenid.com/
# 2. One element in path, like http://profile.typekey.com/EvanProdromou/
# or http://getopenid.com/evanprodromou
function url_to_nickname ( $openid ) {
static $bad = array ( 'query' , 'user' , 'password' , 'port' , 'fragment' );
$parts = parse_url ( $openid );
# If any of these parts exist, this won't work
foreach ( $bad as $badpart ) {
if ( array_key_exists ( $badpart , $parts )) {
return NULL ;
}
}
# We just have host and/or path
# If it's just a host...
if ( array_key_exists ( 'host' , $parts ) &&
( ! array_key_exists ( 'path' , $parts ) || strcmp ( $parts [ 'path' ], '/' ) == 0 ))
{
$hostparts = explode ( '.' , $parts [ 'host' ]);
# Try to catch common idiom of nickname.service.tld
if (( count ( $hostparts ) > 2 ) &&
( strlen ( $hostparts [ count ( $hostparts ) - 2 ]) > 3 ) && # try to skip .co.uk, .com.au
( strcmp ( $hostparts [ 0 ], 'www' ) != 0 ))
{
return $this -> nicknamize ( $hostparts [ 0 ]);
} else {
# Do the whole hostname
return $this -> nicknamize ( $parts [ 'host' ]);
}
} else {
if ( array_key_exists ( 'path' , $parts )) {
# Strip starting, ending slashes
$path = preg_replace ( '@/$@' , '' , $parts [ 'path' ]);
$path = preg_replace ( '@^/@' , '' , $path );
if ( strpos ( $path , '/' ) === false ) {
return $this -> nicknamize ( $path );
}
}
}
return NULL ;
}
function xri_to_nickname ( $xri ) {
$base = $this -> xri_base ( $xri );
if ( ! $base ) {
return NULL ;
} else {
# =evan.prodromou
# or @gratis*evan.prodromou
$parts = explode ( '*' , substr ( $base , 1 ));
return $this -> nicknamize ( array_pop ( $parts ));
}
}
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function xri_base ( $xri ) {
if ( substr ( $xri , 0 , 6 ) == 'xri://' ) {
return substr ( $xri , 6 );
} else {
return $xri ;
}
}
# Given a string, try to make it work as a nickname
2008-07-02 22:15:07 +09:00
2008-06-18 14:26:38 +09:00
function nicknamize ( $str ) {
$str = preg_replace ( '/\W/' , '' , $str );
return strtolower ( $str );
}
}