gotenberg_pdf 0.5.2

A Rust client for the Gotenberg PDF API
Documentation
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
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

/// Gotenberg server health status. See [`Client::health_check`].
pub mod health;

mod client;
mod page_range;
mod paper_format;

#[cfg(feature = "stream")]
mod streaming_client;

#[cfg(feature = "blocking")]
mod blocking_client;

#[cfg(feature = "stream")]
#[cfg_attr(docsrs, doc(cfg(feature = "stream")))]
pub use crate::streaming_client::StreamingClient;

#[cfg(feature = "blocking")]
#[cfg_attr(docsrs, doc(cfg(feature = "blocking")))]
pub use crate::blocking_client::BlockingClient;

pub use crate::paper_format::*;
/// Re-exported from the `bytes` crate (See [`bytes::Bytes`]).
pub use bytes::Bytes;
pub use client::*;
pub use page_range::*;
use reqwest::multipart;
use reqwest::Error as ReqwestError;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fmt::{self, Debug};
use std::str::FromStr;

#[cfg(all(test, not(target_arch = "wasm32")))]
mod tests;

#[cfg(all(test, feature = "stream", not(target_arch = "wasm32")))]
mod streaming_tests;

#[cfg(all(test, feature = "blocking", not(target_arch = "wasm32")))]
mod blocking_tests;

#[cfg(all(test, target_arch = "wasm32"))]
mod wasm_tests;

/// Error type for the Gotenberg API.
#[derive(Debug)]
pub enum Error {
    /// Filename Error
    FilenameError(String),

    /// Error communicating with the gotenberg server.
    CommunicationError(ReqwestError),

    /// PDF rendering error.
    RenderingError(String),

    /// Error parsing a string into a type
    // (Type, Subject, Message)
    ParseError(String, String, String),
}

impl Into<Error> for ReqwestError {
    fn into(self) -> Error {
        Error::CommunicationError(self)
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::FilenameError(e) => write!(f, "gotenberg_pdf: Filename Error: {}", e),
            Error::CommunicationError(e) => write!(
                f,
                "gotenberg_pdf: Error communicating with the guotenberg server: {}",
                e
            ),
            Error::RenderingError(e) => {
                write!(f, "gotenberg_pdf: PDF / Image Rendering Error: {}", e)
            }
            Error::ParseError(t, s, e) => {
                write!(f, "gotenberg_pdf: Error Parsing {} from `{}`: {}", t, s, e)
            }
        }
    }
}

impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Error::CommunicationError(e) => Some(e),
            _ => None,
        }
    }
}

