This file is indexed.

/usr/lib/ocaml/eliom/server/eliom_openid.mli is in libeliom-ocaml-dev 2.2.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
(* Ocsigen
 * Copyright (C) 2010 Simon Castellan
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, with linking exception;
 * either version 2.1 of the License, or (at your option) any later version.
 *
 * 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *)

(** OpenID identification *)

open Eliom_lib

(** This module implements the Relying Party of the OpenID specification,
    in stateful mode. *)

(** {2 Library description} *)

(** The library provides means to authenticate an user
    to a remote provider using the OpenID protocol.
    Basically, you need to ask the user its OpenID url, and
    the fields you want to require (or none, if you just want to
    authenticate an user), along with other information.

    The library uses an "hidden service" that is needed when the provider
    redirects back to your site. This service is registered in the library, all you have
    to do is to give a path for that service and a default handler
    (if the user connects to that service without being in an authentication process.)
    Here is a short example of how to use the library
    {[
open Eliom_openid
let messages = Eliom_state.create_volatile_table ()
(* The login form *)
let login_form = Eliom_service.new_service
  ~path:["login-form"]
  ~get_params: Eliom_parameter.unit
  ()

(* Initialize the library, and getting the authenticate function *)
let authenticate = Eliom_openid.init ~path:["__openid_return_service"]
    ~f: (fun _ _ -> Eliom_registration.Redirection.send login_form)

(* Create the handler for the form *)
(* We have to use Eliom_registration.String_redirection as we
   redirect the user to her provider *)
let form_handler = Eliom_registration.String_redirection.register_new_post_coservice
    ~fallback: login_form
    ~post_params: (Eliom_parameter.string "url")
    (fun _ url ->
       authenticate
    ~max_auth_age: 4 (* Requires that if the user logged in more that 4 seconds ago
                        he needs to relog in *)
    ~required: [Eliom_openid.Email] (* Requires his e-mail *)
    ~immediate: false
   url
   (fun result ->
     let string =
       match result with
         | Setup_needed -> "setup needed" | Canceled -> "canceled"
         | Result result ->
           try List.assoc Email result.fields with Not_found -> "No e-mail :("
     in
     Eliom_state.set_volatile_session_data ~table:messages string;
     Eliom_registration.Redirection.send login_form))

open XHTML
let _ = Eliom_registration.Xhtml.register
    ~service: login_form
    (fun _ _ ->
    (match Eliom_state.get_volatile_session_data ~table: messages () with
     | Eliom_state.Data s ->
       Eliom_state.discard () >>= fun () ->
       Lwt.return [p [pcdata ("Authentication result: "^ s)]]
     | _ -> Lwt.return []) >>= fun message ->
    let form =
    Eliom_registration.Xhtml.post_form ~service:form_handler
      (fun url ->
        [p [pcdata "Your OpenID identifier: ";
            Eliom_registration.Xhtml.string_input ~input_type:`Text ~name:url ();
            Eliom_registration.Xhtml.string_input ~input_type:`Submit ~value:"Login" ();
           ]]) ()
    in
    Lwt.return
      (html
           (head (title (pcdata "A sample test")) [])
           (body
              (message @ [form]))))
]}
*)

(** {2 Documentation} *)

(** {3 Miscallenous} *)

