alien-aws-clients 1.5.0

Deploy software into your customers' cloud accounts and keep it fully managed
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
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
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
use crate::aws::aws_request_utils::{AwsRequestBuilderExt, AwsRequestSigner, AwsSignConfig};
use crate::aws::credential_provider::AwsCredentialProvider;
use alien_client_core::{ErrorData, RequestBuilderExt, Result};
use alien_error::{AlienError, Context, ContextError, IntoAlienError};
use base64::{engine::general_purpose::STANDARD, Engine as _};
use bon::Builder;
use form_urlencoded;
use md5;
use quick_xml;
use reqwest::{Client, Method, StatusCode};
use serde::de::DeserializeOwned;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use tracing::debug;

#[cfg_attr(feature = "test-utils", mockall::automock)]
#[cfg_attr(target_arch = "wasm32", async_trait::async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait::async_trait)]
pub trait S3Api: Send + Sync + std::fmt::Debug {
    async fn create_bucket(&self, bucket: &str) -> Result<()>;
    async fn put_bucket_abac_tags(
        &self,
        bucket: &str,
        tags: &HashMap<String, String>,
    ) -> Result<()>;
    async fn head_bucket(&self, bucket: &str) -> Result<()>;
    async fn get_bucket_versioning(&self, bucket: &str) -> Result<GetBucketVersioningOutput>;
    async fn get_bucket_lifecycle_configuration(
        &self,
        bucket: &str,
    ) -> Result<LifecycleConfiguration>;
    async fn get_bucket_encryption(&self, bucket: &str) -> Result<GetBucketEncryptionOutput>;
    async fn get_public_access_block(&self, bucket: &str)
        -> Result<PublicAccessBlockConfiguration>;
    async fn get_bucket_policy(&self, bucket: &str) -> Result<GetBucketPolicyOutput>;
    async fn get_bucket_acl(&self, bucket: &str) -> Result<GetBucketAclOutput>;
    async fn put_bucket_versioning(&self, bucket: &str, status: VersioningStatus) -> Result<()>;
    async fn put_public_access_block(
        &self,
        bucket: &str,
        configuration: PublicAccessBlockConfiguration,
    ) -> Result<()>;
    async fn put_bucket_policy(&self, bucket: &str, policy: &str) -> Result<()>;
    async fn delete_bucket_policy(&self, bucket: &str) -> Result<()>;
    async fn put_bucket_lifecycle_configuration(
        &self,
        bucket: &str,
        configuration: &LifecycleConfiguration,
    ) -> Result<()>;
    async fn delete_bucket_lifecycle(&self, bucket: &str) -> Result<()>;
    async fn list_objects_v2(
        &self,
        bucket: &str,
        prefix: Option<String>,
        continuation_token: Option<String>,
    ) -> Result<ListObjectsV2Output>;
    async fn delete_objects(
        &self,
        bucket: &str,
        objects: &[ObjectIdentifier],
        quiet: bool,
    ) -> Result<DeleteObjectsOutput>;
    async fn empty_bucket(&self, bucket: &str) -> Result<()>;
    async fn list_object_versions(
        &self,
        bucket: &str,
        key_marker: Option<String>,
        version_id_marker: Option<String>,
    ) -> Result<ListVersionsOutput>;
    async fn delete_bucket(&self, bucket: &str) -> Result<()>;
    async fn get_bucket_location(&self, bucket: &str) -> Result<GetBucketLocationOutput>;
    async fn put_object(&self, request: &PutObjectRequest) -> Result<PutObjectOutput>;
    async fn get_object(&self, request: &GetObjectRequest) -> Result<GetObjectOutput>;
    async fn head_object(&self, request: &HeadObjectRequest) -> Result<HeadObjectOutput>;
    async fn put_bucket_notification_configuration(
        &self,
        bucket: &str,
        configuration: &NotificationConfiguration,
    ) -> Result<()>;
    async fn get_bucket_notification_configuration(
        &self,
        bucket: &str,
    ) -> Result<NotificationConfiguration>;
}

// -------------------------------------------------------------------------
// S3 client
// -------------------------------------------------------------------------
#[derive(Debug, Clone)]
pub struct S3Client {
    pub client: Client,
    pub credentials: AwsCredentialProvider,
}

impl S3Client {
    pub fn new(client: Client, credentials: AwsCredentialProvider) -> Self {
        Self {
            client,
            credentials,
        }
    }

    /// Get the region for this S3 client (used by tests)
    pub fn region(&self) -> &str {
        self.credentials.region()
    }

    /// Get the credentials for this S3 client (used by tests)
    pub fn credentials(&self) -> aws_credential_types::Credentials {
        self.credentials.get_credentials()
    }

    fn sign_config(&self) -> AwsSignConfig {
        AwsSignConfig {
            service_name: "s3".into(),
            region: self.credentials.region().to_string(),
            credentials: self.credentials.get_credentials(),
            signing_region: None,
        }
    }

    /// Encode an S3 object key for use in a URL path.
    /// Unlike form encoding, this preserves `/` characters but encodes other special characters.
    fn encode_key(key: &str) -> String {
        key.split('/')
            .map(|segment| form_urlencoded::byte_serialize(segment.as_bytes()).collect::<String>())
            .collect::<Vec<_>>()
            .join("/")
    }

    fn escape_xml(value: &str) -> String {
        value
            .replace('&', "&amp;")
            .replace('<', "&lt;")
            .replace('>', "&gt;")
            .replace('"', "&quot;")
            .replace('\'', "&apos;")
    }

    fn bucket_tagging_xml(tags: &HashMap<String, String>) -> String {
        let mut sorted_tags = tags.iter().collect::<Vec<_>>();
        sorted_tags.sort_by(|(left_key, _), (right_key, _)| left_key.cmp(right_key));

        let mut xml = String::from("<Tagging><TagSet>");
        for (key, value) in sorted_tags {
            xml.push_str("<Tag><Key>");
            xml.push_str(&Self::escape_xml(key));
            xml.push_str("</Key><Value>");
            xml.push_str(&Self::escape_xml(value));
            xml.push_str("</Value></Tag>");
        }
        xml.push_str("</TagSet></Tagging>");
        xml
    }