/// Configuration for rendering PDF from web content using the Chromium engine.
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WebOptions {
    /// By default, the API assigns a unique UUID trace to every request. However, you also have the option to specify the trace for each request.
    /// This trace will show up on the end server as a `Gotenberg-Trace` header.
    pub trace_id: Option<String>,

    /// Define whether to print the entire content on one single page.
    /// Default: `false`
    pub single_page: Option<bool>,

    /// Specify paper width using units like 72pt, 96px, 1in, 25.4mm, 2.54cm, or 6pc.
    /// Default: `8.5` (inches)
    pub paper_width: Option<LinearDimention>,

    /// Specify paper height using units like 72pt, 96px, 1in, 25.4mm, 2.54cm, or 6pc.
    /// Default: `11` (inches)
    pub paper_height: Option<LinearDimention>,

    /// Specify top margin width using units like 72pt, 96px, 1in, 25.4mm, 2.54cm, or 6pc.
    /// Default: `0.39` (inches)
    pub margin_top: Option<LinearDimention>,

    /// Specify bottom margin width using units like 72pt, 96px, 1in, 25.4mm, 2.54cm, or 6pc.
    /// Default: `0.39` (inches)
    pub margin_bottom: Option<LinearDimention>,

    /// Specify left margin width using units like 72pt, 96px, 1in, 25.4mm, 2.54cm, or 6pc.
    /// Default: `0.39` (inches)
    pub margin_left: Option<LinearDimention>,

    /// Specify right margin width using units like 72pt, 96px, 1in, 25.4mm, 2.54cm, or 6pc.
    /// Default: `0.39` (inches)
    pub margin_right: Option<LinearDimention>,

    /// Define whether to prefer page size as defined by CSS.
    /// Default: `false`
    pub prefer_css_page_size: Option<bool>,

    /// Define whether the document outline should be embedded into the PDF.
    /// Default: `false`
    pub generate_document_outline: Option<bool>,

    /// Print the background graphics.
    /// Default: `false`
    pub print_background: Option<bool>,

    /// Hide the default white background and allow generating PDFs with transparency.
    /// Default: `false`
    pub omit_background: Option<bool>,

    /// Set the page orientation to landscape.
    /// Default: `false`
    pub landscape: Option<bool>,

    /// The scale of the page rendering.
    /// Default: `1.0`
    pub scale: Option<f64>,

    /// Page ranges to print, e.g., '1-5, 8, 11-13' - empty means all pages.
    /// Default: `All pages`
    pub native_page_ranges: Option<PageRange>,

    /// HTML content containing the header.
    ///
    /// The following classes allow you to inject printing values into the header:
    ///   date - formatted print date.
    ///   title - document title.
    ///   url - document location.
    ///   pageNumber - current page number.
    ///   totalPages - total pages in the document.
    ///
    /// Caveats: No JavaScript or external resources.
    pub header_html: Option<String>,

    /// HTML content containing the footer.
    ///
    /// The following classes allow you to inject printing values into the footer:
    ///   date - formatted print date.
    ///   title - document title.
    ///   url - document location.
    ///   pageNumber - current page number.
    ///   totalPages - total pages in the document.
    ///
    /// Caveats: No JavaScript or external resources.
    pub footer_html: Option<String>,

    /// Duration to wait when loading an HTML document before converting it into PDF.
    pub wait_delay: Option<std::time::Duration>,

    /// The JavaScript expression to wait before converting an HTML document into PDF until it returns true.
    ///
    /// For example:
    ///    ```text
    ///    # Somewhere in the HTML document.
    ///    var globalVar = 'notReady'
    ///    await promises()
    ///    window.globalVar = 'ready'
    ///    ```
    ///
    ///    ```text
    ///    request_options.wait_until = Some("window.globalVar === 'ready'".to_string());
    ///    ```
    pub wait_for_expression: Option<String>,

    /// The media type to emulate, either "screen" or "print". Default: "print".
    pub emulated_media_type: Option<MediaType>,

    /// Cookies to store in the Chromium cookie jar
    pub cookies: Option<Vec<Cookie>>,

    /// Do not wait for Chromium network to be idle. Default: true.
    ///
    /// If you are having problems where the page is not fully rendered, try setting this to false.
    pub skip_network_idle_events: Option<bool>,

    /// Override the default User-Agent HTTP header.
    pub user_agent: Option<String>,

    /// Extra HTTP headers to send by Chromium.
    pub extra_http_headers: Option<HashMap<String, String>>,

    /// Convert the resulting PDF into the given PDF/A format
    pub pdfa: Option<PDFFormat>,

    /// Enable PDF for Universal Access for optimal accessibility.
    pub pdfua: Option<bool>,

    /// Write PDF metadata.
    /// Not all metadata are writable. Consider taking a look at <https://exiftool.org/TagNames/XMP.html#pdf> for an (exhaustive?) list of available metadata.
    /// Caution: Writing metadata may compromise PDF/A compliance.
    pub metadata: Option<HashMap<String, serde_json::Value>>,

    /// Fail on these HTTP status codes.
    /// Fail a response if the HTTP status code from the main page is not acceptable.
    /// An X99 entry means every HTTP status codes between X00 and X99 (e.g., 499 means every HTTP status codes between 400 and 499).
    /// Default: `[499,599]` (all 4XX and 5XX status codes)
    pub fail_on_http_status_codes: Option<Vec<u32>>,

    /// Fail on these HTTP status codes on resources.
    /// Fail a response if any of the resources loaded in the page have a status code that is not acceptable.
    /// An X99 entry means every HTTP status codes between X00 and X99 (e.g., 499 means every HTTP status codes between 400 and 499).
    /// Default: None
    pub fail_on_resource_http_status_codes: Option<Vec<u32>>,

    /// Fail a response if Chromium fails to load at least one resource. Default: `false`.
    pub fail_on_resource_loading_failed: Option<bool>,

    /// Fail a response if there are exceptions in the Chromium console.
    pub fail_on_console_exceptions: Option<bool>,
}

impl WebOptions {
    /// Set the paper format. If a custom paper size is needed, set the `paper_width` and `paper_height` fields manually.
    pub fn set_paper_format(&mut self, format: PaperFormat) {
        self.paper_width = Some(format.width());
        self.paper_height = Some(format.height());
    }

