X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=cgi-auth-flexible.git;a=blobdiff_plain;f=caf.pod;h=4d2b3f67869ca0371e9e7f78b0826ca47479c03d;hp=b0fb8d41c582eaf7715befdf308585971be2d846;hb=4dc8006633cdc5bd000d488140260008b078a728;hpb=3cb3245f8f64fddad331c05c1b9f87d063191ecf diff --git a/caf.pod b/caf.pod index b0fb8d4..4d2b3f6 100644 --- a/caf.pod +++ b/caf.pod @@ -1,5 +1,20 @@ # -*- fundamental -*- +# This is part of CGI::Auth::Flexible, a perl CGI authentication module. +# +# 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, with the "CAF Login Exception" +# as published by Ian Jackson (version 1, or at your option any +# later version) as an Additional Permission. +# +# 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. + + =head1 NAME CGI::Auth::Flexible - web authentication optionally using cookies @@ -133,10 +148,10 @@ interfaces for this: =head3 Simple applications -The simplist usage is to call C<< $request->check_ok() >> which will +The simplest usage is to call C<< $request->check_ok() >> which will check the user's authentication. If the user is not logged in it will generate a login form (or redirection or other appropriate page) and -return false; your application should not then processing that request +return false; your application should not then process that request any further. If the user is logged in it will return true. Various hooks are provided to customise the responses generated by @@ -145,13 +160,15 @@ C. After C returns true you should go ahead and process the request; you can use C<< $request->get_username >> to find out which user the request came from. +You may also need to call C and/or C +- see below. -=head2 Sophisticated applications +=head3 Sophisticated applications If you want to handle the control flow and to generate login forms, redirections, etc., yourself, you can say C<< $divert = $request->check_divert >>. This returns undef if -the user is logged in, or I if some kind of login +the user is logged in, or a I if some kind of login page or diversion should be generated. See L below for details of how to deal with the return value. @@ -159,16 +176,19 @@ details of how to deal with the return value. =head3 Mutation-ignorant applications -By default CGI::Auth::Flexible does not permit external links into -your site. All GET requests give a "click to continue" page which +By default CGI::Auth::Flexible does not permit external deep links +into your site. +All GET requests give a "click to continue" page which submits a form which loads your app's main page. In this configuration all your application's forms and AJAX requests should -use C. This restriction arises from complicated deficiencies -in the web's security architecture. +use C. Such applications are also not able to provide user-specific CSS stylesheets, javascript, favicons, etc. +This restriction arises from complicated deficiencies +in the web's security architecture. + =head3 Mutation-aware applications The alternative is for your application to always make a special check @@ -198,7 +218,7 @@ include a secret hidden form parameter for the benefit of CGI::Auth::Generic. This form parameter will be checked by C/C and should be ignored by your application. -By default the hidden parameter is called C. +By default the hidden parameter is called C. After calling C or C the value to put in your form can be obtained from C; C @@ -367,12 +387,14 @@ Discards the resources (open files, etc.) in the verifier object. =back -=head REQUEST-RELATED FUNCTIONS AND METHODS +=head1 REQUEST-RELATED FUNCTIONS AND METHODS All of these are only valid after C or C has been called. (In the case of C it won't normally be sensible to call these functions unless C returned true.) +=over + =item C<< $authreq->get_divert() >> Returns the value previously returned by C. @@ -409,18 +431,23 @@ whenever it is handling anything except an HTML page loads, it must call this function. See L, and L. -C will either return successfully, indicating that all +C will either return successfully, indicating that all is well and the request should proceed, or it will die, like C. -=head RESPONSE-RELATED FUNCTIONS AND METHODS +=back + +=head1 RESPONSE-RELATED FUNCTIONS AND METHODS + +=over =item C<< $authreq->url_with_query_params($params, [$nonpagetype]) >> Convenience function which returns a url for a GET request to this application. -I<$params> is a hashref specifying the parameters and the PATH_INFO. +I<$params> is a hashref specifying the parameters and the PATH_INFO +(not including any parameters related to CGI::Auth::Flexible). The keys are the parameter names, and the values are array refs with the parameter value(s) (as strings, as yet unquoted). (They are array refs because it is possible to pass multiple values for the same @@ -464,15 +491,13 @@ yourself (and indeed you must do so if you use C). =item C<< $authreq->chain_params() >> Returns a hash of the "relevant" parameters to this request, in a form -used by C. This is all of the query parameters -which are not related to CGI::Auth::Flexible. The PATH_INFO from the -request is returned as the parameter C<< '' >>. - -xxx why use this function +suitable for C. This is all of the query +parameters which are not related to CGI::Auth::Flexible. The +PATH_INFO from the request is returned as the parameter C<< '' >>. =back -=head OTHER FUNCTIONS AND METHODS +=head1 OTHER FUNCTIONS AND METHODS =over @@ -491,7 +516,7 @@ parameter. I<$reqtype> is the request type (the value which will be passed to C and C. If you are supporting a new -I<$reqtype> you shouuld coordinate with CGI::Auth::Flexible upstrea, +I<$reqtype> you shouuld coordinate with CGI::Auth::Flexible upstream, or other users, to assign a unique request type name. This method may be called on an authreq or a verifier, in which case @@ -531,6 +556,229 @@ digits. =back +=head1 REQUEST TYPES + +The C<$reqtype> values understood by C are strings. +They are: + +=over + +=item C + +A top-level HTML page load. May contain confidential information for +the benefit of the logged-in user. + +=item C + +An HTML frame. May contain confidential information for +the benefit of the logged-in user. + +=item C