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
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
//! Request extractor types for the Ignitia web framework.
//!
//! This module provides extractors that automatically parse and extract data from HTTP requests.
//! Extractors implement the [`FromRequest`] trait, allowing them to be used as handler parameters.
//!
//! # Overview
//!
//! Extractors enable declarative request handling by automatically extracting typed data from various
//! parts of the request (path parameters, query strings, JSON bodies, headers, etc.).
//!
//! # Available Extractors
//!
//! - [`Path`] - Extract path parameters
//! - [`Query`] - Extract query string parameters
//! - [`Json`] - Parse JSON request body
//! - [`Body`] - Access raw request body
//! - [`Headers`] - Extract HTTP headers
//! - [`Cookies`] - Access request cookies
//! - [`Method`] - Extract HTTP method
//! - [`Uri`] - Extract request URI
//! - [`State`] - Access application state
//! - [`Extension`] - Access request extensions
//! - [`Form`] - Parse URL-encoded form data
//!
//! # Examples
//!
//! ## Basic Path Parameter Extraction
//!
//! ```
//! use ignitia::prelude::*;
//! use serde::Deserialize;
//!
//! #[derive(Deserialize)]
//! struct UserParams {
//! id: u32,
//! }
//!
//! async fn get_user(Path(params): Path<UserParams>) -> String {
//! format!("User ID: {}", params.id)
//! }
//!
//! let router = Router::new()
//! .get("/users/:id", get_user);
//! ```
//!
//! ## Multiple Extractors
//!
//! ```
//! use ignitia::prelude::*;
//! use serde::{Deserialize, Serialize};
//!
//! #[derive(Deserialize)]
//! struct CreateUser {
//! name: String,
//! email: String,
//! }
//!
//! #[derive(Deserialize)]
//! struct QueryParams {
//! notify: Option<bool>,
//! }
//!
//! async fn create_user(
//! Path(id): Path<String>,
//! Query(params): Query<QueryParams>,
//! Json(user): Json<CreateUser>,
//! ) -> Result<Response> {
//! // Process user creation...
//! Ok(Response::json(json!({"id": id, "name": user.name})))
//! }
//! ```
//!
//! ## Using State
//!
//! ```
//! use ignitia::prelude::*;
//! use std::sync::Arc;
//!
//! #[derive(Clone)]
//! struct AppState {
//! db_pool: Arc<DatabasePool>,
//! }
//!
//! async fn handler(State(state): State<AppState>) -> Result<Response> {
//! // Access shared state
//! let data = state.db_pool.query().await?;
//! Ok(Response::json(data))
//! }
//!
//! let state = AppState { db_pool: Arc::new(create_pool()) };
//! let router = Router::new()
//! .state(state)
//! .get("/data", handler);
//! ```
use crateExtension;
use crateIntoResponse;
use crate::;
use DeserializeOwned;
use HashMap;
/// Helper function to convert HashMap<String, String> to serde_json::Value with intelligent type conversion.
///
/// This function attempts to parse string values into their most appropriate JSON types:
/// - Integers are parsed as numbers
/// - Floats are parsed as numbers
/// - "true"/"false" are parsed as booleans
/// - Everything else remains as strings
///
/// # Parameters
/// - `map`: The HashMap to convert
///
/// # Returns
/// A serde_json::Value::Object with converted values
///
/// # Examples
/// ```
/// let mut map = HashMap::new();
/// map.insert("id".to_string(), "123".to_string());
/// map.insert("active".to_string(), "true".to_string());
/// map.insert("name".to_string(), "John".to_string());
/// map.insert("score".to_string(), "95.5".to_string());
///
/// let json_value = convert_string_map_to_json_value(&map);
/// // Results in: {"id": 123, "active": true, "name": "John", "score": 95.5}
/// ```
/// Core trait for extracting typed data from HTTP requests.
///
/// Types implementing this trait can be used as handler parameters, enabling
/// automatic extraction and validation of request data. The framework will
/// automatically call `from_request` for each extractor parameter before
/// invoking the handler function.
///
/// # Type Parameters
///
/// The trait has an associated `Error` type that must implement `Into<ExtractionError>`,
/// allowing custom error handling for failed extractions.
///
/// # Examples
///
/// ## Implementing a Custom Extractor
///
/// ```
/// use ignitia::handler::extractor::FromRequest;
/// use ignitia::Request;
///
/// struct ApiKey(String);
///
/// impl FromRequest for ApiKey {
/// type Error = ExtractionError;
///
/// fn from_request(req: &Request) -> Result<Self, Self::Error> {
/// req.header("x-api-key")
/// .map(|key| ApiKey(key.to_string()))
/// .ok_or_else(|| ExtractionError::unauthorized("Missing API key"))
/// }
/// }
///
/// async fn protected_handler(ApiKey(key): ApiKey) -> String {
/// format!("Authenticated with key: {}", key)
/// }
/// ```
/// Error type for request extraction failures.
///
/// This type represents all possible errors that can occur during request data extraction,
/// providing structured error information that can be converted into HTTP error responses.
///
/// # Fields
///
/// * `message` - Human-readable error message
/// * `status` - HTTP status code for the error response
/// * `error_type` - Machine-readable error type identifier
/// Extension extractor implementation.
///
/// This allows extracting request extensions that were previously set by middleware
/// or other parts of the application.
/// Application state extractor that provides type-safe access to shared application data.
///
/// This extractor provides a semantic wrapper around `Extension<T>` specifically designed
/// for application state. The state must be added to the router using `.state()` methods.
///
/// # Requirements
///
/// The state type `T` must implement:
/// - `Clone` - For efficient sharing across handlers
/// - `Send + Sync` - For thread safety in async context
/// - `'static` - For lifetime requirements
///
/// # Example
///
/// ```
/// use ignitia::{State, Router, Response, Result};
/// use std::sync::Arc;
///
/// #[derive(Clone)]
/// struct AppState {
/// db_pool: Arc<DatabasePool>,
/// config: AppConfig,
/// }
///
/// // Handler using application state with destructuring
/// async fn get_users(State(state): State<AppState>) -> Result<Response> {
/// let users = state.db_pool.get_all_users().await?;
/// Response::ok().json(users)
/// }
///
/// // Alternative: without destructuring
/// async fn get_posts(state: State<AppState>) -> Result<Response> {
/// let posts = state.db_pool.get_all_posts().await?;
/// Response::ok().json(posts)
/// }
///
/// // Setting up the application
/// let app = Router::new()
/// .route("/users", get_users)
/// .route("/posts", get_posts)
/// .state(app_state);
/// ```
///
/// # Multiple State Types
///
/// ```
/// async fn api_handler(
/// State(app_state): State<AppState>,
/// State(metrics): State<MetricsCollector>,
/// ) -> Result<Response> {
/// metrics.increment_requests();
/// let data = app_state.db_pool.query("SELECT * FROM api_data").await?;
/// Response::ok().json(data)
/// }
/// ```
;
/// Extractor for typed path parameters.
///
/// This extractor deserializes path parameters (like `/users/:id`) into a typed struct.
/// It uses serde for deserialization, allowing for automatic type conversion and validation.
///
/// # Type Requirements
/// The extracted type `T` must implement `DeserializeOwned` from serde.
///
/// # Examples
///
/// ## Single Parameter
/// ```
/// use ignitia::{Path, Response, Result};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct UserParams {
/// id: u64,
/// }
///
/// async fn get_user(Path(params): Path<UserParams>) -> Result<Response> {
/// Ok(Response::text(format!("User ID: {}", params.id)))
/// }
/// ```
///
/// ## Multiple Parameters
/// ```
/// use ignitia::{Path, Response, Result};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct PostParams {
/// user_id: u64,
/// post_id: u64,
/// }
///
/// async fn get_post(Path(params): Path<PostParams>) -> Result<Response> {
/// Ok(Response::text(format!("User {} Post {}", params.user_id, params.post_id)))
/// }
/// ```
///
/// ## With Validation
/// ```
/// use ignitia::{Path, Response, Result, Error};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct UserParams {
/// id: u64,
/// }
///
/// async fn get_user(Path(params): Path<UserParams>) -> Result<Response> {
/// if params.id == 0 {
/// return Err(Error::BadRequest("Invalid user ID".into()));
/// }
///
/// Ok(Response::text(format!("User ID: {}", params.id)))
/// }
/// ```
///
/// ## String Parameters
/// ```
/// use ignitia::{Path, Response, Result};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct SlugParams {
/// category: String,
/// slug: String,
/// }
///
/// async fn get_article(Path(params): Path<SlugParams>) -> Result<Response> {
/// Ok(Response::text(format!("Article: {}/{}", params.category, params.slug)))
/// }
/// ```
;
/// Extractor for typed query parameters.
///
/// This extractor deserializes URL query parameters (like `?page=1&limit=10`) into a typed struct.
/// It supports optional parameters and automatic type conversion.
///
/// # Type Requirements
/// The extracted type `T` must implement `DeserializeOwned` from serde.
///
/// # Examples
///
/// ## Basic Query Parameters
/// ```
/// use ignitia::{Query, Response, Result};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct SearchParams {
/// q: String,
/// page: Option<u32>,
/// limit: Option<u32>,
/// }
///
/// async fn search(Query(params): Query<SearchParams>) -> Result<Response> {
/// let page = params.page.unwrap_or(1);
/// let limit = params.limit.unwrap_or(10);
///
/// Ok(Response::text(format!("Search: '{}' page {} limit {}", params.q, page, limit)))
/// }
/// ```
///
/// ## Optional Parameters
/// ```
/// use ignitia::{Query, Response, Result};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct FilterParams {
/// category: Option<String>,
/// min_price: Option<f64>,
/// max_price: Option<f64>,
/// sort_by: Option<String>,
/// }
///
/// async fn filter_products(Query(params): Query<FilterParams>) -> Result<Response> {
/// let category = params.category.unwrap_or_else(|| "all".to_string());
/// let sort = params.sort_by.unwrap_or_else(|| "name".to_string());
///
/// Ok(Response::json(serde_json::json!({
/// "category": category,
/// "price_range": {
/// "min": params.min_price,
/// "max": params.max_price
/// },
/// "sort_by": sort
/// }))?)
/// }
/// ```
///
/// ## Boolean and Number Parameters
/// ```
/// use ignitia::{Query, Response, Result};
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct ListParams {
/// active: Option<bool>,
/// page: Option<u32>,
/// per_page: Option<u32>,
/// include_deleted: Option<bool>,
/// }
///
/// async fn list_items(Query(params): Query<ListParams>) -> Result<Response> {
/// let active = params.active.unwrap_or(true);
/// let include_deleted = params.include_deleted.unwrap_or(false);
///
/// Ok(Response::json(serde_json::json!({
/// "filters": {
/// "active": active,
/// "include_deleted": include_deleted
/// },
/// "pagination": {
/// "page": params.page.unwrap_or(1),
/// "per_page": params.per_page.unwrap_or(20)
/// }
/// }))?)
/// }
/// ```
;
/// JSON wrapper type for both extraction and response
///
/// # As an Extractor
///
/// Extract and deserialize JSON from request bodies:
///
/// ```
/// use ignitia::Json;
/// use serde::Deserialize;
///
/// #[derive(Deserialize)]
/// struct CreateUser {
/// name: String,
/// email: String,
/// }
///
/// async fn create_user(Json(user): Json<CreateUser>) -> Json<User> {
/// // user is already deserialized
/// let created = save_user(user).await;
/// Json(created)
/// }
/// ```
///
/// # As a Response
///
/// Serialize types to JSON responses:
///
/// ```
/// use ignitia::Json;
/// use serde::Serialize;
///
/// #[derive(Serialize)]
/// struct User {
/// id: u64,
/// name: String,
/// }
///
/// async fn get_user() -> impl IntoResponse {
/// Json(User {
/// id: 1,
/// name: "Alice".to_string(),
/// })
/// }
/// ```
///
/// # Error Handling
///
/// - Returns 400 Bad Request if JSON parsing fails
/// - Returns 500 Internal Server Error if serialization fails
/// - Automatically sets `Content-Type: application/json` header
///
/// # Performance
///
/// - Zero-copy where possible using `Bytes`
/// - Minimal allocations during serialization
/// - Efficient error handling with detailed messages
;
/// Extractor for HTTP headers.
///
/// This extractor provides access to all HTTP headers as a HashMap of strings.
/// It automatically converts header names to lowercase and values to UTF-8 strings.
///
/// # Examples
///
/// ## Basic Header Access
/// ```
/// use ignitia::{Headers, Response, Result};
///
/// async fn debug_headers(Headers(headers): Headers) -> Result<Response> {
/// let mut debug_info = Vec::new();
///
/// for (name, value) in headers.iter() {
/// debug_info.push(format!("{}: {}", name, value));
/// }
///
/// Ok(Response::text(debug_info.join("\n")))
/// }
/// ```
///
/// ## Content Type Handling
/// ```
/// use ignitia::{Headers, Response, Result, Error};
///
/// async fn handle_content_type(Headers(headers): Headers) -> Result<Response> {
/// let content_type = headers.get("content-type")
/// .ok_or_else(|| Error::BadRequest("Content-Type header required".into()))?;
///
/// match content_type.as_str() {
/// "application/json" => Ok(Response::text("JSON content detected")),
/// "application/xml" => Ok(Response::text("XML content detected")),
/// "text/plain" => Ok(Response::text("Plain text content detected")),
/// _ => Err(Error::BadRequest(format!("Unsupported content type: {}", content_type))),
/// }
/// }
/// ```
///
/// ## Custom Authorization
/// ```
/// use ignitia::{Headers, Response, Result, Error};
///
/// async fn check_auth(Headers(headers): Headers) -> Result<Response> {
/// let auth_header = headers.get("authorization")
/// .ok_or_else(|| Error::Unauthorized)?;
///
/// if auth_header.starts_with("Bearer ") {
/// let token = &auth_header[7..];
/// if is_valid_token(token) {
/// Ok(Response::text("Access granted"))
/// } else {
/// Err(Error::Unauthorized)
/// }
/// } else {
/// Err(Error::BadRequest("Bearer token required".into()))
/// }
/// }
///
/// # fn is_valid_token(_token: &str) -> bool { true }
/// ```
;
/// Extractor for HTTP cookies.
///
/// This extractor provides access to all cookies sent with the request through
/// the framework's CookieJar type, which offers convenient methods for cookie access.
///
/// # Examples
///
/// ## Basic Cookie Access
/// ```
/// use ignitia::{Cookies, Response, Result};
///
/// async fn handle_cookies(Cookies(cookies): Cookies) -> Result<Response> {
/// if let Some(session_id) = cookies.get("session_id") {
/// Ok(Response::text(format!("Session ID: {}", session_id)))
/// } else {
/// Ok(Response::text("No session found"))
/// }
/// }
/// ```
///
/// ## Multiple Cookie Access
/// ```
/// use ignitia::{Cookies, Response, Result};
///
/// async fn user_preferences(Cookies(cookies): Cookies) -> Result<Response> {
/// let theme = cookies.get("theme").unwrap_or(&"light".to_string()).clone();
/// let lang = cookies.get("language").unwrap_or(&"en".to_string()).clone();
/// let timezone = cookies.get("timezone").unwrap_or(&"UTC".to_string()).clone();
///
/// Ok(Response::json(serde_json::json!({
/// "preferences": {
/// "theme": theme,
/// "language": lang,
/// "timezone": timezone
/// }
/// }))?)
/// }
/// ```
///
/// ## Session Management
/// ```
/// use ignitia::{Cookies, Response, Result, Error};
///
/// async fn protected_route(Cookies(cookies): Cookies) -> Result<Response> {
/// let session_id = cookies.get("session_id")
/// .ok_or_else(|| Error::Unauthorized)?;
///
/// if !is_valid_session(session_id) {
/// return Err(Error::Unauthorized);
/// }
///
/// Ok(Response::text("Access granted to protected resource"))
/// }
///
/// # fn is_valid_session(_session_id: &str) -> bool { true }
/// ```
;
/// Extractor for raw request body.
///
/// This extractor provides access to the raw request body as bytes, without any
/// parsing or interpretation. Useful for handling binary data, custom formats,
/// or when you need full control over body processing.
///
/// # Examples
///
/// ## Binary Data Handling
/// ```
/// use ignitia::{Body, Response, Result};
///
/// async fn upload_image(Body(body): Body) -> Result<Response> {
/// if body.is_empty() {
/// return Ok(Response::text("No image data received"));
/// }
///
/// // Check if it's a valid image format (simple check)
/// let is_jpeg = body.starts_with(b"\xFF\xD8\xFF");
/// let is_png = body.starts_with(b"\x89PNG");
///
/// if !is_jpeg && !is_png {
/// return Err(ignitia::Error::BadRequest("Invalid image format".into()));
/// }
///
/// // Process image upload
/// Ok(Response::text(format!("Received {} bytes of image data", body.len())))
/// }
/// ```
///
/// ## Text Processing
/// ```
/// use ignitia::{Body, Response, Result, Error};
///
/// async fn process_text(Body(body): Body) -> Result<Response> {
/// let text = String::from_utf8(body.to_vec())
/// .map_err(|_| Error::BadRequest("Invalid UTF-8 text".into()))?;
///
/// let word_count = text.split_whitespace().count();
/// let char_count = text.chars().count();
/// let line_count = text.lines().count();
///
/// Ok(Response::json(serde_json::json!({
/// "stats": {
/// "words": word_count,
/// "characters": char_count,
/// "lines": line_count
/// }
/// }))?)
/// }
/// ```
///
/// ## Custom Format Parsing
/// ```
/// use ignitia::{Body, Response, Result, Error};
///
/// async fn parse_csv(Body(body): Body) -> Result<Response> {
/// let text = String::from_utf8(body.to_vec())
/// .map_err(|_| Error::BadRequest("Invalid UTF-8 in CSV".into()))?;
///
/// let mut records = Vec::new();
/// let mut lines = text.lines();
///
/// // Skip header
/// if let Some(_header) = lines.next() {
/// for line in lines {
/// let fields: Vec<&str> = line.split(',').collect();
/// records.push(fields);
/// }
/// }
///
/// Ok(Response::text(format!("Parsed {} CSV records", records.len())))
/// }
/// ```
;
/// Extractor for HTTP method.
///
/// This extractor provides access to the HTTP method of the request.
/// Useful for handlers that need to behave differently based on the method.
///
/// # Examples
///
/// ## Method-Based Logic
/// ```
/// use ignitia::{Method, Response, Result, Error};
/// use http::Method as HttpMethod;
///
/// async fn handle_method(Method(method): Method) -> Result<Response> {
/// match *method {
/// HttpMethod::GET => Ok(Response::text("GET request received")),
/// HttpMethod::POST => Ok(Response::text("POST request received")),
/// HttpMethod::PUT => Ok(Response::text("PUT request received")),
/// HttpMethod::DELETE => Ok(Response::text("DELETE request received")),
/// _ => Err(Error::BadRequest(format!("Unsupported method: {}", method))),
/// }
/// }
/// ```
///
/// ## CORS Preflight Handling
/// ```
/// use ignitia::{Method, Response, Result};
/// use http::Method as HttpMethod;
///
/// async fn cors_handler(Method(method): Method) -> Result<Response> {
/// if *method == HttpMethod::OPTIONS {
/// Ok(Response::ok()
/// .with_header("Access-Control-Allow-Origin", "*")
/// .with_header("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE")
/// .with_header("Access-Control-Allow-Headers", "Content-Type, Authorization"))
/// } else {
/// Ok(Response::text(format!("Method: {}", method)))
/// }
/// }
/// ```
;
/// Extractor for request URI information.
///
/// This extractor provides access to the complete URI information from the request,
/// including path, query string, and other URI components.
///
/// # Examples
///
/// ## URI Analysis
/// ```
/// use ignitia::{Uri, Response, Result};
///
/// async fn analyze_uri(Uri(uri): Uri) -> Result<Response> {
/// let path = uri.path();
/// let query = uri.query().unwrap_or("none");
/// let scheme = uri.scheme_str().unwrap_or("unknown");
/// let host = uri.host().unwrap_or("unknown");
///
/// Ok(Response::json(serde_json::json!({
/// "uri_info": {
/// "path": path,
/// "query": query,
/// "scheme": scheme,
/// "host": host
/// }
/// }))?)
/// }
/// ```
///
/// ## Path Parsing
/// ```
/// use ignitia::{Uri, Response, Result};
///
/// async fn path_info(Uri(uri): Uri) -> Result<Response> {
/// let path = uri.path();
/// let segments: Vec<&str> = path.split('/').filter(|s| !s.is_empty()).collect();
///
/// Ok(Response::json(serde_json::json!({
/// "path_analysis": {
/// "full_path": path,
/// "segments": segments,
/// "depth": segments.len()
/// }
/// }))?)
/// }
/// ```
///
/// ## Query String Access
/// ```
/// use ignitia::{Uri, Response, Result};
///
/// async fn query_info(Uri(uri): Uri) -> Result<Response> {
/// match uri.query() {
/// Some(query) => {
/// let params: Vec<&str> = query.split('&').collect();
/// Ok(Response::text(format!("Query has {} parameters: {}", params.len(), query)))
/// }
/// None => Ok(Response::text("No query string present"))
/// }
/// }
/// ```
;
// // Request extractor (for cases where you still need the full request)
// impl FromRequest for Request {
// fn from_request(req: &Request) -> Result<Self> {
// // We can't move out of a reference, so we'll need to clone
// // This is a limitation - in a real implementation, you'd want to avoid this
// Ok(Request {
// method: req.method.clone(),
// uri: req.uri.clone(),
// version: req.version,
// headers: req.headers.clone(),
// body: req.body.clone(),
// params: req.params.clone(),
// query_params: req.query_params.clone(),
// extensions: req.extensions.clone(),
// })
// }
// }
/// Form data extractor for `application/x-www-form-urlencoded` content.
///
/// This extractor parses form-encoded request bodies into strongly-typed structs.
/// The target type must implement `serde::de::DeserializeOwned`.
///
/// # Content Type
///
/// This extractor expects the request to have a `Content-Type` header of
/// `application/x-www-form-urlencoded`. If the content type is missing or different,
/// it will return a `BadRequest` error.
///
/// # Example
///
/// ```
/// use serde::Deserialize;
/// use ignitia::{Form, Response, Result};
///
/// #[derive(Deserialize)]
/// struct LoginForm {
/// username: String,
/// password: String,
/// remember_me: Option<bool>,
/// }
///
/// async fn login(Form(form): Form<LoginForm>) -> Result<Response> {
/// println!("Username: {}", form.username);
/// println!("Password: {}", form.password);
/// println!("Remember me: {:?}", form.remember_me);
///
/// // Process login...
/// Response::ok().json("Login successful")
/// }
/// ```
///
/// # Form Data Format
///
/// The extractor parses standard form-encoded data:
/// ```
/// username=john_doe&password=secret123&remember_me=true
/// ```
///
/// # Nested Fields
///
/// Basic nested field support using dot notation:
/// ```
/// user.name=John&user.email=john@example.com&user.age=30
/// ```
///
/// # Error Handling
///
/// - Returns `Error::BadRequest` if Content-Type is not form data
/// - Returns `Error::BadRequest` if the body contains invalid UTF-8
/// - Returns `Error::BadRequest` if deserialization fails
///
/// # Performance
///
/// This extractor clones the request body for parsing. For large form data,
/// consider using streaming approaches or the `Body` extractor directly.
;
/// Parse URL-encoded form data into a HashMap.
///
/// This function handles standard form encoding with proper URL decoding.
///
/// # Format
///
/// Supports the standard `key=value&key2=value2` format with URL encoding.
///
/// # Examples
///
/// ```
/// let data = parse_form_data("name=John%20Doe&age=30&active=true");
/// assert_eq!(data.get("name"), Some(&"John Doe".to_string()));
/// assert_eq!(data.get("age"), Some(&"30".to_string()));
/// ```
///
/// # Nested Fields
///
/// Basic support for dot-notation nested fields:
/// ```
/// let data = parse_form_data("user.name=John&user.age=30");
/// // Results in: {"user.name": "John", "user.age": "30"}
/// ```