Source file eliom_registration.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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
# 1 "src/lib/eliom_registration.server.ml"
open Lwt.Infix
let ?charset ?content_type =
match content_type with
| Some content_type ->
let charset =
if charset <> None
then charset
else if String.length content_type >= 5
&& (String.sub content_type 0 5 = "text/"
||
let suffix =
String.sub content_type (String.length content_type - 4) 4
in
suffix = "/xml" || suffix = "=xml")
then Some (Eliom_config.get_config_default_charset ())
else None
in
Cohttp.Header.replace headers
Ocsigen_header.Name.(to_string content_type)
(match charset with
| Some charset -> Printf.sprintf "%s; charset=%s" content_type charset
| None -> content_type)
| None -> headers
let result_of_content ?charset ?content_type ? ?status body =
let =
match content_type with
| Some content_type ->
let = Ocsigen_header.of_option headers in
Some (headers_with_content_type ?charset ~content_type headers)
| None -> headers
in
let =
Cohttp.Header.add_unless_exists
(Ocsigen_header.of_option headers)
"cache-control" "no-cache"
in
let response = Cohttp.Response.make ?status ~headers () in
Lwt.return (Ocsigen_response.make ~body response)
module Result_types : sig
type 'a kind
val cast_result : Ocsigen_response.t -> 'a kind
val cast_kind : 'a kind -> Ocsigen_response.t
val cast_kind_lwt : 'a kind Lwt.t -> Ocsigen_response.t Lwt.t
val cast_result_lwt : Ocsigen_response.t Lwt.t -> 'a kind Lwt.t
val cast_function_http :
('c -> 'a kind Lwt.t)
-> 'c
-> Ocsigen_response.t Lwt.t
end = struct
type 'a kind = Ocsigen_response.t
let cast_result x = x
let cast_kind x = x
let cast_kind_lwt x = x
let cast_result_lwt x = x
let cast_function_http x = x
end
type 'a kind = 'a Result_types.kind
type 'a application_content = [`Appl of 'a]
type block_content
type browser_content = [`Browser]
type 'a ocaml_content
type unknown_content
let cast_unknown_content_kind (x : unknown_content kind) : 'a kind =
Result_types.cast_result (Result_types.cast_kind x)
let cast_http_result = Result_types.cast_result
let content_type_html content_type =
let sp = Eliom_common.get_sp () in
match
content_type, sp.Eliom_common.sp_sitedata.Eliom_common.html_content_type
with
| None, Some content_type -> content_type
| Some content_type, _ -> content_type
| None, None ->
let accept =
Ocsigen_request.header_multi
(Eliom_request_info.get_ri ())
Ocsigen_header.Name.accept
in
let accept = Ocsigen_header.Accept.parse accept in
Ocsigen_header.Content_type.choose accept
Eliom_content.Html.D.Info.content_type
Eliom_content.Html.D.Info.alternative_content_types
module Html_base = struct
type page = Html_types.html Eliom_content.Html.elt
type options = unit
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let out =
let encode x = fst (Xml_print.Utf8.normalize_html x) in
Eliom_content.Html.Printer.pp ~encode ()
let send ?options:_ ?charset ?code ?content_type ? c =
let status = Eliom_lib.Option.map Cohttp.Code.status_of_code code
and content_type = content_type_html content_type
and body = Cohttp_lwt.Body.of_string (Format.asprintf "%a" out c) in
result_of_content ?charset ?headers ?status ~content_type body
end
module Html = Eliom_mkreg.Make (Html_base)
module Flow5_base = struct
type options = unit
type result = block_content kind
type page = Html_types.flow5 Eliom_content.Html.elt list
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let out =
let encode x = fst (Xml_print.Utf8.normalize_html x) in
Eliom_content.Html.Printer.pp_elt ~encode ()
let body l =
Lwt_stream.of_list l
|> Lwt_stream.map (Format.asprintf "%a" out)
|> Cohttp_lwt.Body.of_stream
let send ?options:_ ?charset ?code ?content_type ? c =
let status = Eliom_lib.Option.map Cohttp.Code.status_of_code code
and content_type = content_type_html content_type
and body = body c in
result_of_content ?charset ?headers ?status ~content_type body
end
module Flow5 = Eliom_mkreg.Make (Flow5_base)
let cache =
let ( <-< ) h (n, v) =
Cohttp.Header.replace h (Ocsigen_header.Name.to_string n) v
in
match cache with
| None -> headers
| Some 0 -> headers <-< (Ocsigen_header.Name.cache_control, "no-cache")
| Some duration ->
headers
<-< ( Ocsigen_header.Name.cache_control
, "max-age: " ^ string_of_int duration )
module String_base = struct
type page = string * string
type options = int
type result = unknown_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let send ?options ?charset ?code ?content_type:_ ? (c, content_type) =
let status = Eliom_lib.Option.map Cohttp.Code.status_of_code code
and body = Cohttp_lwt.Body.of_string c
and = add_cache_header options (Ocsigen_header.of_option headers) in
result_of_content ?charset ?status ~content_type ~headers body
end
module String = Eliom_mkreg.Make (String_base)
module CssText_base = struct
type page = string
type options = int
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let send ?options ?charset ?code ?content_type ? content =
String_base.send ?options ?charset ?code ?content_type ?headers
(content, "text/css")
end
module CssText = Eliom_mkreg.Make (CssText_base)
module Html_text_base = struct
type page = string
type options = unit
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let send ?options:_ ?charset ?code ?content_type ? content =
String_base.send ?charset ?code ?content_type ?headers (content, "text/html")
end
module Html_text = Eliom_mkreg.Make (Html_text_base)
(** Actions are like services, but do not generate any page. The current
page is reloaded (but if you give the optional parameter
[~options:`NoReload] to the registration function).
*)
module Action_base = struct
type page = unit
type options = [`Reload | `NoReload]
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XAlways
let send_directly ri res =
Polytables.set
~table:(Ocsigen_request.request_cache ri)
~key:Eliom_common.found_stop_key ~value:();
res
let update_request ri si cookies_override =
Ocsigen_request.update ri ~post_data:None ~meth:`GET ~cookies_override
~get_params_flat:si.Eliom_common.si_other_get_params
let send ?(options = `Reload) ?charset ?(code = 204) ?content_type ? ()
=
let user_cookies = Eliom_request_info.get_user_cookies () in
match options with
| `NoReload ->
let = Ocsigen_header.of_option headers in
let =
match Eliom_request_info.get_sp_client_appl_name () with
| Some anr ->
Cohttp.Header.replace headers
Eliom_common_base.appl_name_header_name anr
| _ -> headers
and status = Cohttp.Code.status_of_code code in
result_of_content ?charset ?content_type ~headers ~status
Cohttp_lwt.Body.empty
| `Reload -> (
let sp = Eliom_common.get_sp () in
let sitedata = Eliom_request_info.get_sitedata_sp ~sp in
let si = Eliom_request_info.get_si sp in
let ri = Eliom_request_info.get_request_sp sp in
let open Ocsigen_extensions in
match
( si.Eliom_common.si_nonatt_info
, si.Eliom_common.si_state_info
, Ocsigen_request.meth ri.request_info )
with
| ( Eliom_common.RNa_no
, (Eliom_common.RAtt_no, Eliom_common.RAtt_no)
, `GET ) ->
Lwt.return (Ocsigen_response.make (Cohttp.Response.make ()))
| _ ->
let all_cookie_info = sp.Eliom_common.sp_cookie_info in
let%lwt ric =
Eliommod_cookies.compute_new_ri_cookies (Unix.time ())
(Ocsigen_request.sub_path ri.request_info)
(Ocsigen_request.cookies ri.request_info)
all_cookie_info user_cookies
in
let%lwt all_new_cookies =
Eliommod_cookies.compute_cookies_to_send sitedata all_cookie_info
user_cookies
in
let rc = Eliom_request_info.get_request_cache_sp sp in
Polytables.set ~table:rc
~key:Eliom_common.tab_cookie_action_info_key
~value:
( sp.Eliom_common.sp_tab_cookie_info
, sp.Eliom_common.sp_user_tab_cookies
, si.Eliom_common.si_tab_cookies );
Polytables.set
~table:
(Ocsigen_request.request_cache
ri.Ocsigen_extensions.request_info)
~key:Eliom_common.eliom_params_after_action
~value:
( si.Eliom_common.si_all_get_params
, si.Eliom_common.si_all_post_params
,
si.Eliom_common.si_all_file_params
,
si.Eliom_common.si_nl_get_params
, si.Eliom_common.si_nl_post_params
, si.Eliom_common.si_nl_file_params
, si.Eliom_common.si_all_get_but_nl
, si.Eliom_common.si_ignored_get_params
, si.Eliom_common.si_ignored_post_params );
let ri = update_request ri.request_info si ric in
let%lwt () =
Eliommod_pagegen.update_cookie_table sitedata all_cookie_info
in
send_directly ri
(Ocsigen_extensions.compute_result
~previous_cookies:all_new_cookies ri))
end
module Action = Eliom_mkreg.Make (Action_base)
(** Unit services are like services, do not generate any page, and do not
reload the page. To be used carefully. Probably not useful at all.
(Same as {!Action} with [`NoReload] option).
*)
module Unit_base = struct
type page = unit
type options = unit
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XAlways
let send ?options:_ ?charset ?(code = 204) ?content_type ? _content =
let status = Cohttp.Code.status_of_code code in
result_of_content ?charset ?content_type ?headers ~status
Cohttp_lwt.Body.empty
end
module Unit = Eliom_mkreg.Make (Unit_base)
module Any_base = struct
type 'a page = 'a kind
type options = unit
type 'a return = Eliom_service.non_ocaml
let send_appl_content = Eliom_service.XAlways
let send ?options:_ ?charset ?code:_ ?content_type ?headers:_
(result : 'a kind)
=
let result = Result_types.cast_kind result in
let cohttp_response = fst (Ocsigen_response.to_cohttp result) in
let =
headers_with_content_type ?charset ?content_type
(Cohttp.Response.headers cohttp_response)
in
let response = {cohttp_response with Cohttp.Response.headers} in
Lwt.return (Ocsigen_response.update ~response result)
end
module Any = struct
include Eliom_mkreg.Make_poly (Any_base)
type 'a result = 'a kind
let send ?options ?charset ?code ?content_type ? content =
Result_types.cast_result_lwt
(Any_base.send ?options ?charset ?code ?content_type ?headers content)
end
type 'a application_name = string
let appl_self_redirect send page =
if Eliom_request_info.expecting_process_page ()
then
let response =
let =
Cohttp.Header.(add (init ()))
Eliom_common.half_xhr_redir_header
(Eliom_request_info.get_full_url ())
in
Cohttp.Response.make ~headers ()
in
Ocsigen_response.make response |> Result_types.cast_result |> Lwt.return
else
let%lwt r = (Result_types.cast_function_http send) page in
Lwt.return (Result_types.cast_result r)
module File_base = struct
type page = string
type options = int
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let send ?options ?charset ?code:_ ?content_type ? filename =
let sp = Eliom_common.get_sp () in
let request = Eliom_request_info.get_request_sp sp in
match
try Ocsigen_local_files.resolve ~request ~filename ()
with
| Ocsigen_local_files.Failed_403
| Ocsigen_local_files.Failed_404
| Ocsigen_local_files.NotReadableDirectory
->
raise Eliom_common.Eliom_404
with
| Ocsigen_local_files.RFile fname ->
let%lwt response, body =
let =
Ocsigen_header.of_option headers
|> add_cache_header options
|> headers_with_content_type ?charset ?content_type
in
Cohttp_lwt_unix.Server.respond_file ~headers ~fname ()
in
Lwt.return (Ocsigen_response.make ~body response)
| Ocsigen_local_files.RDir _ ->
raise Ocsigen_local_files.Failed_404
end
module File = struct
include Eliom_mkreg.Make (File_base)
let check_file filename =
let sp = Eliom_common.get_sp () in
let request = Eliom_request_info.get_request_sp sp in
try
ignore (Ocsigen_local_files.resolve ~request ~filename ());
true
with
| Ocsigen_local_files.Failed_403 | Ocsigen_local_files.Failed_404
| Ocsigen_local_files.NotReadableDirectory
->
false
end
module File_ct_base = struct
type page = string * string
type options = int
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XNever
let send ?options ?charset ?code ?content_type ?
(filename, content_type')
=
let content_type =
match content_type with
| Some content_type -> content_type
| None -> content_type'
in
File_base.send ?options ?charset ?code ?headers ~content_type filename
end
module File_ct = struct
include Eliom_mkreg.Make (File_ct_base)
let check_file = File.check_file
end
module Customize
(R : Eliom_registration_sigs.S_with_create)
(T : sig
type page
val translate : page -> R.page Lwt.t
end) =
struct
type page = T.page
type return = R.return
type options = R.options
type result = R.result
let make_eh = function
| None -> None
| Some eh -> Some (fun l -> eh l >>= T.translate)
let make_service_handler f g p = f g p >>= T.translate
let send ?options ?charset ?code ?content_type ? content =
T.translate content >>= fun c ->
R.send ?options ?charset ?code ?content_type ?headers c
let register ?app ?scope ?options ?charset ?code ?content_type ?
?secure_session ~service ?error_handler
(f : 'get -> 'post -> 'return Lwt.t)
=
R.register ?app ?scope ?options ?charset ?code ?content_type ?headers
?secure_session ~service ?error_handler:(make_eh error_handler)
(make_service_handler f)
let create ?app ?scope ?options ?charset ?code ?content_type ?
?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure ?max_use
?timeout ~meth ~path ?error_handler f
=
R.create ?app ?scope ?options ?charset ?code ?content_type ?headers
?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure ?max_use
?timeout ~meth ~path ?error_handler:(make_eh error_handler)
(make_service_handler f)
let create_attached_get ?app ?scope ?options ?charset ?code ?content_type
? ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~get_params ?error_handler f
=
R.create_attached_get ?app ?scope ?options ?charset ?code ?content_type
?headers ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~get_params
?error_handler:(make_eh error_handler) (make_service_handler f)
let create_attached_post ?app ?scope ?options ?charset ?code ?content_type
? ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~post_params ?error_handler f
=
R.create_attached_post ?app ?scope ?options ?charset ?code ?content_type
?headers ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~post_params
?error_handler:(make_eh error_handler) (make_service_handler f)
end
module Ocaml_base = struct
type page = string
type options = unit
type result = Ocsigen_response.t
let result_of_http_result x = x
let send_appl_content = Eliom_service.XNever
let send ?options:_ ?charset ?code ?content_type ? content =
Result_types.cast_kind_lwt
(String.send ?charset ?code ?content_type ?headers
(content, Eliom_service.eliom_appl_answer_content_type))
end
module Ocaml = struct
type 'a page = 'a
type options = unit
type 'a return = 'a Eliom_service.ocaml
type 'a result = 'a ocaml_content kind
module M = Eliom_mkreg.Make (Ocaml_base)
let prepare_data data =
let ecs_request_data =
let data = Eliom_syntax.get_request_data () in
if not (Ocsigen_config.get_debugmode ())
then
Array.iter
(fun d ->
Eliom_runtime.Client_value_server_repr.clear_loc
d.Eliom_runtime.value)
data;
data
in
let r = {Eliom_runtime.ecs_request_data; ecs_data = data} in
Lwt.return (Eliom_types.encode_eliom_data r)
let make_eh = function
| None -> None
| Some eh -> Some (fun l -> eh l >>= prepare_data)
let string_regexp = Str.regexp "\"\\([^\\\"]\\|\\\\.\\)*\""
let make_service_handler ~name f g p =
let%lwt data =
try%lwt
let%lwt res = f g p in
Lwt.return (`Success res)
with exn ->
let code = Printf.sprintf "%06x" (Random.int 0x1000000) in
let argument =
let sp = Eliom_common.get_sp () in
let si = Eliom_request_info.get_si sp in
let post_params =
match si.Eliom_common.si_all_post_params with
| None -> []
| Some l -> l
in
try Printf.sprintf " (%s)" (List.assoc "argument" post_params)
with Not_found -> ""
in
(match name with
| Some name ->
Lwt_log_core.ign_error_f ~exn
"Uncaught exception in service %s [%s]%s" name code
(Str.global_replace string_regexp "\"xxx\"" argument)
| None ->
Lwt_log_core.ign_error_f ~exn "Uncaught exception [%s]%s" code
argument);
Lwt.return (`Failure code)
in
prepare_data data
let send ?options ?charset ?code ?content_type ? content =
let%lwt content = prepare_data content in
Result_types.cast_result_lwt
(M.send ?options ?charset ?code ?content_type ?headers content)
let register ?app ?scope ?options ?charset ?code ?content_type ?
?secure_session
~(service :
( 'get
, 'post
, _
, _
, _
, Eliom_service.non_ext
, Eliom_service.reg
, _
, _
, _
, 'return Eliom_service.ocaml )
Eliom_service.t)
?(error_handler : ((string * exn) list -> 'return Lwt.t) option)
(f : 'get -> 'post -> 'return Lwt.t)
=
M.register ?app ?scope ?options ?charset ?code ?content_type ?headers
?secure_session
~service:(Eliom_service.untype service)
?error_handler:(make_eh error_handler)
(make_service_handler ~name:None f)
let create ?app ?scope ?options ?charset ?code ?content_type ?
?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure ?max_use
?timeout ~meth ~path ?error_handler f
=
Eliom_service.untype
@@ M.create ?app ?scope ?options ?charset ?code ?content_type ?headers
?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~meth ~path ?error_handler:(make_eh error_handler)
(make_service_handler ~name f)
let create_attached_get ?app ?scope ?options ?charset ?code ?content_type
? ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~get_params ?error_handler f
=
Eliom_service.untype
@@ M.create_attached_get ?app ?scope ?options ?charset ?code ?content_type
?headers ?secure_session ?https ?name ?csrf_safe ?csrf_scope
?csrf_secure ?max_use ?timeout
~fallback:(Eliom_service.untype fallback)
~get_params ?error_handler:(make_eh error_handler)
(make_service_handler ~name f)
let create_attached_post ?app ?scope ?options ?charset ?code ?content_type
? ?secure_session ?https ?name ?csrf_safe ?csrf_scope ?csrf_secure
?max_use ?timeout ~fallback ~post_params ?error_handler f
=
Eliom_service.untype
@@ M.create_attached_post ?app ?scope ?options ?charset ?code ?content_type
?headers ?secure_session ?https ?name ?csrf_safe ?csrf_scope
?csrf_secure ?max_use ?timeout
~fallback:(Eliom_service.untype fallback)
~post_params ?error_handler:(make_eh error_handler)
(make_service_handler ~name f)
end
type appl_service_options = {do_not_launch : bool}
(** [{do_not_launch = true}]: do not launch the client side program if
it is not already launched. Default: [false]. *)
let default_appl_service_options = {do_not_launch = false}
let request_template =
Eliom_reference.eref ~scope:Eliom_common.request_scope None
let global_data_unwrapper =
Eliom_wrap.create_unwrapper
(Eliom_wrap.id_of_int Eliom_runtime.global_data_unwrap_id_int)
let get_global_data ~keep_debug =
let data = Eliom_syntax.get_global_data () in
let data =
if keep_debug
then data
else
Eliom_lib.String_map.map
(fun {Eliom_runtime.server_sections_data; client_sections_data} ->
Array.iter
(Array.iter (fun d ->
Eliom_runtime.Client_value_server_repr.clear_loc
d.Eliom_runtime.value))
server_sections_data;
{ Eliom_runtime.server_sections_data
; client_sections_data =
Array.map
(Array.map (fun x ->
{x with Eliom_runtime.injection_dbg = None}))
client_sections_data })
data
in
data, global_data_unwrapper
let transform_global_app_uri = ref (fun x -> x)
module type APP = sig
val application_script :
?defer:bool
-> ?async:bool
-> unit
-> [> `Script] Eliom_content.Html.elt
val application_name : string
val is_initial_request : unit -> bool
type app_id
type page = Html_types.html Eliom_content.Html.elt
type options = appl_service_options
type return = Eliom_service.non_ocaml
type result = app_id application_content kind
include
Eliom_registration_sigs.S_with_create
with type page := page
and type options := options
and type return := return
and type result := result
val typed_name : app_id application_name
end
module App_base (App_param : Eliom_registration_sigs.APP_PARAM) = struct
type app_id
type page = Html_types.html Eliom_content.Html.elt
type options = appl_service_options
type result = app_id application_content kind
let result_of_http_result = Result_types.cast_result
let is_initial_request () =
Eliom_common.((get_sp ()).sp_client_appl_name)
<> Some App_param.application_name
let global_data_cache_options () =
(Eliom_request_info.get_sitedata ()).Eliom_common.cache_global_data
let eliom_appl_script_id : [`Script] Eliom_content.Html.Id.id =
Eliom_content.Html.Id.new_elt_id ~global:true ()
let application_script ?defer ?async () =
let defer', async' =
(Eliom_request_info.get_sitedata ()).Eliom_common.application_script
in
let defer = match defer with Some b -> b | None -> defer' in
let async = match async with Some b -> b | None -> async' in
let a =
(if defer then [Eliom_content.Html.D.a_defer ()] else [])
@ if async then [Eliom_content.Html.D.a_async ()] else []
in
Eliom_content.Html.Id.create_named_elt ~id:eliom_appl_script_id
(Eliom_content.Html.D.js_script ~a
~uri:
(Eliom_content.Html.D.make_uri
~service:(Eliom_service.static_dir ())
[App_param.application_name ^ ".js"])
())
let application_script =
(application_script
: ?defer:_ -> ?async:_ -> _ -> [`Script] Eliom_content.Html.elt
:> ?defer:_ -> ?async:_ -> _ -> [> `Script] Eliom_content.Html.elt)
let is_eliom_appl_script elt =
Eliom_content.Html.Id.have_id eliom_appl_script_id elt
let eliom_appl_data_script_id =
Eliom_content.Html.Id.new_elt_id ~global:true ()
let make_eliom_appl_data_script ~sp =
let script =
Printf.sprintf
"var __eliom_appl_sitedata = \'%s\';\nvar __eliom_appl_process_info = \'%s\'\nvar __eliom_request_data;\nvar __eliom_request_cookies;\nvar __eliom_request_template;\n"
(Eliom_lib.jsmarshal (Eliommod_cli.client_sitedata sp))
(Eliom_lib.jsmarshal sp.Eliom_common.sp_client_process_info)
in
Lwt.return
Eliom_content.Html.(
Id.create_named_elt ~id:eliom_appl_data_script_id
(F.script (F.cdata_script script)))
let make_eliom_data_script ?(keep_debug = false) ~sp page =
let ejs_global_data =
if is_initial_request () && global_data_cache_options () = None
then Some (get_global_data ~keep_debug)
else None
in
let ejs_request_data =
let data = Eliom_syntax.get_request_data () in
if not keep_debug
then
Array.iter
(fun d ->
Eliom_runtime.Client_value_server_repr.clear_loc
d.Eliom_runtime.value)
data;
data
in
let eliom_data =
Eliom_content.Xml.wrap
(Eliom_content.Html.D.toelt page)
{ Eliom_common.ejs_global_data
; ejs_request_data
; ejs_event_handler_table =
Eliom_content.Xml.make_event_handler_table
(Eliom_content.Html.D.toelt page)
; ejs_client_attrib_table =
Eliom_content.Xml.make_client_attrib_table
(Eliom_content.Html.D.toelt page)
; ejs_sess_info = Eliommod_cli.client_si sp.Eliom_common.sp_si }
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%lwt template = Eliom_reference.get request_template in
let script =
Printf.sprintf
"__eliom_request_data = \'%s\';\n__eliom_request_cookies = \'%s\';\n__eliom_request_template = \'%s\';"
(Eliom_lib.jsmarshal eliom_data)
(Eliom_lib.jsmarshal tab_cookies)
(Eliom_lib.jsmarshal (template : string option))
in
Lwt.return Eliom_content.Html.(F.script (F.cdata_script script))
let global_data_service =
lazy
(let path, max_age =
match global_data_cache_options () with
| Some v -> v
| None -> assert false
in
let global_data =
get_global_data ~keep_debug:(Ocsigen_config.get_debugmode ())
|> Eliom_wrap.wrap |> Eliom_lib.jsmarshal
in
let script =
Printf.sprintf "__eliom_global_data = \'%s\';" global_data
in
let name = Digest.to_hex (Digest.string global_data) ^ ".js" in
String.create ~options:max_age
~path:(Eliom_service.Path (path @ [name]))
~meth:(Get Eliom_parameter.unit)
(fun _ _ -> Lwt.return (script, "application/x-javascript")))
let add_eliom_global_data_script rem =
if global_data_cache_options () <> None
then
let defer, _ =
(Eliom_request_info.get_sitedata ()).Eliom_common.application_script
in
let uri =
Eliom_content.Html.F.make_uri ~absolute:false
~service:(Lazy.force global_data_service)
()
in
let a =
(if defer then [Eliom_content.Html.F.a_defer ()] else [])
@ [Eliom_content.Html.F.a_src @@ !transform_global_app_uri uri]
in
Eliom_content.Html.F.script ~a (Eliom_content.Html.F.txt "") :: rem
else rem
let split_page page :
Html_types.html_attrib Eliom_content.Html.attrib list
* (Html_types.head_attrib Eliom_content.Html.attrib list
* Html_types.title Eliom_content.Html.elt
* Html_types.head_content_fun Eliom_content.Html.elt list)
* Html_types.body Eliom_content.Html.elt
=
match Eliom_content.Xml.content page with
| Eliom_content.Xml.Node (_, html_attribs, [head; body]) -> (
match Eliom_content.Xml.content head with
| Eliom_content.Xml.Node (_, head_attribs, head_elts) ->
( List.map Eliom_content.Html.D.to_attrib html_attribs
, ( List.map Eliom_content.Html.D.to_attrib head_attribs
, Eliom_content.Html.D.tot (List.hd head_elts)
, Eliom_content.Html.D.totl (List.tl head_elts) )
, Eliom_content.Html.D.tot body )
| _ -> assert false)
| _ -> assert false
let add_eliom_scripts ~sp page =
let%lwt appl_data_script = make_eliom_appl_data_script ~sp in
let html_attribs, (head_attribs, title, head_elts), body =
split_page (Eliom_content.Html.D.toelt page)
in
let encode_slashs = List.map (Eliom_lib.Url.encode ~plus:false) in
let base_url =
Eliom_uri.make_proto_prefix
(Eliom_config.default_protocol_is_https ()
|| Eliom_request_info.get_csp_ssl_sp sp)
^ Eliom_lib.String.concat "/"
(encode_slashs (Eliom_request_info.get_csp_original_full_path ()))
in
let head_elts =
if List.exists is_eliom_appl_script head_elts
then head_elts
else head_elts @ [application_script ()]
in
let head_elts =
appl_data_script
::
(if Eliom_request_info.expecting_process_page ()
then
Eliom_content.Html.(
F.base
~a:
[ F.a_id Eliom_common_base.base_elt_id
; F.a_href (Eliom_content.Xml.uri_of_string base_url) ]
())
:: head_elts
else head_elts)
in
let fake_page =
Eliom_content.Html.F.html ~a:html_attribs
(Eliom_content.Html.F.head ~a:head_attribs title head_elts)
body
in
let%lwt data_script =
make_eliom_data_script
~keep_debug:(Ocsigen_config.get_debugmode ())
~sp fake_page
in
let head_elts =
List.hd head_elts :: data_script
:: add_eliom_global_data_script (List.tl head_elts)
in
Lwt.return
(Eliom_content.Html.F.html ~a:html_attribs
(Eliom_content.Html.F.head ~a:head_attribs title head_elts)
body)
let remove_eliom_scripts page =
let html_attribs, (head_attribs, title, head_elts), body =
split_page (Eliom_content.Html.D.toelt page)
in
let head_elts =
List.filter (fun x -> not (is_eliom_appl_script x)) head_elts
in
Lwt.return
(Eliom_content.Html.F.html ~a:html_attribs
(Eliom_content.Html.F.head ~a:head_attribs title head_elts)
body)
let send_appl_content =
Eliom_service.XSame_appl (App_param.application_name, None)
let out =
let encode x = fst (Xml_print.Utf8.normalize_html x) in
Eliom_content.Html.Printer.pp ~encode ()
let send ?(options = default_appl_service_options) ?charset ?code
?content_type ? content
=
let sp = Eliom_common.get_sp () in
if sp.Eliom_common.sp_client_appl_name <> Some App_param.application_name
then
Eliom_state.set_cookie ~cookie_level:`Client_process
~name:Eliom_common.appl_name_cookie_name
~value:App_param.application_name ();
let%lwt body =
(match sp.Eliom_common.sp_client_appl_name, options.do_not_launch with
| None, true -> remove_eliom_scripts content
| _ -> add_eliom_scripts ~sp content)
>|= fun body -> Cohttp_lwt.Body.of_string (Format.asprintf "%a" out body)
in
let =
let h = Ocsigen_header.of_option headers in
let h =
Cohttp.Header.replace h Eliom_common_base.appl_name_header_name
App_param.application_name
in
try
let table = Eliom_request_info.get_request_cache () in
Cohttp.Header.replace h Eliom_common_base.response_url_header
(Polytables.get ~table ~key:Eliom_mkreg.suffix_redir_uri_key)
with Not_found -> h
and status = Eliom_lib.Option.map Cohttp.Code.status_of_code code
and content_type = content_type_html content_type in
result_of_content ?charset ?status ~content_type ~headers body
end
module App (App_param : Eliom_registration_sigs.APP_PARAM) = struct
module Base = App_base (App_param)
type app_id = Base.app_id
let is_initial_request = Base.is_initial_request
let application_script = Base.application_script
include Eliom_mkreg.Make (Base)
let application_name = App_param.application_name
let typed_name = App_param.application_name
let data_service_handler () () =
Lwt.return (get_global_data ~keep_debug:(Ocsigen_config.get_debugmode ()))
let _ =
match App_param.global_data_path with
| Some global_data_path ->
ignore
@@ Ocaml.create ~path:(Eliom_service.Path global_data_path)
~meth:(Get Eliom_parameter.unit) ~https:true data_service_handler
| None -> ()
end
module type TMPL_PARAMS = sig
type t
val name : string
val make_page : t -> Html_types.html Eliom_content.Html.elt Lwt.t
val update : t -> unit Eliom_client_value.t
end
module Eliom_tmpl_reg_make_param (Appl : APP) (Tmpl_param : TMPL_PARAMS) =
struct
type page = Tmpl_param.t
type options = appl_service_options
type result = Appl.app_id application_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content =
Eliom_service.XSame_appl (Appl.application_name, Some Tmpl_param.name)
let nl_template =
Eliom_parameter.make_non_localized_parameters ~prefix:"eliom"
~name:"template"
(Eliom_parameter.string "name")
let send ?(options = default_appl_service_options) ?charset ?code
?content_type ? content
=
match Eliom_parameter.get_non_localized_get_parameters nl_template with
| None ->
let%lwt () =
Eliom_reference.set request_template (Some Tmpl_param.name)
in
let%lwt content = Tmpl_param.make_page content in
Result_types.cast_kind_lwt
(Appl.send ~options ?charset ?code ?content_type ?headers content)
| Some _ ->
ignore (Tmpl_param.update content);
Result_types.cast_kind_lwt
(Ocaml.send ?charset ?code ?content_type ?headers ())
end
module Eliom_tmpl (App : APP) (Tmpl_param : TMPL_PARAMS) =
Eliom_mkreg.Make (Eliom_tmpl_reg_make_param (App) (Tmpl_param))
type redirection_options =
[ `MovedPermanently
| `Found
| `SeeOther
| `NotNodifed
| `UseProxy
| `TemporaryRedirect ]
let status_of_redirection_options options code =
match code with
| Some code -> Cohttp.Code.status_of_code code
| None -> (
match (options : redirection_options) with
| `MovedPermanently -> `Moved_permanently
| `Found -> `Found
| `SeeOther -> `See_other
| `NotNodifed -> `Not_modified
| `UseProxy -> `Use_proxy
| `TemporaryRedirect -> `Temporary_redirect)
module String_redirection_base = struct
type page = Eliom_lib.Url.uri
type options = redirection_options
type result = browser_content kind
let result_of_http_result = Result_types.cast_result
let send_appl_content = Eliom_service.XAlways
let send ?(options = `Found) ?charset ?code ?content_type ? uri =
let = Ocsigen_header.of_option headers
and , status =
if not (Eliom_request_info.expecting_process_page ())
then
( Ocsigen_header.Name.(to_string location)
, status_of_redirection_options options code )
else Eliom_common.half_xhr_redir_header, `OK
in
let = Cohttp.Header.replace headers header_id uri in
result_of_content ?charset ?content_type ~status ~headers
(Cohttp.Body.empty :> Cohttp_lwt.Body.t)
end
module String_redirection = Eliom_mkreg.Make (String_redirection_base)
type _ redirection =
| Redirection :
( unit
, unit
, Eliom_service.get
, _
, _
, _
, _
, [`WithoutSuffix]
, unit
, unit
, 'a )
Eliom_service.t
-> 'a redirection
module Redirection_base = struct
type 'a page = 'a redirection
type options = redirection_options
type 'a return = 'a
let send_appl_content = Eliom_service.XAlways
let send ?(options = `Found) ?charset ?code ?content_type ?
(Redirection service)
=
let uri = Eliom_uri.make_string_uri ~service ()
and = Ocsigen_header.of_option headers in
match
( Eliom_request_info.expecting_process_page ()
, Eliom_request_info.get_sp_client_appl_name () )
with
| true, None | false, _ ->
let status = status_of_redirection_options options code
and =
Cohttp.Header.replace headers
Ocsigen_header.Name.(to_string location)
uri
in
result_of_content ?charset ?content_type ~status ~headers
(Cohttp.Body.empty :> Cohttp_lwt.Body.t)
| true, Some anr ->
let =
Cohttp.Header.replace headers Eliom_common_base.appl_name_header_name
anr
in
let =
Cohttp.Header.replace headers
(match Eliom_service.send_appl_content service with
| Eliom_service.XSame_appl (an, _) when an = anr ->
Eliom_common.full_xhr_redir_header
| Eliom_service.XAlways ->
Eliom_common.full_xhr_redir_header
| _ ->
Eliom_common.half_xhr_redir_header)
uri
in
result_of_content ?charset ?content_type ~status:`No_content ~headers
(Cohttp.Body.empty :> Cohttp_lwt.Body.t)
end
module Redirection = struct
include Eliom_mkreg.Make_poly (Redirection_base)
let send ?options ?charset ?code ?content_type ? content =
Result_types.cast_result_lwt
(Redirection_base.send ?options ?charset ?code ?content_type ?headers
content)
end
let set_exn_handler h =
let sitedata = Eliom_request_info.find_sitedata "set_exn_handler" in
Eliom_request_info.set_site_handler sitedata
(Result_types.cast_function_http h)