    fn host(&self, bucket: &str) -> String {
        if let Some(override_url) = self.credentials.get_service_endpoint_option("s3") {
            // For override URLs, we use the bucket as a path component instead of subdomain
            // This is common for local S3-compatible services like LocalStack
            override_url.trim_end_matches('/').to_string()
        } else {
            format!("{}.s3.{}.amazonaws.com", bucket, self.credentials.region())
        }
    }

    fn url(&self, bucket: &str, path: &str) -> String {
        if let Some(override_url) = self.credentials.get_service_endpoint_option("s3") {
            format!("{}/{}{}", override_url.trim_end_matches('/'), bucket, path)
        } else {
            format!(
                "https://{}.s3.{}.amazonaws.com{}",
                bucket,
                self.credentials.region(),
                path
            )
        }
    }

    async fn request_no_body(
        &self,
        method: Method,
        url: String,
        host_header: String,
        operation: &str,
        resource: &str,
    ) -> Result<()> {
        self.credentials.ensure_fresh().await?;
        let builder = self
            .client
            .request(method, &url)
            .host(&host_header)
            .content_sha256("");

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(result, operation, resource, None)
    }

    async fn request_xml<T: DeserializeOwned + Send + 'static>(
        &self,
        method: Method,
        url: String,
        host_header: String,
        body: String,
        operation: &str,
        resource: &str,
    ) -> Result<T> {
        self.credentials.ensure_fresh().await?;
        let body_clone = body.clone();
        let builder = self
            .client
            .request(method, &url)
            .host(&host_header)
            .content_type_xml()
            .content_sha256(&body)
            .body(body);

        let result =
            crate::aws::aws_request_utils::sign_send_xml(builder, &self.sign_config()).await;

        Self::map_result(result, operation, resource, Some(body_clone.as_str()))
    }

    async fn request_text(
        &self,
        method: Method,
        url: String,
        host_header: String,
        operation: &str,
        resource: &str,
    ) -> Result<String> {
        self.credentials.ensure_fresh().await?;
        let builder = self
            .client
            .request(method, &url)
            .host(&host_header)
            .content_sha256("");

        let response = builder
            .sign_aws_request(&self.sign_config())?
            .with_retry()
            .send_raw()
            .await
            .context(ErrorData::HttpRequestFailed {
                message: format!("{} request failed for '{}'", operation, resource),
            })?;

        let status = response.status();
        let body = response.text().await.unwrap_or_default();

        if !status.is_success() {
            if let Some(mapped) = Self::map_s3_error(status, &body, operation, resource, None) {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("{} failed: {}", operation, body),
                    url,
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: Some(body),
                })
                .context(mapped));
            }

            return Err(AlienError::new(ErrorData::HttpResponseError {
                message: format!("{} failed with status: {}", operation, status),
                url,
                http_status: status.as_u16(),
                http_request_text: None,
                http_response_text: Some(body),
            }));
        }

        Ok(body)
    }

    fn map_result<T>(
        result: Result<T>,
        operation: &str,
        resource_name: &str,
        request_body: Option<&str>,
    ) -> Result<T> {
        match result {
            Ok(v) => Ok(v),
            Err(e) => {
                if let Some(ErrorData::HttpResponseError {
                    http_status,
                    http_response_text: Some(ref text),
                    ..
                }) = &e.error
                {
                    let status = StatusCode::from_u16(*http_status)
                        .unwrap_or(StatusCode::INTERNAL_SERVER_ERROR);
                    if let Some(mapped) =
                        Self::map_s3_error(status, text, operation, resource_name, request_body)
                    {
                        Err(e.context(mapped))
                    } else {
                        // Couldn't parse S3 error, use original error
                        Err(e)
                    }
                } else {
                    Err(e)
                }
            }
        }
    }

    fn map_s3_error(
        status: StatusCode,
        body: &str,
        _operation: &str,
        resource_name: &str,
        request_body: Option<&str>,
    ) -> Option<ErrorData> {
        // Handle empty response bodies for specific status codes
        if body.trim().is_empty() {
            return match status {
                StatusCode::NOT_FOUND => Some(ErrorData::RemoteResourceNotFound {
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                }),
                StatusCode::CONFLICT => Some(ErrorData::RemoteResourceConflict {
                    message: "Resource conflict".into(),
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                }),
                StatusCode::FORBIDDEN | StatusCode::UNAUTHORIZED => {
                    Some(ErrorData::RemoteAccessDenied {
                        resource_type: "Bucket".into(),
                        resource_name: resource_name.into(),
                    })
                }
                StatusCode::TOO_MANY_REQUESTS => Some(ErrorData::RateLimitExceeded {
                    message: "Too many requests".into(),
                }),
                StatusCode::SERVICE_UNAVAILABLE
                | StatusCode::BAD_GATEWAY
                | StatusCode::GATEWAY_TIMEOUT => Some(ErrorData::RemoteServiceUnavailable {
                    message: "Service unavailable".into(),
                }),
                _ => None, // Let the original error be used
            };
        }

        // Try to parse S3 error xml: <Error><Code>...</Code><Message>...</Message></Error>
        let parsed: std::result::Result<S3ErrorResponse, _> = quick_xml::de::from_str(body);
        let (code, message) = match parsed {
            Ok(e) => (e.code, e.message),
            Err(_) => {
                // If we can't parse the response, fall back to status code mapping
                let default_message = "Unknown error".to_string();
                return match status {
                    StatusCode::NOT_FOUND => Some(ErrorData::RemoteResourceNotFound {
                        resource_type: "Bucket".into(),
                        resource_name: resource_name.into(),
                    }),
                    StatusCode::CONFLICT => Some(ErrorData::RemoteResourceConflict {
                        message: default_message,
                        resource_type: "Bucket".into(),
                        resource_name: resource_name.into(),
                    }),
                    StatusCode::FORBIDDEN | StatusCode::UNAUTHORIZED => {
                        Some(ErrorData::RemoteAccessDenied {
                            resource_type: "Bucket".into(),
                            resource_name: resource_name.into(),
                        })
                    }
                    StatusCode::TOO_MANY_REQUESTS => Some(ErrorData::RateLimitExceeded {
                        message: default_message,
                    }),
                    StatusCode::SERVICE_UNAVAILABLE
                    | StatusCode::BAD_GATEWAY
                    | StatusCode::GATEWAY_TIMEOUT => Some(ErrorData::RemoteServiceUnavailable {
                        message: default_message,
                    }),
                    _ => None, // Let the original error be used
                };
            }
        };

        Some(match code.as_str() {
            "NoSuchBucket" | "NoSuchKey" | "NoSuchUpload" | "NoSuchVersion" => {
                ErrorData::RemoteResourceNotFound {
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                }
            }
            "BucketAlreadyExists" | "BucketAlreadyOwnedByYou" => {
                ErrorData::RemoteResourceConflict {
                    message,
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                }
            }
            "AccessDenied"
            | "AllAccessDisabled"
            | "InvalidAccessKeyId"
            | "SignatureDoesNotMatch" => ErrorData::RemoteAccessDenied {
                resource_type: "Bucket".into(),
                resource_name: resource_name.into(),
            },
            "SlowDown" => ErrorData::RateLimitExceeded { message },
            "ServiceUnavailable" | "InternalError" => {
                ErrorData::RemoteServiceUnavailable { message }
            }
            _ => match status {
                StatusCode::NOT_FOUND => ErrorData::RemoteResourceNotFound {
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                },
                StatusCode::CONFLICT => ErrorData::RemoteResourceConflict {
                    message,
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                },
                StatusCode::FORBIDDEN | StatusCode::UNAUTHORIZED => ErrorData::RemoteAccessDenied {
                    resource_type: "Bucket".into(),
                    resource_name: resource_name.into(),
                },
                StatusCode::TOO_MANY_REQUESTS => ErrorData::RateLimitExceeded { message },
                StatusCode::SERVICE_UNAVAILABLE
                | StatusCode::BAD_GATEWAY
                | StatusCode::GATEWAY_TIMEOUT => ErrorData::RemoteServiceUnavailable { message },
                _ => ErrorData::HttpResponseError {
                    message: format!("S3 operation failed: {}", message),
                    url: format!("s3.amazonaws.com"),
                    http_status: status.as_u16(),
                    http_request_text: request_body.map(|s| s.to_string()),
                    http_response_text: Some(body.into()),
                },
            },
        })
    }

    async fn list_object_versions(
        &self,
        bucket: &str,
        key_marker: Option<String>,
        version_id_marker: Option<String>,
    ) -> Result<ListVersionsOutput> {
        let host = self.host(bucket);
        let mut url = self.url(bucket, "?versions");
        if let Some(k) = key_marker {
            url.push_str(&format!(
                "&key-marker={}",
                form_urlencoded::byte_serialize(k.as_bytes()).collect::<String>()
            ));
        }
        if let Some(v) = version_id_marker {
            url.push_str(&format!(
                "&version-id-marker={}",
                form_urlencoded::byte_serialize(v.as_bytes()).collect::<String>()
            ));
        }
        url.push_str("&max-keys=1000");
        self.request_xml(
            Method::GET,
            url,
            host,
            String::new(),
            "ListObjectVersions",
            bucket,
        )
        .await
    }
}