(** Error that may happen when identifiying an user *)
type openid_error =
    Invalid_XRDS_File of string * string
        (** The provider XRDS file was not valid *)
  | Discovery_Error of string * string
      (** An error occured during the discovery of the provider *)
  | Missing_parameter of string
      (** The remote server forgot a parameter in its request *)
  | Invalid_signature of string * string
      (** We disagree with the server's signature *)
  | Invalid_association of string
      (** We were unable to associate with a provider *)
  | Invalid_argument of string * string * string
      (** The argument provided were not set to a correct value *)
  | Server_error of string
      (** The server threw an explicit error *)
  | Invalid_answer of string
      (** The answer code was not correct *)
  | Invalid_html_doc of string
      (** An error occured during the parsing of an user url in html format *)
(** Prettyprint an OpenID Error *)
val string_of_openid_error : openid_error -> string

(** Exception thrown by this module's function. *)
exception Error of openid_error

(** A field you can request to the provider *)
type field =
    Email
  | Fullname
  | DateOfBirth
  | PostCode
  | Timezone
  | Language
  | Country
  | Gender
  | Nickname

(** An extension yielding values of type 'a *)
type 'a extension = {
  headers : (string * string) list;
  parse : (string * string) list -> 'a Lwt.t;
}

(** The SREG extension
    @see <http://openid.net/specs/openid-simple-registration-extension-1_1-01.html> SREG *)
val sreg :
  ?policy_url:string ->
  required:field list ->
  optional:field list -> unit -> (field * string) list extension

(** The AX extension
    @see <http://openid.net/specs/openid-attribute-exchange-1_0.html> AX*)
val ax :
  required:field list ->
  optional:field list -> unit -> (field * string) list extension

(** The pape data returned by the server *)
type pape = {
  auth_time : string option;
  (** The time at which the user last logged in *)
  policies : string list option;
  (** A list of policies (url) describing your usage of the data *)
  nist_level : int option;
  (** The nist level *)
}
val pape :
  ?max_auth_age:int -> ?auth_policies:string list -> unit -> pape extension
(** The PAPE extension.
    @see <http://openid.net/specs/openid-provider-authentication-policy-extension-1_0-01.html> PAPE *)

val ( *** ) : 'a extension -> 'b extension -> ('a * 'b) extension
(** Product of two extension *)

(** The result of an authentication. *)
type 'a authentication_result =
    Canceled (** The user canceled the login (or failed) *)
  | Setup_needed (** The provider has not enough information to complete an immediate
                     request. Only returned when using an immediate authentication. *)
  | Result of 'a (** All went ok. *)


(** {3 Low-level interface.} *)

(** Perform discovery on an user-supplied url *)
val perform_discovery : string -> (string * string option) Lwt.t


(** Information about the hidden service *)
module type HiddenServiceInfo = sig
  val path : string list
(** The path of the hidden service *)
  val f :
    (string * string) list ->
    unit -> (Eliom_registration.browser_content, Eliom_registration.http_service) Eliom_registration.kind Lwt.t
(** The function called when an user connects to the hidden service
    (not that hidden) without being in an identication process.
    Typically you should redirect the user to the login page. *)
end
(** This functor build a hidden service that will be used
    to receive the remote server's data. In return
    you get a check function *)
module Make :
  functor
    (S : HiddenServiceInfo) ->
    sig
      val authenticate :
        mode:string ->
        ext:'a extension ->
        handler:('a authentication_result ->
                 (Eliom_registration.browser_content, Eliom_registration.http_service) Eliom_registration.kind Lwt.t) ->
        discovery:string * string option -> Url.t Lwt.t
        (** Authenticate an user.
            - mode: can be [checkid_setup] or [checkid_immediate]
                    whether you want immediate identification or not.
            - ext: the extensions you want to use.
            - handler: the handler called with the result of the authentication.
            - discovery: The discovery information
           In return you get an URI you have to redirect the user to. *)
    end

(** {3 High-level interface} *)
(** The high-level interface takes care of creating
    the extension you want, without to use them directly.
    It yields a [result]. *)

(** The result yielded by the authentication process *)
type result = {
  fields : (field * string) list;
  (** The fields you requested *)
  pape : pape;
  (** The pape information *)
}

(** The type of the authenticate function.
    - immediate: whether to use immediate identification or not (default: true)
    - policy_url: an optional policy url to describe what you do with the data (sreg) (default:none)
    - required: optional fields you really need (although the provier may not provide them) (default:empty)
    - optional: optional fields you don't really need (default: empty)
    - max_auth_age: Requires that the user logged in less than [n] seconds ago. (default: up to the provider)
    - auth_policies: A list of url describing your policies regarding the data (default: empty)
    - the url the user gave you
    - an handler, that'll be called after checking the parameters with the result
      and the server params of the GET request. You can send whatever page you want
      but you should redirect the user to a page so he can't bookmark it, or
      send some piece of html to interface with javascript.
*)
type check_fun =
    ?immediate:bool ->
    ?policy_url:string ->
    ?max_auth_age:int ->
    ?auth_policies:string list ->
    ?required:field list ->
    ?optional:field list ->
    string ->
    (result authentication_result ->
      (Eliom_registration.browser_content, Eliom_registration.http_service) Eliom_registration.kind Lwt.t) ->
    Url.t Lwt.t

(** Init the OpenID for your site.
    Takes a path and a handler for the hidden service *)
val init :
  path:string list ->
  f:((string * string) list -> unit ->
     (Eliom_registration.browser_content, Eliom_registration.http_service) Eliom_registration.kind Lwt.t) ->
  check_fun