X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/f92505d78b82c6ac146e43054ebd12441575a602..a7d329c17312348d7511b48523fb54c18f8d4736:/IkiWiki/Plugin/openid.pm?ds=inline

diff --git a/IkiWiki/Plugin/openid.pm b/IkiWiki/Plugin/openid.pm
index de31f38ee..f12cbdaa3 100644
--- a/IkiWiki/Plugin/openid.pm
+++ b/IkiWiki/Plugin/openid.pm
@@ -8,6 +8,7 @@ use IkiWiki 2.00;
 
 sub import { #{{{
 	hook(type => "getopt", id => "openid", call => \&getopt);
+	hook(type => "getsetup", id => "openid", call => \&getsetup);
 	hook(type => "auth", id => "openid", call => \&auth);
 	hook(type => "formbuilder_setup", id => "openid",
 		call => \&formbuilder_setup, last => 1);
@@ -20,6 +21,21 @@ sub getopt () { #{{{
 	GetOptions("openidsignup=s" => \$config{openidsignup});
 } #}}}
 
+sub getsetup () { #{{{
+	return
+		plugin => {
+			safe => 1,
+			rebuild => 0,
+		},
+		openidsignup => {
+			type => "string",
+			example => "http://myopenid.com/",
+			description => "an url where users can signup for an OpenID",
+			safe => 1,
+			rebuild => 0,
+		},
+} #}}}
+
 sub formbuilder_setup (@) { #{{{
 	my %params=@_;
 
@@ -27,15 +43,15 @@ sub formbuilder_setup (@) { #{{{
 	my $session=$params{session};
 	my $cgi=$params{cgi};
 	
-	# Give up if module is unavailable to avoid needing to depend on
-	# it.
-	eval q{use Net::OpenID::Consumer};
-	if ($@) {
-		debug("unable to load Net::OpenID::Consumer, not enabling OpenID login");
-		return;
-	}
-
 	if ($form->title eq "signin") {
+		# Give up if module is unavailable to avoid
+		# needing to depend on it.
+		eval q{use Net::OpenID::Consumer};
+		if ($@) {
+			debug("unable to load Net::OpenID::Consumer, not enabling OpenID login ($@)");
+			return;
+		}
+
 		# This avoids it displaying a redundant label for the
 		# OpenID fieldset.
 		$form->fieldsets("OpenID");