#[cfg_attr(target_arch = "wasm32", async_trait::async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait::async_trait)]
impl S3Api for S3Client {
    async fn create_bucket(&self, bucket: &str) -> Result<()> {
        let host = self.host(bucket);
        let body = if self.credentials.region() != "us-east-1" {
            Some(format!("<CreateBucketConfiguration xmlns=\"http://s3.amazonaws.com/doc/2006-03-01/\"><LocationConstraint>{}</LocationConstraint></CreateBucketConfiguration>", self.credentials.region()))
        } else {
            None
        };

        // Build the request – include the XML body & headers only when necessary.
        let url = self.url(bucket, "");
        let mut builder = self.client.request(Method::PUT, &url).host(&host);

        if let Some(ref body_xml) = body {
            builder = builder
                .content_type_xml()
                .content_sha256(body_xml)
                .body(body_xml.clone());
        } else {
            // Even when the body is empty we still set the SHA-256 of an empty string.
            builder = builder.content_sha256("");
        }

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(result, "CreateBucket", bucket, body.as_deref())
    }

    async fn put_bucket_abac_tags(
        &self,
        bucket: &str,
        tags: &HashMap<String, String>,
    ) -> Result<()> {
        let host = self.host(bucket);
        let body = Self::bucket_tagging_xml(tags);
        let digest = md5::compute(body.as_bytes());
        let content_md5 = STANDARD.encode(digest.0);
        let builder = self
            .client
            .request(Method::PUT, self.url(bucket, "?tagging"))
            .host(&host)
            .content_type_xml()
            .header("content-md5", &content_md5)
            .content_sha256(&body)
            .body(body.clone());

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(result, "PutBucketTagging", bucket, Some(&body))
    }

    async fn head_bucket(&self, bucket: &str) -> Result<()> {
        let host = self.host(bucket);
        self.request_no_body(
            Method::HEAD,
            self.url(bucket, ""),
            host,
            "HeadBucket",
            bucket,
        )
        .await
    }

