Source file gapiPagespeedonlineV1Service.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
open GapiUtils.Infix
open GapiPagespeedonlineV1Model
module PagespeedapiResource =
struct
module Strategy =
struct
type t =
| Default
| Desktop
| Mobile
let to_string = function
| Default -> ""
| Desktop -> "desktop"
| Mobile -> "mobile"
let of_string = function
| "" -> Default
| "desktop" -> Desktop
| "mobile" -> Mobile
| s -> failwith ("Unexpected value for Strategy:" ^ s)
end
module PagespeedapiParameters =
struct
type t = {
alt : string;
fields : string;
prettyPrint : bool;
quotaUser : string;
userIp : string;
key : string;
filter_third_party_resources : bool;
locale : string;
rule : string list;
screenshot : bool;
strategy : Strategy.t;
url : string;
}
let default = {
alt = "";
fields = "";
prettyPrint = true;
quotaUser = "";
userIp = "";
key = "";
filter_third_party_resources = false;
locale = "";
rule = [];
screenshot = false;
strategy = Strategy.Default;
url = "";
}
let to_key_value_list qp =
let param get_value to_string name =
GapiService.build_param default qp get_value to_string name in [
param (fun p -> p.alt) (fun x -> x) "alt";
param (fun p -> p.fields) (fun x -> x) "fields";
param (fun p -> p.prettyPrint) string_of_bool "prettyPrint";
param (fun p -> p.quotaUser) (fun x -> x) "quotaUser";
param (fun p -> p.userIp) (fun x -> x) "userIp";
param (fun p -> p.key) (fun x -> x) "key";
param (fun p -> p.filter_third_party_resources) string_of_bool "filter_third_party_resources";
param (fun p -> p.locale) (fun x -> x) "locale";
GapiService.build_params qp (fun p -> p.rule) (fun x -> x) "rule";
param (fun p -> p.screenshot) string_of_bool "screenshot";
param (fun p -> p.strategy) Strategy.to_string "strategy";
param (fun p -> p.url) (fun x -> x) "url";
] |> List.concat
let merge_parameters
?(standard_parameters = GapiService.StandardParameters.default)
?(filter_third_party_resources = default.filter_third_party_resources)
?(locale = default.locale)
?(rule = default.rule)
?(screenshot = default.screenshot)
?(strategy = default.strategy)
?(url = default.url)
() =
let parameters = {
alt = standard_parameters.GapiService.StandardParameters.alt;
fields = standard_parameters.GapiService.StandardParameters.fields;
prettyPrint = standard_parameters.GapiService.StandardParameters.prettyPrint;
quotaUser = standard_parameters.GapiService.StandardParameters.quotaUser;
userIp = standard_parameters.GapiService.StandardParameters.userIp;
key = standard_parameters.GapiService.StandardParameters.key;
filter_third_party_resources;
locale;
rule;
screenshot;
strategy;
url;
} in
if parameters = default then None else Some parameters
end
let runpagespeed
?(base_url = "https://www.googleapis.com/pagespeedonline/v1/")
?std_params
?(filter_third_party_resources = false)
?(screenshot = false)
?locale
?rule
?strategy
~url
session =
let full_url = GapiUtils.add_path_to_url ["runPagespeed"] base_url in
let params = PagespeedapiParameters.merge_parameters
?standard_parameters:std_params ~filter_third_party_resources ?locale
?rule ~screenshot ?strategy ~url () in
let query_parameters = GapiOption.map
PagespeedapiParameters.to_key_value_list params in
GapiService.get ?query_parameters full_url
(GapiJson.parse_json_response Result.of_data_model) session
end