    fn fill_form(self, form: reqwest::multipart::Form) -> reqwest::multipart::Form {
        let mut form = form;

        if let Some(single_page) = self.single_page {
            form = form.text("singlePage", single_page.to_string());
        }

        if let Some(paper_width) = self.paper_width {
            form = form.text("paperWidth", format!("{}", paper_width));
        }

        if let Some(paper_height) = self.paper_height {
            form = form.text("paperHeight", format!("{}", paper_height));
        }

        if let Some(margin_top) = self.margin_top {
            form = form.text("marginTop", margin_top.to_string());
        }

        if let Some(margin_bottom) = self.margin_bottom {
            form = form.text("marginBottom", margin_bottom.to_string());
        }

        if let Some(margin_left) = self.margin_left {
            form = form.text("marginLeft", margin_left.to_string());
        }

        if let Some(margin_right) = self.margin_right {
            form = form.text("marginRight", margin_right.to_string());
        }

        if let Some(prefer_css_page_size) = self.prefer_css_page_size {
            form = form.text("preferCssPageSize", prefer_css_page_size.to_string());
        }

        if let Some(generate_document_outline) = self.generate_document_outline {
            form = form.text(
                "generateDocumentOutline",
                generate_document_outline.to_string(),
            );
        }

        if let Some(print_background) = self.print_background {
            form = form.text("printBackground", print_background.to_string());
        }

        if let Some(omit_background) = self.omit_background {
            form = form.text("omitBackground", omit_background.to_string());
        }

        if let Some(landscape) = self.landscape {
            form = form.text("landscape", landscape.to_string());
        }

        if let Some(scale) = self.scale {
            form = form.text("scale", scale.to_string());
        }

        if let Some(native_page_ranges) = self.native_page_ranges {
            form = form.text("nativePageRanges", native_page_ranges.to_string());
        }

        if let Some(header_html) = self.header_html {
            let file_bytes = header_html.into_bytes();
            let part = multipart::Part::bytes(file_bytes)
                .file_name("header.html")
                .mime_str("text/html")
                .unwrap();
            form = form.part("header.html", part);
        }

        if let Some(footer_html) = self.footer_html {
            let file_bytes = footer_html.into_bytes();
            let part = multipart::Part::bytes(file_bytes)
                .file_name("footer.html")
                .mime_str("text/html")
                .unwrap();
            form = form.part("footer.html", part);
        }

        if let Some(wait_delay) = self.wait_delay {
            form = form.text("waitDelay", format!("{}ms", wait_delay.as_millis()));
        }

        if let Some(wait_for_expression) = self.wait_for_expression {
            form = form.text("waitForExpression", wait_for_expression);
        }

        if let Some(emulated_media_type) = self.emulated_media_type {
            form = form.text("emulatedMediaType", emulated_media_type.to_string());
        }

        if let Some(cookies) = self.cookies {
            form = form.text("cookies", serde_json::to_string(&cookies).unwrap());
        }

        if let Some(skip_network_idle_events) = self.skip_network_idle_events {
            form = form.text(
                "skipNetworkIdleEvents",
                skip_network_idle_events.to_string(),
            );
        }

        if let Some(user_agent) = self.user_agent {
            form = form.text("userAgent", user_agent);
        }

        if let Some(extra_http_headers) = self.extra_http_headers {
            form = form.text(
                "extraHttpHeaders",
                serde_json::to_string(&extra_http_headers).unwrap(),
            );
        }

        if let Some(pdfa) = self.pdfa {
            form = form.text("pdfa", pdfa.to_string());
        }

        if let Some(pdfua) = self.pdfua {
            form = form.text("pdfua", pdfua.to_string());
        }

        if let Some(metadata) = self.metadata {
            form = form.text("metadata", serde_json::to_string(&metadata).unwrap());
        }

        if let Some(fail_on_http_status_codes) = self.fail_on_http_status_codes {
            form = form.text(
                "failOnHttpStatusCodes",
                serde_json::to_string(&fail_on_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_http_status_codes) = self.fail_on_resource_http_status_codes {
            form = form.text(
                "failOnResourceHttpStatusCodes",
                serde_json::to_string(&fail_on_resource_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_loading_failed) = self.fail_on_resource_loading_failed {
            form = form.text(
                "failOnResourceLoadingFailed",
                fail_on_resource_loading_failed.to_string(),
            );
        }

        if let Some(fail_on_console_exceptions) = self.fail_on_console_exceptions {
            form = form.text(
                "failOnConsoleExceptions",
                fail_on_console_exceptions.to_string(),
            );
        }

        form
    }

    #[cfg(feature = "blocking")]
    fn fill_form_blocking(
        self,
        form: reqwest::blocking::multipart::Form,
    ) -> reqwest::blocking::multipart::Form {
        let mut form = form;

        if let Some(single_page) = self.single_page {
            form = form.text("singlePage", single_page.to_string());
        }

        if let Some(paper_width) = self.paper_width {
            form = form.text("paperWidth", format!("{}", paper_width));
        }

        if let Some(paper_height) = self.paper_height {
            form = form.text("paperHeight", format!("{}", paper_height));
        }

        if let Some(margin_top) = self.margin_top {
            form = form.text("marginTop", margin_top.to_string());
        }

        if let Some(margin_bottom) = self.margin_bottom {
            form = form.text("marginBottom", margin_bottom.to_string());
        }

        if let Some(margin_left) = self.margin_left {
            form = form.text("marginLeft", margin_left.to_string());
        }

        if let Some(margin_right) = self.margin_right {
            form = form.text("marginRight", margin_right.to_string());
        }

        if let Some(prefer_css_page_size) = self.prefer_css_page_size {
            form = form.text("preferCssPageSize", prefer_css_page_size.to_string());
        }

        if let Some(generate_document_outline) = self.generate_document_outline {
            form = form.text(
                "generateDocumentOutline",
                generate_document_outline.to_string(),
            );
        }

        if let Some(print_background) = self.print_background {
            form = form.text("printBackground", print_background.to_string());
        }

        if let Some(omit_background) = self.omit_background {
            form = form.text("omitBackground", omit_background.to_string());
        }

        if let Some(landscape) = self.landscape {
            form = form.text("landscape", landscape.to_string());
        }

        if let Some(scale) = self.scale {
            form = form.text("scale", scale.to_string());
        }

        if let Some(native_page_ranges) = self.native_page_ranges {
            form = form.text("nativePageRanges", native_page_ranges.to_string());
        }

        if let Some(header_html) = self.header_html {
            let file_bytes = header_html.into_bytes();
            let part = reqwest::blocking::multipart::Part::bytes(file_bytes)
                .file_name("header.html")
                .mime_str("text/html")
                .unwrap();
            form = form.part("header.html", part);
        }

        if let Some(footer_html) = self.footer_html {
            let file_bytes = footer_html.into_bytes();
            let part = reqwest::blocking::multipart::Part::bytes(file_bytes)
                .file_name("footer.html")
                .mime_str("text/html")
                .unwrap();
            form = form.part("footer.html", part);
        }

        if let Some(wait_delay) = self.wait_delay {
            form = form.text("waitDelay", format!("{}ms", wait_delay.as_millis()));
        }

        if let Some(wait_for_expression) = self.wait_for_expression {
            form = form.text("waitForExpression", wait_for_expression);
        }

        if let Some(emulated_media_type) = self.emulated_media_type {
            form = form.text("emulatedMediaType", emulated_media_type.to_string());
        }

        if let Some(cookies) = self.cookies {
            form = form.text("cookies", serde_json::to_string(&cookies).unwrap());
        }

        if let Some(skip_network_idle_events) = self.skip_network_idle_events {
            form = form.text(
                "skipNetworkIdleEvents",
                skip_network_idle_events.to_string(),
            );
        }

        if let Some(user_agent) = self.user_agent {
            form = form.text("userAgent", user_agent);
        }

        if let Some(extra_http_headers) = self.extra_http_headers {
            form = form.text(
                "extraHttpHeaders",
                serde_json::to_string(&extra_http_headers).unwrap(),
            );
        }

        if let Some(pdfa) = self.pdfa {
            form = form.text("pdfa", pdfa.to_string());
        }

        if let Some(pdfua) = self.pdfua {
            form = form.text("pdfua", pdfua.to_string());
        }

        if let Some(metadata) = self.metadata {
            form = form.text("metadata", serde_json::to_string(&metadata).unwrap());
        }

        if let Some(fail_on_http_status_codes) = self.fail_on_http_status_codes {
            form = form.text(
                "failOnHttpStatusCodes",
                serde_json::to_string(&fail_on_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_http_status_codes) = self.fail_on_resource_http_status_codes {
            form = form.text(
                "failOnResourceHttpStatusCodes",
                serde_json::to_string(&fail_on_resource_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_loading_failed) = self.fail_on_resource_loading_failed {
            form = form.text(
                "failOnResourceLoadingFailed",
                fail_on_resource_loading_failed.to_string(),
            );
        }

        if let Some(fail_on_console_exceptions) = self.fail_on_console_exceptions {
            form = form.text(
                "failOnConsoleExceptions",
                fail_on_console_exceptions.to_string(),
            );
        }

        form
    }
}

/// Options for taking a screenshot of a webpage.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ScreenshotOptions {
    /// By default, the API assigns a unique UUID trace to every request. However, you also have the option to specify the trace for each request.
    /// This trace will show up on the end server as a `Gotenberg-Trace` header.
    pub trace_id: Option<String>,

    /// The device screen width in pixels. Default: 800.
    pub width: Option<u32>,

    /// The device screen height in pixels. Default: 600.
    pub height: Option<u32>,

    /// Define whether to clip the screenshot according to the device dimensions. Default: false.
    pub clip: Option<bool>,

    /// The image format, either "png", "jpeg" or "webp". Default: png.
    pub format: Option<ImageFormat>,

    /// The compression quality from range 0 to 100 (jpeg only). Default: 100.
    pub quality: Option<u8>,

    /// Hide the default white background and allow generating screenshots with transparency. Default: false.
    pub omit_background: Option<bool>,

    /// Define whether to optimize image encoding for speed, not for resulting size. Default: false.
    pub optimize_for_speed: Option<bool>,

    /// Duration to wait when loading an HTML document before converting it into PDF.
    pub wait_delay: Option<std::time::Duration>,

    /// The JavaScript expression to wait before converting an HTML document into PDF until it returns true.
    ///
    /// For example:
    ///    ```text
    ///    # Somewhere in the HTML document.
    ///    var globalVar = 'notReady'
    ///    await promises()
    ///    window.globalVar = 'ready'
    ///    ```
    ///
    ///    ```text
    ///    request_options.wait_until = Some("window.globalVar === 'ready'".to_string());
    ///    ```
    pub wait_for_expression: Option<String>,

    /// The media type to emulate, either "screen" or "print". Default: "print".
    pub emulated_media_type: Option<MediaType>,

    /// Cookies to store in the Chromium cookie jar
    pub cookies: Option<Vec<Cookie>>,

    /// Do not wait for Chromium network to be idle. Default: true.
    ///
    /// If you are having problems where the page is not fully rendered, try setting this to false.
    pub skip_network_idle_events: Option<bool>,

    /// Override the default User-Agent HTTP header.
    pub user_agent: Option<String>,

    /// Extra HTTP headers to send by Chromium.
    pub extra_http_headers: Option<HashMap<String, String>>,

    /// Fail on these HTTP status codes.
    /// Fail a response if the HTTP status code from the main page is not acceptable.
    /// An X99 entry means every HTTP status codes between X00 and X99 (e.g., 499 means every HTTP status codes between 400 and 499).
    /// Default: `[499,599]` (all 4XX and 5XX status codes)
    pub fail_on_http_status_codes: Option<Vec<u32>>,

    /// Fail on these HTTP status codes on resources.
    /// Fail a response if any of the resources loaded in the page have a status code that is not acceptable.
    /// An X99 entry means every HTTP status codes between X00 and X99 (e.g., 499 means every HTTP status codes between 400 and 499).
    /// Default: None
    pub fail_on_resource_http_status_codes: Option<Vec<u32>>,

    /// Fail a response if Chromium fails to load at least one resource. Default: `false`.
    pub fail_on_resource_loading_failed: Option<bool>,

    /// Fail a response if there are exceptions in the Chromium console.
    pub fail_on_console_exceptions: Option<bool>,
}

impl ScreenshotOptions {
    fn fill_form(self, form: reqwest::multipart::Form) -> reqwest::multipart::Form {
        let mut form = form;

        if let Some(width) = self.width {
            form = form.text("width", width.to_string());
        }

        if let Some(height) = self.height {
            form = form.text("height", height.to_string());
        }

        if let Some(clip) = self.clip {
            form = form.text("clip", clip.to_string());
        }

        if let Some(format) = self.format {
            form = form.text("format", format.to_string());
        }

        if let Some(quality) = self.quality {
            form = form.text("quality", quality.to_string());
        }

        if let Some(omit_background) = self.omit_background {
            form = form.text("omitBackground", omit_background.to_string());
        }

        if let Some(optimize_for_speed) = self.optimize_for_speed {
            form = form.text("optimizeForSpeed", optimize_for_speed.to_string());
        }

        if let Some(wait_delay) = self.wait_delay {
            form = form.text("waitDelay", format!("{}ms", wait_delay.as_millis()));
        }

        if let Some(wait_for_expression) = self.wait_for_expression {
            form = form.text("waitForExpression", wait_for_expression);
        }

        if let Some(emulated_media_type) = self.emulated_media_type {
            form = form.text("emulatedMediaType", emulated_media_type.to_string());
        }

        if let Some(cookies) = self.cookies {
            form = form.text("cookies", serde_json::to_string(&cookies).unwrap());
        }

        if let Some(skip_network_idle_events) = self.skip_network_idle_events {
            form = form.text(
                "skipNetworkIdleEvents",
                skip_network_idle_events.to_string(),
            );
        }

        if let Some(user_agent) = self.user_agent {
            form = form.text("userAgent", user_agent);
        }

        if let Some(extra_http_headers) = self.extra_http_headers {
            form = form.text(
                "extraHttpHeaders",
                serde_json::to_string(&extra_http_headers).unwrap(),
            );
        }

        if let Some(fail_on_http_status_codes) = self.fail_on_http_status_codes {
            form = form.text(
                "failOnHttpStatusCodes",
                serde_json::to_string(&fail_on_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_http_status_codes) = self.fail_on_resource_http_status_codes {
            form = form.text(
                "failOnResourceHttpStatusCodes",
                serde_json::to_string(&fail_on_resource_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_loading_failed) = self.fail_on_resource_loading_failed {
            form = form.text(
                "failOnResourceLoadingFailed",
                fail_on_resource_loading_failed.to_string(),
            );
        }

        if let Some(fail_on_console_exceptions) = self.fail_on_console_exceptions {
            form = form.text(
                "failOnConsoleExceptions",
                fail_on_console_exceptions.to_string(),
            );
        }

        form
    }

    #[cfg(feature = "blocking")]
    fn fill_form_blocking(
        self,
        form: reqwest::blocking::multipart::Form,
    ) -> reqwest::blocking::multipart::Form {
        let mut form = form;

        if let Some(width) = self.width {
            form = form.text("width", width.to_string());
        }

        if let Some(height) = self.height {
            form = form.text("height", height.to_string());
        }

        if let Some(clip) = self.clip {
            form = form.text("clip", clip.to_string());
        }

        if let Some(format) = self.format {
            form = form.text("format", format.to_string());
        }

        if let Some(quality) = self.quality {
            form = form.text("quality", quality.to_string());
        }

        if let Some(omit_background) = self.omit_background {
            form = form.text("omitBackground", omit_background.to_string());
        }

        if let Some(optimize_for_speed) = self.optimize_for_speed {
            form = form.text("optimizeForSpeed", optimize_for_speed.to_string());
        }

        if let Some(wait_delay) = self.wait_delay {
            form = form.text("waitDelay", format!("{}ms", wait_delay.as_millis()));
        }

        if let Some(wait_for_expression) = self.wait_for_expression {
            form = form.text("waitForExpression", wait_for_expression);
        }

        if let Some(emulated_media_type) = self.emulated_media_type {
            form = form.text("emulatedMediaType", emulated_media_type.to_string());
        }

        if let Some(cookies) = self.cookies {
            form = form.text("cookies", serde_json::to_string(&cookies).unwrap());
        }

        if let Some(skip_network_idle_events) = self.skip_network_idle_events {
            form = form.text(
                "skipNetworkIdleEvents",
                skip_network_idle_events.to_string(),
            );
        }

        if let Some(user_agent) = self.user_agent {
            form = form.text("userAgent", user_agent);
        }

        if let Some(extra_http_headers) = self.extra_http_headers {
            form = form.text(
                "extraHttpHeaders",
                serde_json::to_string(&extra_http_headers).unwrap(),
            );
        }

        if let Some(fail_on_http_status_codes) = self.fail_on_http_status_codes {
            form = form.text(
                "failOnHttpStatusCodes",
                serde_json::to_string(&fail_on_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_http_status_codes) = self.fail_on_resource_http_status_codes {
            form = form.text(
                "failOnResourceHttpStatusCodes",
                serde_json::to_string(&fail_on_resource_http_status_codes).unwrap(),
            );
        }

        if let Some(fail_on_resource_loading_failed) = self.fail_on_resource_loading_failed {
            form = form.text(
                "failOnResourceLoadingFailed",
                fail_on_resource_loading_failed.to_string(),
            );
        }

        if let Some(fail_on_console_exceptions) = self.fail_on_console_exceptions {
            form = form.text(
                "failOnConsoleExceptions",
                fail_on_console_exceptions.to_string(),
            );
        }

        form
    }
}

/// Options for converting a document to a PDF using the LibreOffice engine.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct DocumentOptions {
    /// By default, the API assigns a unique UUID trace to every request. However, you also have the option to specify the trace for each request.
    /// This trace will show up on the end server as a `Gotenberg-Trace` header.
    pub trace_id: Option<String>,

    /// Set the password for opening the source file.
    pub password: Option<String>,

    /// Set the paper orientation to landscape. default: false
    pub landscape: Option<bool>,

    /// Page ranges to print, e.g., '1-4' - empty means all pages. default: All pages
    pub native_page_ranges: Option<PageRange>,

    /// Specify whether form fields are exported as widgets or only their fixed print representation is exported. default: true
    pub export_form_fields: Option<bool>,

    /// Specify whether multiple form fields exported are allowed to have the same field name. default: false
    pub allow_duplicate_field_names: Option<bool>,

    /// Specify if bookmarks are exported to PDF. default: true
    pub export_bookmarks: Option<bool>,

    /// Specify that the bookmarks contained in the source LibreOffice file should be exported to the PDF file as Named Destination. default: false
    pub export_bookmarks_to_pdf_destination: Option<bool>,

    /// Export the placeholders fields visual markings only. The exported placeholder is ineffective. default: false
    pub export_placeholders: Option<bool>,

    /// Specify if notes are exported to PDF. default: false
    pub export_notes: Option<bool>,

    /// Specify if notes pages are exported to PDF. Notes pages are available in Impress documents only. default: false
    pub export_notes_pages: Option<bool>,

    /// Specify, if the form field exportNotesPages is set to true, if only notes pages are exported to PDF. default: false
    pub export_only_notes_pages: Option<bool>,

    /// Specify if notes in margin are exported to PDF. default: false
    pub export_notes_in_margin: Option<bool>,

    /// Specify that the target documents with `.od[tpgs]` extension, will have that extension changed to .pdf when the link is exported to PDF. The source document remains untouched. default: false
    pub convert_ooo_target_to_pdf_target: Option<bool>,

    /// Specify that the file system related hyperlinks (file:// protocol) present in the document will be exported as relative to the source document location. default: false
    pub export_links_relative_fsys: Option<bool>,

    /// Export, for LibreOffice Impress, slides that are not included in slide shows. default: false
    pub export_hidden_slides: Option<bool>,

    /// Specify that automatically inserted empty pages are suppressed. This option is active only if storing Writer documents. default: false
    pub skip_empty_pages: Option<bool>,

    /// Specify that a stream is inserted to the PDF file which contains the original document for archiving purposes. default: false
    pub add_original_document_as_stream: Option<bool>,

    /// Ignore each sheet’s paper size, print ranges and shown/hidden status and puts every sheet (even hidden sheets) on exactly one page. default: false
    pub single_page_sheets: Option<bool>,

    /// Specify if images are exported to PDF using a lossless compression format like PNG or compressed using the JPEG format. default: false
    pub lossless_image_compression: Option<bool>,

    /// Specify the quality of the JPG export. A higher value produces a higher-quality image and a larger file. Between 1 and 100. default: 90
    pub quality: Option<u8>,

    /// Specify if the resolution of each image is reduced to the resolution specified by the form field maxImageResolution. default: false
    pub reduce_image_resolution: Option<bool>,

    /// If the form field reduceImageResolution is set to true, tell if all images will be reduced to the given value in DPI. Possible values are: 75, 150, 300, 600 and 1200. default: 300
    pub max_image_resolution: Option<u32>,

    /// Convert the resulting PDF into the given PDF/A format
    pub pdfa: Option<PDFFormat>,

    /// Enable PDF for Universal Access for optimal accessibility.
    pub pdfua: Option<bool>,
}

/// Options for converting a document to a PDF using the LibreOffice engine.
impl DocumentOptions {
    fn fill_form(self, form: reqwest::multipart::Form) -> reqwest::multipart::Form {
        let mut form = form;

        if let Some(password) = self.password {
            form = form.text("password", password);
        }

        if let Some(landscape) = self.landscape {
            form = form.text("landscape", landscape.to_string());
        }

        if let Some(native_page_ranges) = self.native_page_ranges {
            form = form.text("nativePageRanges", native_page_ranges.to_string());
        }

        if let Some(export_form_fields) = self.export_form_fields {
            form = form.text("exportFormFields", export_form_fields.to_string());
        }

        if let Some(allow_duplicate_field_names) = self.allow_duplicate_field_names {
            form = form.text(
                "allowDuplicateFieldNames",
                allow_duplicate_field_names.to_string(),
            );
        }

        if let Some(export_bookmarks) = self.export_bookmarks {
            form = form.text("exportBookmarks", export_bookmarks.to_string());
        }

        if let Some(export_bookmarks_to_pdf_destination) = self.export_bookmarks_to_pdf_destination
        {
            form = form.text(
                "exportBookmarksToPdfDestination",
                export_bookmarks_to_pdf_destination.to_string(),
            );
        }

        if let Some(export_placeholders) = self.export_placeholders {
            form = form.text("exportPlaceholders", export_placeholders.to_string());
        }

        if let Some(export_notes) = self.export_notes {
            form = form.text("exportNotes", export_notes.to_string());
        }

        if let Some(export_notes_pages) = self.export_notes_pages {
            form = form.text("exportNotesPages", export_notes_pages.to_string());
        }

        if let Some(export_only_notes_pages) = self.export_only_notes_pages {
            form = form.text("exportOnlyNotesPages", export_only_notes_pages.to_string());
        }

        if let Some(export_notes_in_margin) = self.export_notes_in_margin {
            form = form.text("exportNotesInMargin", export_notes_in_margin.to_string());
        }

        if let Some(convert_ooo_target_to_pdf_target) = self.convert_ooo_target_to_pdf_target {
            form = form.text(
                "convertOooTargetToPdfTarget",
                convert_ooo_target_to_pdf_target.to_string(),
            );
        }

        if let Some(export_links_relative_fsys) = self.export_links_relative_fsys {
            form = form.text(
                "exportLinksRelativeFsys",
                export_links_relative_fsys.to_string(),
            );
        }

        if let Some(export_hidden_slides) = self.export_hidden_slides {
            form = form.text("exportHiddenSlides", export_hidden_slides.to_string());
        }

        if let Some(skip_empty_pages) = self.skip_empty_pages {
            form = form.text("skipEmptyPages", skip_empty_pages.to_string());
        }

        if let Some(add_original_document_as_stream) = self.add_original_document_as_stream {
            form = form.text(
                "addOriginalDocumentAsStream",
                add_original_document_as_stream.to_string(),
            );
        }

        if let Some(single_page_sheets) = self.single_page_sheets {
            form = form.text("singlePageSheets", single_page_sheets.to_string());
        }

        if let Some(lossless_image_compression) = self.lossless_image_compression {
            form = form.text(
                "losslessImageCompression",
                lossless_image_compression.to_string(),
            );
        }

        if let Some(quality) = self.quality {
            form = form.text("quality", quality.to_string());
        }

        if let Some(reduce_image_resolution) = self.reduce_image_resolution {
            form = form.text("reduceImageResolution", reduce_image_resolution.to_string());
        }

        if let Some(max_image_resolution) = self.max_image_resolution {
            form = form.text("maxImageResolution", max_image_resolution.to_string());
        }

        if let Some(pdfa) = self.pdfa {
            form = form.text("pdfa", pdfa.to_string());
        }

        if let Some(pdfua) = self.pdfua {
            form = form.text("pdfua", pdfua.to_string());
        }

        form
    }

    #[cfg(feature = "blocking")]
    fn fill_form_blocking(
        self,
        form: reqwest::blocking::multipart::Form,
    ) -> reqwest::blocking::multipart::Form {
        let mut form = form;

        if let Some(password) = self.password {
            form = form.text("password", password);
        }

        if let Some(landscape) = self.landscape {
            form = form.text("landscape", landscape.to_string());
        }

        if let Some(native_page_ranges) = self.native_page_ranges {
            form = form.text("nativePageRanges", native_page_ranges.to_string());
        }

        if let Some(export_form_fields) = self.export_form_fields {
            form = form.text("exportFormFields", export_form_fields.to_string());
        }

        if let Some(allow_duplicate_field_names) = self.allow_duplicate_field_names {
            form = form.text(
                "allowDuplicateFieldNames",
                allow_duplicate_field_names.to_string(),
            );
        }

        if let Some(export_bookmarks) = self.export_bookmarks {
            form = form.text("exportBookmarks", export_bookmarks.to_string());
        }

        if let Some(export_bookmarks_to_pdf_destination) = self.export_bookmarks_to_pdf_destination
        {
            form = form.text(
                "exportBookmarksToPdfDestination",
                export_bookmarks_to_pdf_destination.to_string(),
            );
        }

        if let Some(export_placeholders) = self.export_placeholders {
            form = form.text("exportPlaceholders", export_placeholders.to_string());
        }

        if let Some(export_notes) = self.export_notes {
            form = form.text("exportNotes", export_notes.to_string());
        }

        if let Some(export_notes_pages) = self.export_notes_pages {
            form = form.text("exportNotesPages", export_notes_pages.to_string());
        }

        if let Some(export_only_notes_pages) = self.export_only_notes_pages {
            form = form.text("exportOnlyNotesPages", export_only_notes_pages.to_string());
        }

        if let Some(export_notes_in_margin) = self.export_notes_in_margin {
            form = form.text("exportNotesInMargin", export_notes_in_margin.to_string());
        }

        if let Some(convert_ooo_target_to_pdf_target) = self.convert_ooo_target_to_pdf_target {
            form = form.text(
                "convertOooTargetToPdfTarget",
                convert_ooo_target_to_pdf_target.to_string(),
            );
        }

        if let Some(export_links_relative_fsys) = self.export_links_relative_fsys {
            form = form.text(
                "exportLinksRelativeFsys",
                export_links_relative_fsys.to_string(),
            );
        }

        if let Some(export_hidden_slides) = self.export_hidden_slides {
            form = form.text("exportHiddenSlides", export_hidden_slides.to_string());
        }

        if let Some(skip_empty_pages) = self.skip_empty_pages {
            form = form.text("skipEmptyPages", skip_empty_pages.to_string());
        }

        if let Some(add_original_document_as_stream) = self.add_original_document_as_stream {
            form = form.text(
                "addOriginalDocumentAsStream",
                add_original_document_as_stream.to_string(),
            );
        }

        if let Some(single_page_sheets) = self.single_page_sheets {
            form = form.text("singlePageSheets", single_page_sheets.to_string());
        }

        if let Some(lossless_image_compression) = self.lossless_image_compression {
            form = form.text(
                "losslessImageCompression",
                lossless_image_compression.to_string(),
            );
        }

        if let Some(quality) = self.quality {
            form = form.text("quality", quality.to_string());
        }

        if let Some(reduce_image_resolution) = self.reduce_image_resolution {
            form = form.text("reduceImageResolution", reduce_image_resolution.to_string());
        }

        if let Some(max_image_resolution) = self.max_image_resolution {
            form = form.text("maxImageResolution", max_image_resolution.to_string());
        }

        if let Some(pdfa) = self.pdfa {
            form = form.text("pdfa", pdfa.to_string());
        }

        if let Some(pdfua) = self.pdfua {
            form = form.text("pdfua", pdfua.to_string());
        }

        form
    }
}

/// Cookie to send to the end server.
#[derive(Debug, Serialize, Deserialize, Clone, Default)]
#[serde(rename_all = "camelCase")]
pub struct Cookie {
    /// Cookie name.
    pub name: String,

    /// Cookie value.
    pub value: String,

    /// Cookie domain.
    pub domain: String,

    /// Cookie path.
    #[serde(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,

    /// Set the cookie to secure if true.
    #[serde(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub secure: Option<bool>,

    /// Set the cookie as HTTP-only if true.
    #[serde(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub http_only: Option<bool>,

    /// The [`SameSite`] cookie attribute.
    #[serde(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub same_site: Option<SameSite>,
}

impl Cookie {
    pub fn new(name: &str, value: &str, domain: &str) -> Self {
        Cookie {
            name: name.to_string(),
            value: value.to_string(),
            domain: domain.to_string(),
            ..Default::default()
        }
    }
}

/// The `SameSite` cookie attribute.
///
/// A cookie with a SameSite attribute is imposed restrictions on when it is sent to the origin server in a cross-site request.
/// If the SameSite attribute is “Strict”, then the cookie is never sent in cross-site requests.
/// If the SameSite attribute is “Lax”, the cookie is only sent in cross-site requests with “safe” HTTP methods, i.e, GET, HEAD, OPTIONS, TRACE.
/// If the SameSite attribute is “None”, the cookie is sent in all cross-site requests if the “Secure” flag is also set, otherwise the cookie is ignored.
#[derive(Debug, Serialize, Deserialize, Clone, Copy)]
pub enum SameSite {
    Strict,
    Lax,
    None,
}

/// Supported PDF binary formats.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum PDFFormat {
    /// PDF/A-1: (ISO 19005-1:2005)
    #[serde(rename = "PDF/A-1b")]
    A1b,

    /// PDF/A-2: (ISO 19005-2:2011)
    #[serde(rename = "PDF/A-2b")]
    A2b,

    /// PDF/A-3 (ISO 19005-3:2012)
    #[serde(rename = "PDF/A-3b")]
    A3b,
}

impl PDFFormat {
    pub fn to_string(&self) -> String {
        match self {
            PDFFormat::A1b => "PDF/A-1b".to_string(),
            PDFFormat::A2b => "PDF/A-2b".to_string(),
            PDFFormat::A3b => "PDF/A-3b".to_string(),
        }
    }
}

impl fmt::Display for PDFFormat {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.to_string())
    }
}

impl FromStr for PDFFormat {
    type Err = Error;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "PDF/A-1b" => Ok(PDFFormat::A1b),
            "PDF/A-2b" => Ok(PDFFormat::A2b),
            "PDF/A-3b" => Ok(PDFFormat::A3b),
            _ => Err(Error::ParseError(
                "PDFFormat".to_string(),
                s.to_string(),
                "Invalid PDF format".to_string(),
            )),
        }
    }
}

/// Image format to use when taking a screenshot.
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum ImageFormat {
    /// Portable Network Graphics (PNG)
    #[serde(rename = "png")]
    Png,

    /// JPEG Image, best for photographs.
    #[serde(rename = "jpeg")]
    Jpeg,

    /// WebP Image, best quality and compression, but not as widely supported.
    #[serde(rename = "webp")]
    Webp,
}

impl ImageFormat {
    pub fn to_string(&self) -> String {
        match self {
            ImageFormat::Png => "png".to_string(),
            ImageFormat::Jpeg => "jpeg".to_string(),
            ImageFormat::Webp => "webp".to_string(),
        }
    }
}

impl fmt::Display for ImageFormat {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.to_string())
    }
}

impl FromStr for ImageFormat {
    type Err = Error;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "png" => Ok(ImageFormat::Png),
            "jpeg" => Ok(ImageFormat::Jpeg),
            "webp" => Ok(ImageFormat::Webp),
            _ => Err(Error::ParseError(
                "ImageFormat".to_string(),
                s.to_string(),
                "Invalid image format".to_string(),
            )),
        }
    }
}

/// Media type, either "print" or "screen".
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum MediaType {
    #[serde(rename = "screen")]
    /// Screen media type.
    Screen,

    #[serde(rename = "print")]
    /// Print media type.
    Print,
}

impl MediaType {
    pub fn to_string(&self) -> String {
        match self {
            MediaType::Screen => "screen".to_string(),
            MediaType::Print => "print".to_string(),
        }
    }
}

impl fmt::Display for MediaType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.to_string())
    }
}

impl FromStr for MediaType {
    type Err = Error;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "screen" => Ok(MediaType::Screen),
            "print" => Ok(MediaType::Print),
            _ => Err(Error::ParseError(
                "MediaType".to_string(),
                s.to_string(),
                "Invalid media type".to_string(),
            )),
        }
    }
}