Jifty::Plugin::OpenID::Dispatcher - Dispatcher for OpenID plugin


Jifty-Plugin-OpenID documentation Contained in the Jifty-Plugin-OpenID distribution.

Index


Code Index:

NAME

Top

Jifty::Plugin::OpenID::Dispatcher - Dispatcher for OpenID plugin

DESCRIPTION

Top

Dispatcher for Jifty::Plugin::OpenID. Handles a lot of the work.


Jifty-Plugin-OpenID documentation Contained in the Jifty-Plugin-OpenID distribution.

use strict;
use warnings;

package Jifty::Plugin::OpenID::Dispatcher;
use Jifty::Dispatcher -base;

before qr'^/(?:openid/link)' => run {
    tangent('/openid/login') unless (Jifty->web->current_user->id)
};

before qr'^/openid/login' => run {
    Jifty->api->allow('AuthenticateOpenID');
    set action => Jifty->web->new_action(
        class   => 'AuthenticateOpenID',
        moniker => 'authenticateopenid'
    );
};

before qr'^/openid/verify' => run {
    Jifty->api->allow('VerifyOpenID');
    Jifty->web->request->add_action(
        class   => 'VerifyOpenID',
        moniker => 'verifyopenid'
    );
};

on 'openid/verify_and_link' => run {
    my $result = Jifty->web->response->result('verifyopenid');
    my $user   = Jifty->web->current_user;
    if ( defined $result and $result->success and $user->id ) {
        my $openid = $result->content('openid');
        my ( $ret, $msg ) = $user->user_object->validate_openid( $openid );

        if ( not $ret ) {
            $result->error(_("It looks like someone is already using that OpenID."));
            redirect '/openid/link';
        }
        else {
            $user->user_object->link_to_openid( $openid );
            $result->message(_("The OpenID '%1' has been linked to your account.",$openid));
        }
    }
    redirect '/';
};

on 'openid/verify_and_login' => run {
    my $result = Jifty->web->response->result('verifyopenid');

    if ( defined $result and $result->success ) {
        my $openid = $result->content('openid');
        my $user = Jifty->app_class('CurrentUser')->new( openid => $openid );
        Jifty->log->info("User Class: $user. OpenID: $openid");

        if ( $user->id ) {
            # Set up our login message
            $result->message( _("Welcome back, ") . $user->username . "." );

            # Actually do the signin thing.
            Jifty->web->current_user($user);
            Jifty->web->session->expires( undef );
            Jifty->web->session->set_cookie;

            if(Jifty->web->request->continuation) {
                Jifty->web->request->continuation->call;
            } else {
                redirect '/';
            }
        }
        else {
            # User needs to create account still
            Jifty->web->session->set( openid => $openid );
            Jifty->log->info("got openid: $openid");
            my $Mapping = Jifty->web->session->get('ax_mapping');
            if ($Mapping) {
                # get ns, google set is own ns, usually ext1
                # this need to be provided by csr
                my $signed = get('openid.signed');
                my $ns = $1 if $signed =~ m/ns\.(\w+?),/;
                # get values
                my $AX=();
                foreach my $param ( split ',', Jifty->web->session->get('ax_values') ) {
                    $AX->{$param} = get('openid.'.$ns.'.'.$param);
                };
                # map values
                foreach my $param (keys %$Mapping ) {
                    my $val = $Mapping->{$param};
                    $val =~ s/(value\.\w+(\.\d)?)/$AX->{$1}/g;
                    $Mapping->{$param} = $val;
                };
                $Mapping->{openid} = $openid;
            };
            my $nick = get('openid.sreg.nickname');
            if ( $nick ) {
                redirect( Jifty::Web::Form::Clickable->new( url => '/openid/create', parameters => { 
                    nickname => $nick, 
                    openid => $openid } ));
            }
            elsif ($Mapping) {
                redirect( Jifty::Web::Form::Clickable->new( url => '/openid/create', parameters => $Mapping ) );
            }
            else {
                redirect( Jifty::Web::Form::Clickable->new( url => '/openid/create' ) );
            }
        }
    }
    else {
        if(Jifty->web->request->continuation) {
            Jifty->web->request->continuation->call;
        } else {
            redirect '/openid/login';
        }
    }
};

on 'openid/create' => run {
    if ( not Jifty->web->session->get('openid') ) {
        redirect '/';
    }

    set action => Jifty->web->new_action( class => 'CreateOpenIDUser', parameters => { openid => Jifty->web->session->get("openid") } );
    set 'next' => Jifty->web->request->continuation ||
                  Jifty::Continuation->new( request => Jifty::Request->new( path => "/" ) );
};

1;