Source file eliom_route.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
# 1 "src/lib/eliom_route.server.ml"
open Eliom_lib
open Lwt
open Ocsigen_extensions
include Eliom_route_base
include Eliom_route_base.Make (struct
type site_data = Eliom_common.sitedata
type info = Eliom_common.info
let sess_info_of_info {Eliom_common.session_info; _} = session_info
let meth_of_info {Eliom_common.request; _} =
match Ocsigen_request.meth request.request_info with
| `GET -> `Get
| `POST -> `Post
| `PUT -> `Put
| `DELETE -> `Delete
| _ -> `Other
let subpath_of_info {Eliom_common.request; _} =
Ocsigen_request.sub_path request.request_info
module Container = struct
type t = Eliom_common.tables
let set t v = t.Eliom_common.table_services <- v
let get {Eliom_common.table_services; _} = table_services
let dlist_add ?sp tables lr = tables.Eliom_common.service_dlist_add ?sp lr
let set_contains_timeout tables b =
tables.Eliom_common.table_contains_services_with_timeout <- b
end
type params = Eliom_common.server_params
type result = Ocsigen_response.t
module Node = struct
type t =
( Eliom_common.page_table ref * Eliom_common.page_table_key
, Eliom_common.na_key_serv )
leftright
Ocsigen_cache.Dlist.node
let up = Ocsigen_cache.Dlist.up
let remove = Ocsigen_cache.Dlist.remove
end
module Table = struct
type t = Eliom_common.page_table
let remove = Eliom_common.Serv_Table.remove
let add k v t = Eliom_common.Serv_Table.add k (`Ptc v) t
let find k t =
let (`Ptc v) = Eliom_common.Serv_Table.find k t in
v
let empty () = Eliom_common.Serv_Table.empty
end
let make_params = Eliom_common.make_server_params
let handle_directory {Eliom_common.request = r; _} =
Lwt.fail
@@ Ocsigen_extensions.Ocsigen_is_dir
(Ocsigen_extensions.new_url_of_directory_request r)
let get_number_of_reloads () = Ocsigen_extensions.get_numberofreloads ()
end)
let find_aux now sitedata info _ sci : Ocsigen_response.t Lwt.t =
Eliom_common.Full_state_name_table.fold
(fun fullsessname (_, r) beg ->
try%lwt beg with
| Eliom_common.Eliom_404 | Eliom_common.Eliom_Wrong_parameter -> (
match !r with
| Eliom_common.SCData_session_expired
| Eliom_common.SCNo_data ->
beg
| Eliom_common.SC c ->
find_service now !(c.Eliom_common.sc_table) (Some fullsessname)
sitedata info)
| e -> fail e)
sci
(fail Eliom_common.Eliom_404)
let session_tables {Eliom_common.all_cookie_info; tab_cookie_info; _} =
let (service_cookies_info, _, _), (secure_service_cookies_info, _, _) =
all_cookie_info
and (service_cookies_info_tab, _, _), (secure_service_cookies_info_tab, _, _) =
tab_cookie_info
in
[ !secure_service_cookies_info_tab, "secure tab session table"
; !service_cookies_info_tab, "tab session table"
; !secure_service_cookies_info, "secure session table"
; !service_cookies_info, "session table" ]
let drop_most_params ri si =
Ocsigen_request.update ri ~post_data:None ~meth:`GET
~get_params_flat:si.Eliom_common.si_other_get_params
let get_page now ({Eliom_common.request = ri; session_info = si; _} as info)
sitedata : Ocsigen_response.t Lwt.t
=
let tables = session_tables info in
catch
(fun () ->
List.fold_left
(fun beg (table, table_name) ->
Lwt.catch
(fun () -> beg)
(function
| Eliom_common.Eliom_404 | Eliom_common.Eliom_Wrong_parameter
->
Lwt_log.ign_info_f ~section "Looking for %a in the %s:"
(fun _ ri ->
Url.string_of_url_path ~encode:true
(Ocsigen_request.sub_path ri.request_info))
ri table_name;
find_aux now sitedata info Eliom_common.Eliom_404 table
| e -> Lwt.fail e))
(Lwt.fail Eliom_common.Eliom_404)
tables)
(function
| Eliom_common.Eliom_404 | Eliom_common.Eliom_Wrong_parameter ->
catch
(fun () ->
Lwt_log.ign_info ~section "Searching in the global table:";
find_service now sitedata.Eliom_common.global_services None
sitedata info)
(function
| (Eliom_common.Eliom_404 | Eliom_common.Eliom_Wrong_parameter)
as exn -> (
match si.Eliom_common.si_state_info with
| Eliom_common.RAtt_no, Eliom_common.RAtt_no -> fail exn
| g, Eliom_common.RAtt_anon _ | g, Eliom_common.RAtt_named _
->
Lwt_log.ign_info ~section
"Link too old. Try without POST parameters:";
Polytables.set
~table:(Ocsigen_request.request_cache ri.request_info)
~key:Eliom_common.eliom_link_too_old ~value:true;
let request =
{ ri with
request_info =
Ocsigen_request.update ri.request_info
~post_data:None ~meth:`GET }
and session_info =
{ si with
Eliom_common.si_nonatt_info = Eliom_common.RNa_no
; Eliom_common.si_state_info = g, Eliom_common.RAtt_no
}
in
fail
@@ Eliom_common.Eliom_retry_with
{info with Eliom_common.request; session_info}
| Eliom_common.RAtt_named _, Eliom_common.RAtt_no
| Eliom_common.RAtt_anon _, Eliom_common.RAtt_no ->
Lwt_log.ign_info ~section
"Link to old. Trying without GET state parameters and POST parameters:";
Polytables.set
~table:(Ocsigen_request.request_cache ri.request_info)
~key:Eliom_common.eliom_link_too_old ~value:true;
let request =
{ ri with
request_info = drop_most_params ri.request_info si }
and session_info =
let open Eliom_common in
{ si with
si_nonatt_info = RNa_no
; si_state_info = RAtt_no, RAtt_no
; si_other_get_params = [] }
in
fail
@@ Eliom_common.Eliom_retry_with
{info with Eliom_common.request; session_info})
| e -> fail e)
| e -> fail e)
let add_naservice_table at (key, elt) =
match at with
| Eliom_common.AVide ->
Eliom_common.ATable
(Eliom_common.NAserv_Table.add key elt Eliom_common.NAserv_Table.empty)
| Eliom_common.ATable t ->
Eliom_common.ATable (Eliom_common.NAserv_Table.add key elt t)
let find_naservice_table at k =
match at with
| Eliom_common.AVide -> raise Not_found
| Eliom_common.ATable t -> Eliom_common.NAserv_Table.find k t
let add_naservice tables name (max_use, expdate, naservice) =
let sp = Eliom_common.get_sp_option () in
let generation = Ocsigen_extensions.get_numberofreloads () in
(if sp = None
then
try
let g, _, _, _, _ =
find_naservice_table !(tables.Eliom_common.table_naservices) name
in
if g = generation
then
match name with
| Eliom_common.SNa_no | Eliom_common.SNa_get' _
| Eliom_common.SNa_post' _ ->
raise
(Eliom_common.Eliom_duplicate_registration
"<non-attached coservice>")
| Eliom_common.SNa_get_ n ->
raise
(Eliom_common.Eliom_duplicate_registration
("GET non-attached service " ^ n))
| Eliom_common.SNa_post_ n ->
raise
(Eliom_common.Eliom_duplicate_registration
("POST non-attached service " ^ n))
| Eliom_common.SNa_void_dontkeep | Eliom_common.SNa_void_keep ->
raise
(Eliom_common.Eliom_duplicate_registration "<void coservice>")
| Eliom_common.SNa_get_csrf_safe _ | Eliom_common.SNa_post_csrf_safe _
->
assert false
with Not_found -> ());
(match expdate with
| Some _ -> tables.Eliom_common.table_contains_naservices_with_timeout <- true
| _ -> ());
let node =
match name with
| Eliom_common.SNa_get' _ | Eliom_common.SNa_post' _ ->
Some (tables.Eliom_common.service_dlist_add ?sp (Right name))
| _ -> None
in
tables.Eliom_common.table_naservices :=
add_naservice_table
!(tables.Eliom_common.table_naservices)
(name, (generation, max_use, expdate, naservice, node))
let remove_naservice_ tables name nodeopt =
match nodeopt with
| None ->
tables.Eliom_common.table_naservices :=
Eliom_common.remove_naservice_table
!(tables.Eliom_common.table_naservices)
name
| Some node -> Ocsigen_cache.Dlist.remove node
let find_naservice now tables name =
let ((_, _, expdate, _, nodeopt) as p) =
find_naservice_table !(tables.Eliom_common.table_naservices) name
in
match expdate with
| Some (_, e) when !e < now ->
Lwt_log.ign_info ~section "Non attached service expired. Removing it";
remove_naservice_ tables name nodeopt;
raise Not_found
| _ ->
(match nodeopt with
| Some node -> Ocsigen_cache.Dlist.up node
| None -> ());
p
let remove_naservice tables name =
let _, _, _, _, nodeopt =
find_naservice_table !(tables.Eliom_common.table_naservices) name
in
remove_naservice_ tables name nodeopt
let make_naservice now
({Eliom_common.request = ri; session_info = si; _} as info) sitedata
=
let find_aux sci =
match
Eliom_common.Full_state_name_table.fold
(fun fullsessname (_, r) beg ->
match beg with
| Eliom_common.Found _ -> beg
| Eliom_common.Notfound _ -> (
match !r with
| Eliom_common.SCNo_data | Eliom_common.SCData_session_expired ->
beg
| Eliom_common.SC c -> (
try
Eliom_common.Found
( find_naservice now !(c.Eliom_common.sc_table)
(Eliom_common.na_key_serv_of_req
si.Eliom_common.si_nonatt_info)
, !(c.Eliom_common.sc_table)
, Some fullsessname )
with Not_found -> beg)))
sci (Eliom_common.Notfound ())
with
| Eliom_common.Found v -> v
| Eliom_common.Notfound _ -> raise Not_found
in
let tables = session_tables info in
(try
try
let rec f = function
| [] -> raise Not_found
| (table, table_name) :: l -> (
Lwt_log.ign_info_f ~section
"Looking for a non attached service in the %s:" table_name;
try return (find_aux table) with Not_found -> f l)
in
f tables
with Not_found ->
Lwt_log.ign_info ~section
"Looking for a non attached service in the global table";
return
( find_naservice now sitedata.Eliom_common.global_services
(Eliom_common.na_key_serv_of_req si.Eliom_common.si_nonatt_info)
, sitedata.Eliom_common.global_services
, None )
with Not_found -> (
match si.Eliom_common.si_nonatt_info with
| Eliom_common.RNa_no -> assert false
| Eliom_common.RNa_post_ _ | Eliom_common.RNa_post' _ ->
Lwt_log.ign_info ~section
"Link too old to a non-attached POST coservice. Try without POST parameters:";
Polytables.set
~table:(Ocsigen_request.request_cache ri.request_info)
~key:Eliom_common.eliom_link_too_old ~value:true;
Eliom_common.get_session_info ~sitedata
~req:
{ ri with
Ocsigen_extensions.request_info =
drop_most_params ri.request_info si }
si.Eliom_common.si_previous_extension_error
>>= fun (ri', si', _previous_tab_cookies_info) ->
Lwt.fail
@@ Eliom_common.Eliom_retry_with
{info with request = ri'; session_info = si'}
| Eliom_common.RNa_get_ _ | Eliom_common.RNa_get' _ ->
Lwt_log.ign_info ~section
"Link too old. Try without non-attached parameters:";
Polytables.set
~table:(Ocsigen_request.request_cache ri.request_info)
~key:Eliom_common.eliom_link_too_old ~value:true;
Eliom_common.get_session_info ~sitedata
~req:
{ ri with
Ocsigen_extensions.request_info =
drop_most_params ri.request_info si }
si.Eliom_common.si_previous_extension_error
>>= fun (ri', si', _previous_tab_cookies_info) ->
Lwt.fail
@@ Eliom_common.Eliom_retry_with
{info with request = ri'; session_info = si'}))
>>= fun ( (_, max_use, expdate, naservice, node)
, tablewhereithasbeenfound
, fullsessname ) ->
let sp = Eliom_common.make_server_params sitedata info None fullsessname in
naservice sp >>= fun r ->
Lwt_log.ign_info ~section "Non attached page found and generated successfully";
(match expdate with Some (timeout, e) -> e := timeout +. now | None -> ());
(match max_use with
| None -> ()
| Some r ->
if !r = 1
then
remove_naservice_ tablewhereithasbeenfound
(Eliom_common.na_key_serv_of_req si.Eliom_common.si_nonatt_info)
node
else r := !r - 1);
return r