    async fn get_bucket_versioning(&self, bucket: &str) -> Result<GetBucketVersioningOutput> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?versioning"),
            host,
            String::new(),
            "GetBucketVersioning",
            bucket,
        )
        .await
    }

    async fn get_bucket_lifecycle_configuration(
        &self,
        bucket: &str,
    ) -> Result<LifecycleConfiguration> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?lifecycle"),
            host,
            String::new(),
            "GetBucketLifecycleConfiguration",
            bucket,
        )
        .await
    }

    async fn get_bucket_encryption(&self, bucket: &str) -> Result<GetBucketEncryptionOutput> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?encryption"),
            host,
            String::new(),
            "GetBucketEncryption",
            bucket,
        )
        .await
    }

    async fn get_public_access_block(
        &self,
        bucket: &str,
    ) -> Result<PublicAccessBlockConfiguration> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?publicAccessBlock"),
            host,
            String::new(),
            "GetPublicAccessBlock",
            bucket,
        )
        .await
    }

    async fn get_bucket_policy(&self, bucket: &str) -> Result<GetBucketPolicyOutput> {
        let host = self.host(bucket);
        let policy = self
            .request_text(
                Method::GET,
                self.url(bucket, "?policy"),
                host,
                "GetBucketPolicy",
                bucket,
            )
            .await?;
        Ok(GetBucketPolicyOutput { policy })
    }

    async fn get_bucket_acl(&self, bucket: &str) -> Result<GetBucketAclOutput> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?acl"),
            host,
            String::new(),
            "GetBucketAcl",
            bucket,
        )
        .await
    }

    async fn put_bucket_versioning(&self, bucket: &str, status: VersioningStatus) -> Result<()> {
        let host = self.host(bucket);
        let config = VersioningConfiguration {
            status: Some(status),
        };
        let body = quick_xml::se::to_string_with_root("VersioningConfiguration", &config)
            .into_alien_error()
            .context(ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize VersioningConfiguration for bucket '{}'",
                    bucket
                ),
            })?;

        let url = self.url(bucket, "?versioning");
        let body_clone = body.clone();
        let builder = self
            .client
            .request(Method::PUT, &url)
            .host(&host)
            .content_type_xml()
            .content_sha256(&body)
            .body(body);

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(
            result,
            "PutBucketVersioning",
            bucket,
            Some(body_clone.as_str()),
        )
    }

    async fn put_public_access_block(
        &self,
        bucket: &str,
        configuration: PublicAccessBlockConfiguration,
    ) -> Result<()> {
        let host = self.host(bucket);
        let body =
            quick_xml::se::to_string_with_root("PublicAccessBlockConfiguration", &configuration)
                .into_alien_error()
                .context(ErrorData::SerializationError {
                    message: format!(
                        "Failed to serialize PublicAccessBlockConfiguration for bucket '{}'",
                        bucket
                    ),
                })?;

        let body_clone = body.clone();
        let builder = self
            .client
            .request(Method::PUT, &self.url(bucket, "?publicAccessBlock"))
            .host(&host)
            .content_type_xml()
            .content_sha256(&body)
            .body(body);

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(
            result,
            "PutPublicAccessBlock",
            bucket,
            Some(body_clone.as_str()),
        )
    }

    async fn put_bucket_policy(&self, bucket: &str, policy: &str) -> Result<()> {
        let host = self.host(bucket);
        let body = policy.to_string();

        let body_clone = body.clone();
        let builder = self
            .client
            .request(Method::PUT, &self.url(bucket, "?policy"))
            .host(&host)
            .content_type_json()
            .content_sha256(&body)
            .body(body);

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(result, "PutBucketPolicy", bucket, Some(body_clone.as_str()))
    }

    async fn delete_bucket_policy(&self, bucket: &str) -> Result<()> {
        let host = self.host(bucket);
        self.request_no_body(
            Method::DELETE,
            self.url(bucket, "?policy"),
            host,
            "DeleteBucketPolicy",
            bucket,
        )
        .await
    }

    async fn put_bucket_lifecycle_configuration(
        &self,
        bucket: &str,
        configuration: &LifecycleConfiguration,
    ) -> Result<()> {
        let host = self.host(bucket);
        let body = quick_xml::se::to_string_with_root("LifecycleConfiguration", configuration)
            .into_alien_error()
            .context(ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize LifecycleConfiguration for bucket '{}'",
                    bucket
                ),
            })?;

        // Compute Content-MD5 header as required by S3 for some configuration APIs
        let digest = md5::compute(body.as_bytes());
        let content_md5 = STANDARD.encode(digest.0);

        let body_clone = body.clone();
        let builder = self
            .client
            .request(Method::PUT, &self.url(bucket, "?lifecycle"))
            .host(&host)
            .content_type_xml()
            .header("content-md5", &content_md5)
            .content_sha256(&body)
            .body(body);

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(
            result,
            "PutBucketLifecycleConfiguration",
            bucket,
            Some(body_clone.as_str()),
        )
    }

    async fn delete_bucket_lifecycle(&self, bucket: &str) -> Result<()> {
        let host = self.host(bucket);
        self.request_no_body(
            Method::DELETE,
            self.url(bucket, "?lifecycle"),
            host,
            "DeleteBucketLifecycle",
            bucket,
        )
        .await
    }

    async fn list_objects_v2(
        &self,
        bucket: &str,
        prefix: Option<String>,
        continuation_token: Option<String>,
    ) -> Result<ListObjectsV2Output> {
        let host = self.host(bucket);
        let mut url = self.url(bucket, "?list-type=2");
        if let Some(p) = prefix {
            url.push_str(&format!(
                "&prefix={}",
                form_urlencoded::byte_serialize(p.as_bytes()).collect::<String>()
            ));
        }
        if let Some(ct) = continuation_token {
            url.push_str(&format!(
                "&continuation-token={}",
                form_urlencoded::byte_serialize(ct.as_bytes()).collect::<String>()
            ));
        }
        self.request_xml(
            Method::GET,
            url,
            host,
            String::new(),
            "ListObjectsV2",
            bucket,
        )
        .await
    }

    async fn delete_objects(
        &self,
        bucket: &str,
        objects: &[ObjectIdentifier],
        quiet: bool,
    ) -> Result<DeleteObjectsOutput> {
        let host = self.host(bucket);
        let delete_request = DeleteObjectsRequest {
            object: objects.to_vec(),
            quiet: Some(quiet),
        };
        let body = quick_xml::se::to_string_with_root("Delete", &delete_request)
            .into_alien_error()
            .context(ErrorData::SerializationError {
                message: format!("Failed to serialize Delete request for bucket '{}'", bucket),
            })?;
        let digest = md5::compute(body.as_bytes());
        let content_md5 = STANDARD.encode(digest.0);
        let body_clone = body.clone();
        let result = self
            .client
            .post(&self.url(bucket, "?delete"))
            .host(&host)
            .content_type_xml()
            .header("content-md5", &content_md5)
            .content_sha256(&body)
            .body(body)
            .sign_aws_request(&self.sign_config())?
            .with_retry()
            .send_xml::<DeleteObjectsOutput>()
            .await;
        Self::map_result(result, "DeleteObjects", bucket, Some(body_clone.as_str()))
    }

    async fn empty_bucket(&self, bucket: &str) -> Result<()> {
        // ------------------------------------------------------------------
        // 1. Try to delete *all* versions + delete-markers (if bucket is versioned)
        // ------------------------------------------------------------------
        let mut key_marker: Option<String> = None;
        let mut version_id_marker: Option<String> = None;

        loop {
            // Attempt to list object versions using the current pagination markers
            let versions_res = self
                .list_object_versions(bucket, key_marker.clone(), version_id_marker.clone())
                .await;

            match versions_res {
                Ok(versions) => {
                    // Collect all versions & delete-markers that were returned in this page
                    let mut objects: Vec<ObjectIdentifier> =
                        Vec::with_capacity(versions.version.len() + versions.delete_marker.len());
                    for v in &versions.version {
                        objects.push(ObjectIdentifier {
                            key: v.key.clone(),
                            version_id: Some(v.version_id.clone()),
                        });
                    }
                    for m in &versions.delete_marker {
                        objects.push(ObjectIdentifier {
                            key: m.key.clone(),
                            version_id: Some(m.version_id.clone()),
                        });
                    }

                    // Delete the collected objects (S3 allows up to 1000 identifiers per call;
                    // the list API is already limited to 1000, so this is safe)
                    if !objects.is_empty() {
                        self.delete_objects(bucket, &objects, true).await?;
                    }

                    // Continue if another page is available
                    if versions.is_truncated {
                        key_marker = versions.next_key_marker.clone();
                        version_id_marker = versions.next_version_id_marker.clone();
                        continue;
                    }

                    // All versions deleted
                    break;
                }
                Err(e) => {
                    // If the bucket is *not* versioned, AWS S3 will respond with a 400
                    // InvalidArgument error. When that happens, fall back to the
                    // non-versioned deletion path below.
                    if let Some(ErrorData::HttpResponseError { http_status, .. }) = &e.error {
                        if *http_status == 400 {
                            // Non-versioned bucket – break out of the versions loop
                            break;
                        }
                    }

                    // If the bucket itself does not exist – treat as already empty.
                    if matches!(e.error, Some(ErrorData::RemoteResourceNotFound { .. })) {
                        return Ok(());
                    }

                    // Otherwise bubble up the error.
                    return Err(e);
                }
            }
        }

        // ------------------------------------------------------------------
        // 2. Delete *current* objects for non-versioned buckets (or any leftovers)
        // ------------------------------------------------------------------
        let mut continuation_token: Option<String> = None;
        loop {
            let list_res = match self
                .list_objects_v2(bucket, None, continuation_token.clone())
                .await
            {
                Ok(r) => r,
                Err(e) => {
                    // Treat missing bucket as success for idempotency
                    if matches!(e.error, Some(ErrorData::RemoteResourceNotFound { .. })) {
                        return Ok(());
                    }
                    return Err(e);
                }
            };

            // Convert the listing to ObjectIdentifier list (no version IDs)
            let objects: Vec<ObjectIdentifier> = list_res
                .contents
                .iter()
                .map(|obj| ObjectIdentifier {
                    key: obj.key.clone(),
                    version_id: None,
                })
                .collect();

            if !objects.is_empty() {
                self.delete_objects(bucket, &objects, true).await?;
            }

            if list_res.is_truncated {
                continuation_token = list_res.next_continuation_token.clone();
            } else {
                break;
            }
        }

        Ok(())
    }

    async fn list_object_versions(
        &self,
        bucket: &str,
        key_marker: Option<String>,
        version_id_marker: Option<String>,
    ) -> Result<ListVersionsOutput> {
        let host = self.host(bucket);
        let mut url = self.url(bucket, "?versions");
        if let Some(k) = key_marker {
            url.push_str(&format!(
                "&key-marker={}",
                form_urlencoded::byte_serialize(k.as_bytes()).collect::<String>()
            ));
        }
        if let Some(v) = version_id_marker {
            url.push_str(&format!(
                "&version-id-marker={}",
                form_urlencoded::byte_serialize(v.as_bytes()).collect::<String>()
            ));
        }
        url.push_str("&max-keys=1000");
        self.request_xml(
            Method::GET,
            url,
            host,
            String::new(),
            "ListObjectVersions",
            bucket,
        )
        .await
    }

    async fn delete_bucket(&self, bucket: &str) -> Result<()> {
        let host = self.host(bucket);
        self.request_no_body(
            Method::DELETE,
            self.url(bucket, ""),
            host,
            "DeleteBucket",
            bucket,
        )
        .await
    }

    async fn get_bucket_location(&self, bucket: &str) -> Result<GetBucketLocationOutput> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?location"),
            host,
            String::new(),
            "GetBucketLocation",
            bucket,
        )
        .await
    }

    async fn put_object(&self, request: &PutObjectRequest) -> Result<PutObjectOutput> {
        let host = self.host(&request.bucket);
        let encoded_key = Self::encode_key(&request.key);
        let url = self.url(&request.bucket, &format!("/{}", encoded_key));

        debug!(
            bucket = %request.bucket,
            key = %request.key,
            url = %url,
            host = %host,
            body_len = request.body.len(),
            "S3 PutObject request"
        );

        let mut builder = self
            .client
            .request(Method::PUT, &url)
            .host(&host)
            .content_sha256_bytes(&request.body);

        // Set Content-Type
        if let Some(ref content_type) = request.content_type {
            builder = builder.header("content-type", content_type);
        } else {
            builder = builder.header("content-type", "application/octet-stream");
        }

        // Set Content-MD5 if provided, otherwise calculate it
        let content_md5 = if let Some(ref md5) = request.content_md5 {
            md5.clone()
        } else {
            let digest = md5::compute(&request.body);
            STANDARD.encode(digest.0)
        };
        builder = builder.header("content-md5", content_md5);

        // Set optional headers
        if let Some(ref sse) = request.server_side_encryption {
            builder = builder.header("x-amz-server-side-encryption", sse);
        }
        if let Some(ref storage_class) = request.storage_class {
            builder = builder.header("x-amz-storage-class", storage_class);
        }

        builder = builder.body(request.body.clone());

        // Sign the request
        let signed_builder = builder.sign_aws_request(&self.sign_config())?;

        // Execute the request with retry
        let response =
            signed_builder
                .with_retry()
                .send_raw()
                .await
                .context(ErrorData::HttpRequestFailed {
                    message: format!(
                        "PutObject request failed for {}/{}",
                        request.bucket, request.key
                    ),
                })?;

        if !response.status().is_success() {
            let status = response.status();
            let body = response.text().await.unwrap_or_default();

            if let Some(mapped) = Self::map_s3_error(status, &body, "PutObject", &request.key, None)
            {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("PutObject failed: {}", body),
                    url: url.clone(),
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: Some(body.clone()),
                })
                .context(mapped));
            } else {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("PutObject failed with status: {}", status),
                    url: url,
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: Some(body),
                }));
            }
        }

        let headers = response.headers();

        Ok(PutObjectOutput {
            e_tag: headers
                .get("etag")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            version_id: headers
                .get("x-amz-version-id")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            server_side_encryption: headers
                .get("x-amz-server-side-encryption")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
        })
    }

    async fn get_object(&self, request: &GetObjectRequest) -> Result<GetObjectOutput> {
        let host = self.host(&request.bucket);
        let encoded_key = Self::encode_key(&request.key);
        let mut url = self.url(&request.bucket, &format!("/{}", encoded_key));

        if let Some(ref version_id) = request.version_id {
            url.push_str(&format!(
                "?versionId={}",
                form_urlencoded::byte_serialize(version_id.as_bytes()).collect::<String>()
            ));
        }

        debug!(
            bucket = %request.bucket,
            key = %request.key,
            url = %url,
            host = %host,
            "S3 GetObject request"
        );

        let mut builder = self
            .client
            .request(Method::GET, &url)
            .host(&host)
            .content_sha256("");

        // Set Range header if provided
        if let Some(ref range) = request.range {
            builder = builder.header("range", range);
        }

        // Sign the request
        let signed_builder = builder.sign_aws_request(&self.sign_config())?;

        // Execute the request with retry
        let response =
            signed_builder
                .with_retry()
                .send_raw()
                .await
                .context(ErrorData::HttpRequestFailed {
                    message: format!(
                        "GetObject request failed for {}/{}",
                        request.bucket, request.key
                    ),
                })?;

        if !response.status().is_success() {
            let status = response.status();
            let body = response.text().await.unwrap_or_default();

            if let Some(mapped) = Self::map_s3_error(status, &body, "GetObject", &request.key, None)
            {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("GetObject failed: {}", body),
                    url: url.clone(),
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: Some(body.clone()),
                })
                .context(mapped));
            } else {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("GetObject failed with status: {}", status),
                    url: url,
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: Some(body),
                }));
            }
        }

        // Clone header values before consuming the response
        let content_length = response
            .headers()
            .get("content-length")
            .and_then(|v| v.to_str().ok())
            .and_then(|s| s.parse::<i64>().ok());
        let content_type = response
            .headers()
            .get("content-type")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());
        let e_tag = response
            .headers()
            .get("etag")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());
        let last_modified = response
            .headers()
            .get("last-modified")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());
        let version_id = response
            .headers()
            .get("x-amz-version-id")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());
        let server_side_encryption = response
            .headers()
            .get("x-amz-server-side-encryption")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());
        let storage_class = response
            .headers()
            .get("x-amz-storage-class")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());

        let body = response
            .bytes()
            .await
            .into_alien_error()
            .context(ErrorData::HttpRequestFailed {
                message: format!(
                    "Failed to read GetObject response body for {}/{}",
                    request.bucket, request.key
                ),
            })?
            .to_vec();

        Ok(GetObjectOutput {
            body,
            content_type,
            content_length,
            e_tag,
            last_modified,
            version_id,
            server_side_encryption,
            storage_class,
        })
    }

    async fn head_object(&self, request: &HeadObjectRequest) -> Result<HeadObjectOutput> {
        let host = self.host(&request.bucket);
        let encoded_key = Self::encode_key(&request.key);
        let mut url = self.url(&request.bucket, &format!("/{}", encoded_key));

        if let Some(ref version_id) = request.version_id {
            url.push_str(&format!(
                "?versionId={}",
                form_urlencoded::byte_serialize(version_id.as_bytes()).collect::<String>()
            ));
        }

        debug!(
            bucket = %request.bucket,
            key = %request.key,
            url = %url,
            host = %host,
            "S3 HeadObject request"
        );

        let builder = self
            .client
            .request(Method::HEAD, &url)
            .host(&host)
            .content_sha256("");

        // Sign the request
        let signed_builder = builder.sign_aws_request(&self.sign_config())?;

        // Execute the request with retry
        let response =
            signed_builder
                .with_retry()
                .send_raw()
                .await
                .context(ErrorData::HttpRequestFailed {
                    message: format!(
                        "HeadObject request failed for {}/{}",
                        request.bucket, request.key
                    ),
                })?;

        if !response.status().is_success() {
            let status = response.status();
            // HEAD responses don't have a body, so we can't parse S3 error XML

            if let Some(mapped) = Self::map_s3_error(status, "", "HeadObject", &request.key, None) {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("HeadObject failed with status: {}", status),
                    url: url.clone(),
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: None,
                })
                .context(mapped));
            } else {
                return Err(AlienError::new(ErrorData::HttpResponseError {
                    message: format!("HeadObject failed with status: {}", status),
                    url: url,
                    http_status: status.as_u16(),
                    http_request_text: None,
                    http_response_text: None,
                }));
            }
        }

        let headers = response.headers();
        let content_length = headers
            .get("content-length")
            .and_then(|v| v.to_str().ok())
            .and_then(|s| s.parse::<i64>().ok());
        let delete_marker = headers
            .get("x-amz-delete-marker")
            .and_then(|v| v.to_str().ok())
            .and_then(|s| s.parse::<bool>().ok());

        Ok(HeadObjectOutput {
            content_type: headers
                .get("content-type")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            content_length,
            e_tag: headers
                .get("etag")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            last_modified: headers
                .get("last-modified")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            version_id: headers
                .get("x-amz-version-id")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            server_side_encryption: headers
                .get("x-amz-server-side-encryption")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            storage_class: headers
                .get("x-amz-storage-class")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string()),
            delete_marker,
        })
    }

    async fn put_bucket_notification_configuration(
        &self,
        bucket: &str,
        configuration: &NotificationConfiguration,
    ) -> Result<()> {
        let host = self.host(bucket);
        let body = quick_xml::se::to_string_with_root("NotificationConfiguration", configuration)
            .into_alien_error()
            .context(ErrorData::SerializationError {
                message: format!(
                    "Failed to serialize NotificationConfiguration for bucket '{}'",
                    bucket
                ),
            })?;

        let body_clone = body.clone();
        let builder = self
            .client
            .request(Method::PUT, &self.url(bucket, "?notification"))
            .host(&host)
            .content_type_xml()
            .content_sha256(&body)
            .body(body);

        let result =
            crate::aws::aws_request_utils::sign_send_no_response(builder, &self.sign_config())
                .await;

        Self::map_result(
            result,
            "PutBucketNotificationConfiguration",
            bucket,
            Some(body_clone.as_str()),
        )
    }

    async fn get_bucket_notification_configuration(
        &self,
        bucket: &str,
    ) -> Result<NotificationConfiguration> {
        let host = self.host(bucket);
        self.request_xml(
            Method::GET,
            self.url(bucket, "?notification"),
            host,
            String::new(),
            "GetBucketNotificationConfiguration",
            bucket,
        )
        .await
    }
}

