Source file eliom_mkreg.ml
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
# 1 "src/lib/eliom_mkreg.server.ml"
module S = Eliom_service
let ( >>= ) = Lwt.( >>= )
let suffix_redir_uri_key = Polytables.make_key ()
type ('options, 'page, 'result) param =
{ send :
?options:'options
-> ?charset:string
-> ?code:int
-> ?content_type:string
-> ?headers:Ocsigen_header.t
-> 'page
-> Ocsigen_response.t Lwt.t
; send_appl_content : S.send_appl_content
(** Whether the service is capable to send application content when
required. This field is usually [Eliom_service.XNever]. This
value is recorded inside each service just after
registration. *)
; result_of_http_result : Ocsigen_response.t -> 'result }
let check_before name service =
match S.send_appl_content service with
| S.XSame_appl (an, _) when an = name -> false
| S.XAlways -> false
| _ -> true
let check_after name result =
match
Ocsigen_response.header result
(Ocsigen_header.Name.of_string Eliom_common_base.appl_name_header_name)
with
| Some appl_name -> not (appl_name = name)
| None ->
true
let check_process_redir sp f param =
let redir =
if Eliom_request_info.expecting_process_page ()
then
match sp.Eliom_common.sp_client_appl_name with
| None -> false
| Some anr -> f anr param
else false
in
if redir
then
let ri = Eliom_request_info.get_ri_sp sp in
Lwt.fail
(Eliom_common.Eliom_do_half_xhr_redirection
("/"
^ Eliom_lib.String.may_concat
(Ocsigen_request.original_full_path_string ri)
~sep:"?"
(Eliom_parameter.construct_params_string
(Ocsigen_request.get_params_flat ri))))
else Lwt.return_unit
let send_with_cookies sp pages ?options ?charset ?code ?content_type ?
content
=
let%lwt result =
pages.send ?options ?charset ?code ?content_type ?headers content
in
let%lwt () = check_process_redir sp check_after result in
let%lwt tab_cookies =
Eliommod_cookies.compute_cookies_to_send sp.Eliom_common.sp_sitedata
sp.Eliom_common.sp_tab_cookie_info sp.Eliom_common.sp_user_tab_cookies
in
let response =
let response, _ = Ocsigen_response.to_cohttp result in
let =
Cohttp.Header.add
(Cohttp.Response.headers response)
Eliom_common_base.set_tab_cookies_header_name
(Eliommod_cookies.cookieset_to_json tab_cookies)
in
{response with Cohttp.Response.headers}
and cookies =
Ocsigen_cookie_map.add_multi
(Eliom_request_info.get_user_cookies ())
(Ocsigen_response.cookies result)
in
Lwt.return (Ocsigen_response.update result ~cookies ~response)
let register_aux pages ?options ?charset ?code ?content_type ? table
(type a) ~(service : (_, _, _, a, _, _, _, _, _, _, _) S.t)
?(error_handler = fun l -> raise (Eliom_common.Eliom_Typing_Error l))
page_generator
=
S.set_send_appl_content service pages.send_appl_content;
match S.info service with
| S.Attached attser -> (
let key_meth = S.which_meth_untyped service in
let attserget = S.get_name attser in
let attserpost = S.post_name attser in
let suffix_with_redirect = S.redirect_suffix attser in
let priority = S.priority attser in
let sgpt = S.get_params_type service
and sppt = S.post_params_type service in
let s_id =
if attserget = Eliom_common.SAtt_no || attserpost = Eliom_common.SAtt_no
then
Eliom_parameter.(
anonymise_params_type sgpt, anonymise_params_type sppt)
else 0, 0
and s_max_use = S.max_use service
and s_expire =
match S.timeout service with
| None -> None
| Some t -> Some (t, ref (t +. Unix.time ()))
in
let f table ((_attserget, _attserpost) as attsernames) =
Eliom_route.add_service priority table (S.sub_path attser)
{ Eliom_common.key_state = attsernames
; Eliom_common.key_meth :> Eliom_common.meth }
{ s_id
; s_max_use
; s_expire
; s_f =
(fun nosuffixversion sp ->
Lwt.with_value Eliom_common.sp_key (Some sp) (fun () ->
let ri = Eliom_request_info.get_ri_sp sp
and suff = Eliom_request_info.get_suffix_sp sp in
Lwt.catch
(fun () ->
Eliom_parameter.reconstruct_params ~sp sgpt
(Some (Lwt.return (Ocsigen_request.get_params_flat ri)))
(Some (Lwt.return []))
nosuffixversion suff
>>= fun g ->
let post_params =
Eliom_request_info.get_post_params_sp sp
in
let files = Eliom_request_info.get_files_sp sp in
Eliom_parameter.reconstruct_params ~sp sppt post_params
files false None
>>= fun p ->
(if Eliom_request_info.get_http_method () = `GET
&& nosuffixversion && suffix_with_redirect
then (
if
not (Eliom_request_info.expecting_process_page ())
then
let redir_uri =
Eliom_uri.make_string_uri_ ~absolute:true
~service:
(service
: ( 'a
, 'b
, _
, _
, _
, S.non_ext
, S.reg
, _
, 'c
, 'd
, 'return )
S.t
:> ( 'a
, 'b
, _
, _
, _
, _
, _
, _
, 'c
, 'd
, 'return )
S.t)
g
in
Lwt.fail
(Eliom_common.Eliom_do_redirection redir_uri)
else
let redir_uri =
Eliom_uri.make_string_uri_ ~service g
in
let rc =
Eliom_request_info.get_request_cache_sp sp
in
Polytables.set ~table:rc ~key:suffix_redir_uri_key
~value:redir_uri;
Lwt.return_unit)
else Lwt.return_unit)
>>= fun () ->
check_process_redir sp check_before service >>= fun () ->
page_generator g p)
(function
| Eliom_common.Eliom_Typing_Error l -> error_handler l
| e -> Lwt.fail e)
>>= fun content ->
send_with_cookies sp pages ?options ?charset ?code
?content_type ?headers content)) }
in
match key_meth, attserget, attserpost with
| ( (`Post | `Put | `Delete)
, _
, Eliom_common.SAtt_csrf_safe (id, scope, secure_session) ) ->
let tablereg, forsession =
match table with
| Eliom_lib.Left globtbl -> globtbl, false
| Eliom_lib.Right (sp, ct, sec) ->
if secure_session <> sec || scope <> ct
then raise S.Wrong_session_table_for_CSRF_safe_coservice;
( !(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
, true )
in
S.set_delayed_post_registration_function tablereg id
(fun ~sp attserget ->
let n = S.new_state () in
let attserpost = Eliom_common.SAtt_anon n in
let table =
if forsession
then tablereg
else
!(Eliom_state.get_session_service_table
?secure:secure_session ~scope ~sp ())
in
f table (attserget, attserpost);
n)
| `Get, Eliom_common.SAtt_csrf_safe (id, scope, secure_session), _ ->
let tablereg, forsession =
match table with
| Left globtbl -> globtbl, false
| Right (sp, ct, sec) ->
if secure_session <> sec || ct <> scope
then raise S.Wrong_session_table_for_CSRF_safe_coservice;
( !(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
, true )
in
S.set_delayed_get_or_na_registration_function tablereg id (fun ~sp ->
let n = S.new_state () in
let attserget = Eliom_common.SAtt_anon n in
let table =
if forsession
then tablereg
else
!(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
in
f table (attserget, attserpost);
n)
| _ ->
let tablereg =
match table with
| Left globtbl -> globtbl
| Right (sp, scope, secure_session) ->
!(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
in
f tablereg (attserget, attserpost))
| S.Nonattached naser -> (
let na_name = S.na_name naser in
let f table na_name =
Eliom_route.add_naservice table na_name
( (match S.max_use service with
| None -> None
| Some i -> Some (ref i))
, (match S.timeout service with
| None -> None
| Some t -> Some (t, ref (t +. Unix.time ())))
, fun sp ->
Lwt.with_value Eliom_common.sp_key (Some sp) (fun () ->
let ri = Eliom_request_info.get_ri_sp sp in
Lwt.catch
(fun () ->
Eliom_parameter.reconstruct_params ~sp
(S.get_params_type service)
(Some (Lwt.return (Ocsigen_request.get_params_flat ri)))
(Some (Lwt.return []))
false None
>>= fun g ->
let post_params =
Eliom_request_info.get_post_params_sp sp
in
let files = Eliom_request_info.get_files_sp sp in
Eliom_parameter.reconstruct_params ~sp
(S.post_params_type service)
post_params files false None
>>= fun p ->
check_process_redir sp check_before service >>= fun () ->
page_generator g p)
(function
| Eliom_common.Eliom_Typing_Error l -> error_handler l
| e -> Lwt.fail e)
>>= fun content ->
send_with_cookies sp pages ?options ?charset ?code ?content_type
?headers content) )
in
match na_name with
| Eliom_common.SNa_get_csrf_safe (id, scope, secure_session) ->
let tablereg, forsession =
match table with
| Left globtbl -> globtbl, false
| Right (sp, ct, sec) ->
if secure_session <> sec || ct <> scope
then raise S.Wrong_session_table_for_CSRF_safe_coservice;
( !(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
, true )
in
S.set_delayed_get_or_na_registration_function tablereg id (fun ~sp ->
let n = S.new_state () in
let na_name = Eliom_common.SNa_get' n in
let table =
if forsession
then tablereg
else
!(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
in
f table na_name; n)
| Eliom_common.SNa_post_csrf_safe (id, scope, secure_session) ->
let tablereg, forsession =
match table with
| Left globtbl -> globtbl, false
| Right (sp, ct, sec) ->
if secure_session <> sec || ct <> scope
then raise S.Wrong_session_table_for_CSRF_safe_coservice;
( !(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
, true )
in
S.set_delayed_get_or_na_registration_function tablereg id (fun ~sp ->
let n = S.new_state () in
let na_name = Eliom_common.SNa_post' n in
let table =
if forsession
then tablereg
else
!(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
in
f table na_name; n)
| _ ->
let tablereg =
match table with
| Left globtbl -> globtbl
| Right (sp, scope, secure_session) ->
!(Eliom_state.get_session_service_table ?secure:secure_session
~scope ~sp ())
in
f tablereg na_name)
let send pages ?options ?charset ?code ?content_type ? content =
let%lwt result =
pages.send ?options ?charset ?code ?content_type ?headers content
in
Lwt.return (pages.result_of_http_result result)
let register pages ?app:_ ?scope ?options ?charset ?code ?content_type ?
?secure_session (type a)
~(service : (_, _, _, a, _, _, S.reg, _, _, _, _) S.t) ?error_handler
page_gen
=
let sp = Eliom_common.get_sp_option () in
match scope, sp with
| None, None | Some `Site, None -> (
let aux sitedata =
(match S.info service with
| S.Attached attser ->
Eliom_common.remove_unregistered sitedata (S.sub_path attser)
| S.Nonattached naser ->
Eliom_common.remove_unregistered_na sitedata (S.na_name naser));
register_aux pages ?options ?charset ?code ?content_type ?headers
(Left sitedata.Eliom_common.global_services) ~service ?error_handler
page_gen
in
match Eliom_common.global_register_allowed () with
| Some get_current_sitedata ->
let sitedata = get_current_sitedata () in
if sitedata.Eliom_common.site_dir <> None
then aux sitedata
else
Ocsigen_loader.add_module_init_function
(Eliom_common.get_app_name ()) (fun () -> aux sitedata)
| _ ->
raise (Eliom_common.Eliom_site_information_not_available "register"))
| None, Some _ | Some `Site, Some _ ->
register_aux pages ?options ?charset ?code ?content_type ?headers
?error_handler
(Eliom_lib.Left (Eliom_state.get_global_table ()))
~service page_gen
| _, None -> raise (failwith "Missing sp while registering service")
| Some (#Eliom_common.user_scope as scope), Some sp ->
register_aux pages ?options ?charset ?code ?content_type ?headers
?error_handler
(Right (sp, scope, secure_session))
~service page_gen
let create pages ?scope ?app ?options ?charset ?code ?content_type ?
?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure ?max_use
?timeout ~meth ~path ?error_handler page
=
let service =
S.create_unsafe ?name ?csrf_safe
?csrf_scope:(csrf_scope :> Eliom_common.user_scope option)
?csrf_secure ?max_use ?timeout ?https ~meth ~path ()
in
register pages ?scope ?app ?options ?charset ?code ?content_type ?headers
?secure_session ~service ?error_handler page;
service
let create_attached_get pages ?scope ?app ?options ?charset ?code ?content_type
? ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~get_params ?error_handler page
=
let service =
S.create_attached_get_unsafe ?name ?csrf_safe
?csrf_scope:(csrf_scope :> Eliom_common.user_scope option)
?csrf_secure ?max_use ?timeout ?https ~fallback ~get_params ()
in
register pages ?scope ?app ?options ?charset ?code ?content_type ?headers
?secure_session ~service ?error_handler page;
service
let create_attached_post pages ?scope ?app ?options ?charset ?code ?content_type
? ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~post_params ?error_handler page
=
let service =
S.create_attached_post_unsafe ?name ?csrf_safe
?csrf_scope:(csrf_scope :> Eliom_common.user_scope option)
?csrf_secure ?max_use ?timeout ?https ~fallback ~post_params ()
in
register pages ?scope ?app ?options ?charset ?code ?content_type ?headers
?secure_session ~service ?error_handler page;
service
module Make
(Pages : Eliom_registration_sigs.PARAM with type frame := Ocsigen_response.t) =
struct
type page = Pages.page
type options = Pages.options
type return = Eliom_service.non_ocaml
type result = Pages.result
let pages =
{ send = Pages.send
; send_appl_content = Pages.send_appl_content
; result_of_http_result = Pages.result_of_http_result }
let send ?options = send pages ?options
let register ?app = register pages ?app
let create ?app = create pages ?app
let create_attached_get ?app = create_attached_get pages ?app
let create_attached_post ?app = create_attached_post pages ?app
end
module Make_poly
(Pages : Eliom_registration_sigs.PARAM_POLY
with type frame := Ocsigen_response.t) =
struct
type 'a page = 'a Pages.page
type options = Pages.options
type 'a return = 'a Pages.return
let pages =
{ send = Pages.send
; send_appl_content = Pages.send_appl_content
; result_of_http_result = (fun x -> x) }
let register ?app = register pages ?app
let create ?app = create pages ?app
let create_attached_get ?app = create_attached_get pages ?app
let create_attached_post ?app = create_attached_post pages ?app
end