3 package IkiWiki::Plugin::openid;
10 hook(type => "getopt", id => "openid", call => \&getopt);
11 hook(type => "auth", id => "openid", call => \&auth);
12 hook(type => "formbuilder_setup", id => "openid",
13 call => \&formbuilder_setup, last => 1);
17 eval q{use Getopt::Long};
19 Getopt::Long::Configure('pass_through');
20 GetOptions("openidsignup=s" => \$config{openidsignup});
23 sub formbuilder_setup (@) { #{{{
26 my $form=$params{form};
27 my $session=$params{session};
30 if ($form->title eq "signin") {
36 htmllink("", "", "OpenID", 1, 0, "What's this?")
37 .($config{openidsignup} ? " | <a href=\"$config{openidsignup}\">Get an OpenID</a>" : "")
41 # Handle submission of an OpenID as validation.
42 if ($form->submitted && $form->submitted eq "Login" &&
43 defined $form->field("openid_url") &&
44 length $form->field("openid_url")) {
48 validate($cgi, $session, shift, $form);
51 # Skip all other required fields in this case.
52 foreach my $field ($form->field) {
53 next if $field eq "openid_url";
54 $form->field(name => $field, required => 0,
61 sub validate ($$$;$) { #{{{
67 my $csr=getobj($q, $session);
69 my $claimed_identity = $csr->claimed_identity($openid_url);
70 if (! $claimed_identity) {
72 # Put the error in the form and fail validation.
73 $form->field(name => "openid_url", comment => $csr->err);
81 my $check_url = $claimed_identity->check_url(
82 return_to => IkiWiki::cgiurl(do => "postsignin"),
83 trust_root => $config{cgiurl},
86 # Redirect the user to the OpenID server, which will
87 # eventually bounce them back to auth()
88 IkiWiki::redirect($q, $check_url);
96 if (defined $q->param('openid.mode')) {
97 my $csr=getobj($q, $session);
99 if (my $setup_url = $csr->user_setup_url) {
100 IkiWiki::redirect($q, $setup_url);
102 elsif ($csr->user_cancel) {
103 IkiWiki::redirect($q, $config{url});
105 elsif (my $vident = $csr->verified_identity) {
106 $session->param(name => $vident->url);
109 error("OpenID failure: ".$csr->err);
112 elsif (defined $q->param('openid_identifier')) {
113 # myopenid.com affiliate support
114 validate($q, $session, $q->param('openid_identifier'));
118 sub getobj ($$) { #{{{
122 eval q{use Net::OpenID::Consumer};
126 eval q{use LWPx::ParanoidAgent};
128 $ua=LWPx::ParanoidAgent->new;
131 $ua=LWP::UserAgent->new;
134 # Store the secret in the session.
135 my $secret=$session->param("openid_secret");
136 if (! defined $secret) {
137 $secret=$session->param(openid_secret => time);
140 return Net::OpenID::Consumer->new(
143 consumer_secret => $secret,
144 required_root => $config{cgiurl},