3 package IkiWiki::Plugin::openid;
10 hook(type => "getopt", id => "openid", call => \&getopt);
11 hook(type => "getsetup", id => "openid", call => \&getsetup);
12 hook(type => "auth", id => "openid", call => \&auth);
13 hook(type => "formbuilder_setup", id => "openid",
14 call => \&formbuilder_setup, last => 1);
18 eval q{use Getopt::Long};
20 Getopt::Long::Configure('pass_through');
21 GetOptions("openidsignup=s" => \$config{openidsignup});
33 example => "http://myopenid.com/",
34 description => "an url where users can signup for an OpenID",
40 sub formbuilder_setup (@) {
43 my $form=$params{form};
44 my $session=$params{session};
47 if ($form->title eq "signin") {
48 # Give up if module is unavailable to avoid
49 # needing to depend on it.
50 eval q{use Net::OpenID::Consumer};
52 debug("unable to load Net::OpenID::Consumer, not enabling OpenID login ($@)");
56 # This avoids it displaying a redundant label for the
58 $form->fieldsets("OpenID");
62 label => gettext("Log in with")." ".htmllink("", "", "ikiwiki/OpenID", noimageinline => 1),
65 comment => ($config{openidsignup} ? " | <a href=\"$config{openidsignup}\">".gettext("Get an OpenID")."</a>" : "")
68 # Handle submission of an OpenID as validation.
69 if ($form->submitted && $form->submitted eq "Login" &&
70 defined $form->field("openid_url") &&
71 length $form->field("openid_url")) {
75 validate($cgi, $session, shift, $form);
78 # Skip all other required fields in this case.
79 foreach my $field ($form->field) {
80 next if $field eq "openid_url";
81 $form->field(name => $field, required => 0,
86 elsif ($form->title eq "preferences" &&
87 IkiWiki::openiduser($session->param("name"))) {
88 $form->field(name => "openid_url", disabled => 1,
89 label => htmllink("", "", "ikiwiki/OpenID", noimageinline => 1),
90 value => $session->param("name"),
91 size => 50, force => 1,
96 sub validate ($$$;$) {
102 my $csr=getobj($q, $session);
104 my $claimed_identity = $csr->claimed_identity($openid_url);
105 if (! $claimed_identity) {
107 # Put the error in the form and fail validation.
108 $form->field(name => "openid_url", comment => $csr->err);
116 my $check_url = $claimed_identity->check_url(
117 return_to => IkiWiki::cgiurl(do => "postsignin"),
118 trust_root => $config{cgiurl},
121 # Redirect the user to the OpenID server, which will
122 # eventually bounce them back to auth()
123 IkiWiki::redirect($q, $check_url);
131 if (defined $q->param('openid.mode')) {
132 my $csr=getobj($q, $session);
134 if (my $setup_url = $csr->user_setup_url) {
135 IkiWiki::redirect($q, $setup_url);
137 elsif ($csr->user_cancel) {
138 IkiWiki::redirect($q, $config{url});
140 elsif (my $vident = $csr->verified_identity) {
141 $session->param(name => $vident->url);
144 error("OpenID failure: ".$csr->err);
147 elsif (defined $q->param('openid_identifier')) {
148 # myopenid.com affiliate support
149 validate($q, $session, $q->param('openid_identifier'));
157 eval q{use Net::OpenID::Consumer};
161 eval q{use LWPx::ParanoidAgent};
163 $ua=LWPx::ParanoidAgent->new;
166 $ua=LWP::UserAgent->new;
169 # Store the secret in the session.
170 my $secret=$session->param("openid_secret");
171 if (! defined $secret) {
173 $session->param(openid_secret => $secret);
176 return Net::OpenID::Consumer->new(
179 consumer_secret => sub { return shift()+$secret },
180 required_root => $config{cgiurl},