// -------------------------------------------------------------------------
// Error struct
// -------------------------------------------------------------------------
#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
struct S3ErrorResponse {
    pub code: String,
    pub message: String,
}

// -------------------------------------------------------------------------
// Public data types copied from legacy implementation (unchanged)
// -------------------------------------------------------------------------

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub enum VersioningStatus {
    Enabled,
    Suspended,
}

#[derive(Debug, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
struct VersioningConfiguration {
    #[serde(rename = "Status")]
    status: Option<VersioningStatus>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct PublicAccessBlockConfiguration {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub block_public_acls: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ignore_public_acls: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub block_public_policy: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub restrict_public_buckets: Option<bool>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct LifecycleConfiguration {
    #[serde(rename = "Rule", default, skip_serializing_if = "Vec::is_empty")]
    pub rules: Vec<LifecycleRule>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct LifecycleRule {
    #[serde(rename = "ID", skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    pub status: LifecycleRuleStatus,
    pub filter: LifecycleRuleFilter,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub expiration: Option<LifecycleExpiration>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub enum LifecycleRuleStatus {
    Enabled,
    Disabled,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct LifecycleRuleFilter {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prefix: Option<String>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct LifecycleExpiration {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub days: Option<i32>,
}

#[derive(Debug, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct DeleteObjectsRequest {
    #[serde(rename = "Object")]
    object: Vec<ObjectIdentifier>,
    #[serde(skip_serializing_if = "Option::is_none")]
    quiet: Option<bool>,
}

#[derive(Clone, Debug, Serialize, Builder)]
#[serde(rename_all = "PascalCase")]
pub struct ObjectIdentifier {
    pub key: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub version_id: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct DeleteObjectsOutput {
    #[serde(rename = "Deleted", default, skip_serializing_if = "Vec::is_empty")]
    pub deleted: Vec<DeletedObject>,
    #[serde(rename = "Error", default, skip_serializing_if = "Vec::is_empty")]
    pub errors: Vec<ErrorObject>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct DeletedObject {
    pub key: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub version_id: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ErrorObject {
    pub key: String,
    pub code: String,
    pub message: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ListObjectsV2Output {
    #[serde(default)]
    pub contents: Vec<Object>,
    pub name: String,
    pub max_keys: i32,
    pub key_count: i32,
    pub is_truncated: bool,
    pub next_continuation_token: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct Object {
    pub key: String,
    pub last_modified: String,
    pub e_tag: String,
    pub size: i64,
    pub storage_class: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ListVersionsOutput {
    #[serde(default, rename = "Version")]
    pub version: Vec<ObjectVersion>,
    #[serde(default, rename = "DeleteMarker")]
    pub delete_marker: Vec<DeleteMarker>,
    pub is_truncated: bool,
    pub next_key_marker: Option<String>,
    pub next_version_id_marker: Option<String>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ObjectVersion {
    pub key: String,
    pub version_id: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct DeleteMarker {
    pub key: String,
    pub version_id: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetBucketLocationOutput {
    #[serde(rename = "$text", default)]
    pub location_constraint: Option<String>,
}

impl GetBucketLocationOutput {
    /// Resolve region from the LocationConstraint element. For "", treat as us-east-1.
    pub fn region(&self) -> String {
        match &self.location_constraint {
            None => "us-east-1".to_string(),
            Some(s) if s.is_empty() => "us-east-1".to_string(),
            Some(s) => s.clone(),
        }
    }
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetBucketVersioningOutput {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<VersioningStatus>,
    #[serde(rename = "MfaDelete", skip_serializing_if = "Option::is_none")]
    pub mfa_delete: Option<MfaDeleteStatus>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub enum MfaDeleteStatus {
    Enabled,
    Disabled,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetBucketEncryptionOutput {
    #[serde(rename = "Rule", default)]
    pub rules: Vec<ServerSideEncryptionRule>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ServerSideEncryptionRule {
    pub apply_server_side_encryption_by_default: Option<ServerSideEncryptionByDefault>,
    pub bucket_key_enabled: Option<bool>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct ServerSideEncryptionByDefault {
    #[serde(rename = "SSEAlgorithm")]
    pub sse_algorithm: Option<String>,
    #[serde(rename = "KMSMasterKeyID")]
    pub kms_master_key_id: Option<String>,
}

#[derive(Debug)]
pub struct GetBucketPolicyOutput {
    pub policy: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetBucketAclOutput {
    pub owner: Option<BucketOwner>,
    #[serde(default)]
    pub access_control_list: AccessControlList,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct BucketOwner {
    pub id: Option<String>,
    pub display_name: Option<String>,
}

#[derive(Debug, Default, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct AccessControlList {
    #[serde(rename = "Grant", default)]
    pub grants: Vec<AclGrant>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct AclGrant {
    pub permission: Option<String>,
}

// -------------------------------------------------------------------------
// Object operations: PutObject, GetObject, HeadObject
// -------------------------------------------------------------------------

/// Request parameters for PutObject operation
#[derive(Debug, Builder)]
pub struct PutObjectRequest {
    /// Bucket name
    pub bucket: String,
    /// Object key
    pub key: String,
    /// Object data
    pub body: Vec<u8>,
    /// Content-Type header value
    pub content_type: Option<String>,
    /// Content-MD5 header value (base64-encoded MD5 digest)
    pub content_md5: Option<String>,
    /// Server-side encryption algorithm (e.g., "AES256")
    pub server_side_encryption: Option<String>,
    /// Storage class (e.g., "STANDARD", "GLACIER")
    pub storage_class: Option<String>,
}

/// Response from PutObject operation
#[derive(Debug)]
pub struct PutObjectOutput {
    /// Entity tag for the uploaded object
    pub e_tag: Option<String>,
    /// Version ID if versioning is enabled
    pub version_id: Option<String>,
    /// Server-side encryption algorithm used
    pub server_side_encryption: Option<String>,
}

/// Request parameters for GetObject operation
#[derive(Debug, Builder)]
pub struct GetObjectRequest {
    /// Bucket name
    pub bucket: String,
    /// Object key
    pub key: String,
    /// Version ID if requesting a specific version
    pub version_id: Option<String>,
    /// Byte range to retrieve (e.g., "bytes=0-1023")
    pub range: Option<String>,
}

/// Response from GetObject operation
#[derive(Debug)]
pub struct GetObjectOutput {
    /// Object data
    pub body: Vec<u8>,
    /// Content-Type of the object
    pub content_type: Option<String>,
    /// Content-Length of the object
    pub content_length: Option<i64>,
    /// Entity tag
    pub e_tag: Option<String>,
    /// Last modified timestamp
    pub last_modified: Option<String>,
    /// Version ID if versioning is enabled
    pub version_id: Option<String>,
    /// Server-side encryption algorithm used
    pub server_side_encryption: Option<String>,
    /// Storage class
    pub storage_class: Option<String>,
}

/// Request parameters for HeadObject operation
#[derive(Debug, Builder)]
pub struct HeadObjectRequest {
    /// Bucket name
    pub bucket: String,
    /// Object key
    pub key: String,
    /// Version ID if requesting a specific version
    pub version_id: Option<String>,
}

/// Response from HeadObject operation
#[derive(Debug)]
pub struct HeadObjectOutput {
    /// Content-Type of the object
    pub content_type: Option<String>,
    /// Content-Length of the object
    pub content_length: Option<i64>,
    /// Entity tag
    pub e_tag: Option<String>,
    /// Last modified timestamp
    pub last_modified: Option<String>,
    /// Version ID if versioning is enabled
    pub version_id: Option<String>,
    /// Server-side encryption algorithm used
    pub server_side_encryption: Option<String>,
    /// Storage class
    pub storage_class: Option<String>,
    /// Whether the object is a delete marker
    pub delete_marker: Option<bool>,
}

// -------------------------------------------------------------------------
// S3 Bucket Notification Configuration types
// -------------------------------------------------------------------------

/// S3 bucket notification configuration for event-driven triggers.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct NotificationConfiguration {
    /// Lambda function configurations for S3 event notifications
    #[serde(default, rename = "CloudFunctionConfiguration")]
    pub lambda_function_configurations: Vec<LambdaFunctionConfiguration>,
}

/// Configuration for invoking a Lambda function on S3 events.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct LambdaFunctionConfiguration {
    /// Optional identifier for this configuration
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// ARN of the Lambda function to invoke
    #[serde(rename = "CloudFunction")]
    pub lambda_function_arn: String,
    /// S3 event types to trigger on (e.g., "s3:ObjectCreated:*")
    #[serde(rename = "Event")]
    pub events: Vec<String>,
    /// Optional filter rules for object key prefix/suffix
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filter: Option<NotificationFilter>,
}

/// Filter for S3 notification events based on object key.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct NotificationFilter {
    /// Key filter with prefix/suffix rules
    pub key: S3KeyFilter,
}

/// S3 key-based notification filter rules.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct S3KeyFilter {
    /// Filter rules (prefix, suffix)
    #[serde(rename = "FilterRule")]
    pub filter_rules: Vec<FilterRule>,
}

/// A single filter rule for S3 key matching.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct FilterRule {
    /// Filter name: "prefix" or "suffix"
    pub name: String,
    /// Filter value
    pub value: String,
}