a3s-gateway 0.2.5

A3S Gateway - AI-native API gateway with reverse proxy, routing, and agent orchestration
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
//! ACME v2 protocol client (RFC 8555)
//!
//! Implements the full ACME certificate issuance flow:
//! 1. Fetch directory → 2. Create account → 3. Create order → 4. Solve HTTP-01 challenge → 5. Finalize order → 6. Download certificate

#![allow(dead_code)]

use crate::error::{GatewayError, Result};
use crate::proxy::acme::{AcmeConfig, CertInfo, CertStorage, ChallengeStore, ChallengeType};
use crate::proxy::acme_account::AccountKey;
use crate::proxy::acme_csr::{build_csr, pem_encode};
use crate::proxy::acme_dns;
use crate::proxy::acme_types::{AcmeAuthorization, AcmeDirectory, AcmeOrder};
use base64::engine::general_purpose::URL_SAFE_NO_PAD;
use base64::Engine;
use ring::rand::SystemRandom;
use ring::signature::{EcdsaKeyPair, ECDSA_P256_SHA256_FIXED_SIGNING};
use std::sync::Arc;
use std::time::{Duration, SystemTime};

/// ACME v2 protocol client
pub struct AcmeClient {
    pub(crate) config: AcmeConfig,
    http: reqwest::Client,
    pub(crate) storage: CertStorage,
    challenges: Arc<ChallengeStore>,
    /// Cached ACME directory endpoints
    directory: Option<AcmeDirectory>,
    /// Account key pair
    account_key: Option<AccountKey>,
    /// Account URL (returned by ACME server after registration)
    account_url: Option<String>,
}

impl AcmeClient {
    /// Create a new ACME client
    pub fn new(config: AcmeConfig, challenges: Arc<ChallengeStore>) -> Result<Self> {
        config.validate()?;
        let storage = CertStorage::new(&config.storage_path);
        let http = reqwest::Client::builder()
            .timeout(Duration::from_secs(30))
            .build()
            .map_err(|e| GatewayError::Other(format!("Failed to create HTTP client: {}", e)))?;

        Ok(Self {
            config,
            http,
            storage,
            challenges,
            directory: None,
            account_key: None,
            account_url: None,
        })
    }

    /// Get the challenge store
    pub fn challenges(&self) -> &Arc<ChallengeStore> {
        &self.challenges
    }

    /// Get the certificate storage
    pub fn storage(&self) -> &CertStorage {
        &self.storage
    }

    /// Load or generate the account key
    pub fn ensure_account_key(&mut self) -> Result<()> {
        if self.account_key.is_some() {
            return Ok(());
        }

        let key_path = self.config.storage_path.join("account.key");
        if key_path.exists() {
            let der = std::fs::read(&key_path).map_err(|e| {
                GatewayError::Other(format!(
                    "Failed to read account key {}: {}",
                    key_path.display(),
                    e
                ))
            })?;
            self.account_key = Some(AccountKey::from_pkcs8(&der)?);
            tracing::info!("Loaded existing ACME account key");
        } else {
            let key = AccountKey::generate()?;
            std::fs::create_dir_all(&self.config.storage_path).map_err(|e| {
                GatewayError::Other(format!(
                    "Failed to create ACME storage dir {}: {}",
                    self.config.storage_path.display(),
                    e
                ))
            })?;
            std::fs::write(&key_path, key.pkcs8_der())
                .map_err(|e| GatewayError::Other(format!("Failed to write account key: {}", e)))?;
            self.account_key = Some(key);
            tracing::info!("Generated new ACME account key");
        }
        Ok(())
    }

    /// Fetch the ACME directory from the server
    pub async fn fetch_directory(&mut self) -> Result<&AcmeDirectory> {
        let url = self.config.effective_directory();
        let resp = self
            .http
            .get(url)
            .send()
            .await
            .map_err(|e| GatewayError::Other(format!("ACME directory fetch failed: {}", e)))?;

        if !resp.status().is_success() {
            return Err(GatewayError::Other(format!(
                "ACME directory returned HTTP {}",
                resp.status()
            )));
        }

        let dir: AcmeDirectory = resp
            .json()
            .await
            .map_err(|e| GatewayError::Other(format!("ACME directory parse failed: {}", e)))?;

        tracing::debug!(
            new_account = dir.new_account,
            new_order = dir.new_order,
            "ACME directory fetched"
        );

        self.directory = Some(dir);
        Ok(self.directory.as_ref().unwrap())
    }

    /// Get a fresh replay nonce from the ACME server
    pub async fn get_nonce(&self) -> Result<String> {
        let dir = self
            .directory
            .as_ref()
            .ok_or_else(|| GatewayError::Other("ACME directory not fetched".to_string()))?;

        let resp = self
            .http
            .head(&dir.new_nonce)
            .send()
            .await
            .map_err(|e| GatewayError::Other(format!("ACME nonce request failed: {}", e)))?;

        resp.headers()
            .get("replay-nonce")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string())
            .ok_or_else(|| GatewayError::Other("No replay-nonce header in response".to_string()))
    }

    /// Build a JWS (JSON Web Signature) request body
    fn build_jws(&self, url: &str, payload: &str, nonce: &str) -> Result<String> {
        let key = self
            .account_key
            .as_ref()
            .ok_or_else(|| GatewayError::Other("Account key not loaded".to_string()))?;

        let header = if let Some(ref account_url) = self.account_url {
            // Use kid (account URL) for authenticated requests
            serde_json::json!({
                "alg": "ES256",
                "kid": account_url,
                "nonce": nonce,
                "url": url,
            })
        } else {
            // Use jwk for account creation
            serde_json::json!({
                "alg": "ES256",
                "jwk": key.jwk(),
                "nonce": nonce,
                "url": url,
            })
        };

        let protected = URL_SAFE_NO_PAD.encode(header.to_string().as_bytes());
        let payload_b64 = if payload.is_empty() {
            String::new() // POST-as-GET
        } else {
            URL_SAFE_NO_PAD.encode(payload.as_bytes())
        };

        let signing_input = format!("{}.{}", protected, payload_b64);
        let signature = key.sign(signing_input.as_bytes())?;
        let sig_b64 = URL_SAFE_NO_PAD.encode(&signature);

        let jws = serde_json::json!({
            "protected": protected,
            "payload": payload_b64,
            "signature": sig_b64,
        });

        Ok(jws.to_string())
    }

    /// POST a JWS-signed request to an ACME endpoint
    async fn acme_post(
        &self,
        url: &str,
        payload: &str,
        nonce: &str,
    ) -> Result<(reqwest::Response, Option<String>)> {
        let body = self.build_jws(url, payload, nonce)?;

        let resp = self
            .http
            .post(url)
            .header("Content-Type", "application/jose+json")
            .body(body)
            .send()
            .await
            .map_err(|e| GatewayError::Other(format!("ACME POST to {} failed: {}", url, e)))?;

        let new_nonce = resp
            .headers()
            .get("replay-nonce")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string());

        Ok((resp, new_nonce))
    }

    /// Register an ACME account (or retrieve existing one)
    pub async fn register_account(&mut self) -> Result<()> {
        self.ensure_account_key()?;
        let dir = self
            .directory
            .as_ref()
            .ok_or_else(|| GatewayError::Other("ACME directory not fetched".to_string()))?
            .clone();

        let nonce = self.get_nonce().await?;
        let payload = serde_json::json!({
            "termsOfServiceAgreed": true,
            "contact": [format!("mailto:{}", self.config.email)],
        });

        let (resp, _) = self
            .acme_post(&dir.new_account, &payload.to_string(), &nonce)
            .await?;

        let status = resp.status();
        if status == 200 || status == 201 {
            // Account URL is in the Location header
            let account_url = resp
                .headers()
                .get("location")
                .and_then(|v| v.to_str().ok())
                .map(|s| s.to_string())
                .ok_or_else(|| {
                    GatewayError::Other("No Location header in account response".to_string())
                })?;

            tracing::info!(
                account_url = account_url,
                status = status.as_u16(),
                "ACME account registered"
            );
            self.account_url = Some(account_url);
            Ok(())
        } else {
            let body = resp.text().await.unwrap_or_default();
            Err(GatewayError::Other(format!(
                "ACME account registration failed (HTTP {}): {}",
                status, body
            )))
        }
    }

    /// Create a new certificate order for the configured domains
    pub async fn create_order(&self) -> Result<(AcmeOrder, String)> {
        let dir = self
            .directory
            .as_ref()
            .ok_or_else(|| GatewayError::Other("ACME directory not fetched".to_string()))?
            .clone();

        let identifiers: Vec<serde_json::Value> = self
            .config
            .domains
            .iter()
            .map(|d| {
                serde_json::json!({
                    "type": "dns",
                    "value": d,
                })
            })
            .collect();

        let payload = serde_json::json!({
            "identifiers": identifiers,
        });

        let nonce = self.get_nonce().await?;
        let (resp, _) = self
            .acme_post(&dir.new_order, &payload.to_string(), &nonce)
            .await?;

        let status = resp.status();
        let order_url = resp
            .headers()
            .get("location")
            .and_then(|v| v.to_str().ok())
            .map(|s| s.to_string())
            .unwrap_or_default();

        if status == 201 || status == 200 {
            let order: AcmeOrder = resp
                .json()
                .await
                .map_err(|e| GatewayError::Other(format!("Failed to parse ACME order: {}", e)))?;
            tracing::info!(
                status = order.status,
                authorizations = order.authorizations.len(),
                "ACME order created"
            );
            Ok((order, order_url))
        } else {
            let body = resp.text().await.unwrap_or_default();
            Err(GatewayError::Other(format!(
                "ACME order creation failed (HTTP {}): {}",
                status, body
            )))
        }
    }

    /// Solve an HTTP-01 challenge for an authorization URL
    pub async fn solve_http01_challenge(&self, auth_url: &str) -> Result<()> {
        let nonce = self.get_nonce().await?;
        // POST-as-GET to fetch authorization
        let (resp, _) = self.acme_post(auth_url, "", &nonce).await?;

        if !resp.status().is_success() {
            let body = resp.text().await.unwrap_or_default();
            return Err(GatewayError::Other(format!(
                "Failed to fetch authorization {}: {}",
                auth_url, body
            )));
        }

        let auth: AcmeAuthorization = resp
            .json()
            .await
            .map_err(|e| GatewayError::Other(format!("Failed to parse authorization: {}", e)))?;

        // Find the HTTP-01 challenge
        let challenge = auth
            .challenges
            .iter()
            .find(|c| c.challenge_type == "http-01")
            .ok_or_else(|| {
                GatewayError::Other(format!(
                    "No HTTP-01 challenge for domain {}",
                    auth.identifier.value
                ))
            })?;

        if challenge.status == "valid" {
            tracing::debug!(
                domain = auth.identifier.value,
                "Challenge already valid, skipping"
            );
            return Ok(());
        }

        // Compute key authorization: token.thumbprint
        let key = self
            .account_key
            .as_ref()
            .ok_or_else(|| GatewayError::Other("Account key not loaded".to_string()))?;
        let key_auth = format!("{}.{}", challenge.token, key.jwk_thumbprint());

        // Store the challenge response for the HTTP server to serve
        self.challenges.add(challenge.token.clone(), key_auth);

        tracing::info!(
            domain = auth.identifier.value,
            token = challenge.token,
            "HTTP-01 challenge token stored, notifying ACME server"
        );

        // Notify the ACME server that we're ready
        let nonce = self.get_nonce().await?;
        let (resp, _) = self.acme_post(&challenge.url, "{}", &nonce).await?;

        if !resp.status().is_success() {
            let body = resp.text().await.unwrap_or_default();
            return Err(GatewayError::Other(format!(
                "Failed to respond to challenge: {}",
                body
            )));
        }

        // Poll until challenge is valid (or fails)
        for attempt in 0..30 {
            tokio::time::sleep(Duration::from_secs(2)).await;

            let nonce = self.get_nonce().await?;
            let (resp, _) = self.acme_post(auth_url, "", &nonce).await?;
            if !resp.status().is_success() {
                continue;
            }

            let auth: AcmeAuthorization = match resp.json().await {
                Ok(a) => a,
                Err(_) => continue,
            };

            match auth.status.as_str() {
                "valid" => {
                    tracing::info!(
                        domain = auth.identifier.value,
                        attempts = attempt + 1,
                        "HTTP-01 challenge validated"
                    );
                    // Clean up challenge token
                    self.challenges.remove(&challenge.token);
                    return Ok(());
                }
                "invalid" => {
                    self.challenges.remove(&challenge.token);
                    return Err(GatewayError::Other(format!(
                        "Challenge validation failed for domain {}",
                        auth.identifier.value
                    )));
                }
                _ => continue, // "pending" or "processing"
            }
        }

        self.challenges.remove(&challenge.token);
        Err(GatewayError::Other(format!(
            "Challenge validation timed out for authorization {}",
            auth_url
        )))
    }

    /// Solve a DNS-01 challenge for an authorization URL
    ///
    /// Creates a TXT record via the configured DNS provider, waits for propagation,
    /// then notifies the ACME server. Used for wildcard certificates.
    pub async fn solve_dns01_challenge(
        &self,
        auth_url: &str,
        dns_solver: &dyn acme_dns::DnsSolver,
    ) -> Result<()> {
        let nonce = self.get_nonce().await?;
        let (resp, _) = self.acme_post(auth_url, "", &nonce).await?;

        if !resp.status().is_success() {
            let body = resp.text().await.unwrap_or_default();
            return Err(GatewayError::Other(format!(
                "Failed to fetch authorization {}: {}",
                auth_url, body
            )));
        }

        let auth: AcmeAuthorization = resp
            .json()
            .await
            .map_err(|e| GatewayError::Other(format!("Failed to parse authorization: {}", e)))?;

        // Find the DNS-01 challenge
        let challenge = auth
            .challenges
            .iter()
            .find(|c| c.challenge_type == "dns-01")
            .ok_or_else(|| {
                GatewayError::Other(format!(
                    "No DNS-01 challenge for domain {}",
                    auth.identifier.value
                ))
            })?;

        if challenge.status == "valid" {
            tracing::debug!(
                domain = auth.identifier.value,
                "DNS-01 challenge already valid, skipping"
            );
            return Ok(());
        }

        // Compute key authorization digest for DNS-01:
        // base64url(SHA-256(token.thumbprint))
        let key = self
            .account_key
            .as_ref()
            .ok_or_else(|| GatewayError::Other("Account key not loaded".to_string()))?;
        let key_auth = format!("{}.{}", challenge.token, key.jwk_thumbprint());
        let digest = ring::digest::digest(&ring::digest::SHA256, key_auth.as_bytes());
        let dns_value = URL_SAFE_NO_PAD.encode(digest.as_ref());

        // Strip wildcard prefix for the DNS record domain
        let domain = auth
            .identifier
            .value
            .strip_prefix("*.")
            .unwrap_or(&auth.identifier.value);

        // Create TXT record
        let record_id = dns_solver.create_txt_record(domain, &dns_value).await?;

        tracing::info!(
            domain = domain,
            record_id = record_id,
            "DNS-01 TXT record created, waiting for propagation"
        );

        // Wait for DNS propagation
        dns_solver.wait_for_propagation().await;

        // Notify the ACME server that we're ready
        let nonce = self.get_nonce().await?;
        let (resp, _) = self.acme_post(&challenge.url, "{}", &nonce).await?;

        if !resp.status().is_success() {
            // Clean up the DNS record before returning error
            let _ = dns_solver.delete_txt_record(&record_id).await;
            let body = resp.text().await.unwrap_or_default();
            return Err(GatewayError::Other(format!(
                "Failed to respond to DNS-01 challenge: {}",
                body
            )));
        }

        // Poll until challenge is valid (or fails)
        let challenge_url = challenge.url.clone();
        for attempt in 0..30 {
            tokio::time::sleep(Duration::from_secs(2)).await;

            let nonce = self.get_nonce().await?;
            let (resp, _) = self.acme_post(auth_url, "", &nonce).await?;
            if !resp.status().is_success() {
                continue;
            }

            let auth: AcmeAuthorization = match resp.json().await {
                Ok(a) => a,
                Err(_) => continue,
            };

            match auth.status.as_str() {
                "valid" => {
                    tracing::info!(
                        domain = auth.identifier.value,
                        attempts = attempt + 1,
                        "DNS-01 challenge validated"
                    );
                    // Clean up the DNS record
                    if let Err(e) = dns_solver.delete_txt_record(&record_id).await {
                        tracing::warn!(
                            record_id = record_id,
                            error = %e,
                            "Failed to clean up DNS TXT record"
                        );
                    }
                    return Ok(());
                }
                "invalid" => {
                    let _ = dns_solver.delete_txt_record(&record_id).await;
                    return Err(GatewayError::Other(format!(
                        "DNS-01 challenge validation failed for domain {}",
                        auth.identifier.value
                    )));
                }
                _ => continue,
            }
        }

        let _ = dns_solver.delete_txt_record(&record_id).await;
        Err(GatewayError::Other(format!(
            "DNS-01 challenge validation timed out for {}",
            challenge_url
        )))
    }

    /// Poll an order until it reaches "ready" or "valid" status
    pub async fn poll_order_ready(&self, order_url: &str) -> Result<AcmeOrder> {
        for attempt in 0..30 {
            tokio::time::sleep(Duration::from_secs(2)).await;

            let nonce = self.get_nonce().await?;
            let (resp, _) = self.acme_post(order_url, "", &nonce).await?;

            if !resp.status().is_success() {
                continue;
            }

            let order: AcmeOrder = match resp.json().await {
                Ok(o) => o,
                Err(_) => continue,
            };

            match order.status.as_str() {
                "ready" | "valid" => {
                    tracing::debug!(
                        status = order.status,
                        attempts = attempt + 1,
                        "Order is ready"
                    );
                    return Ok(order);
                }
                "invalid" => {
                    return Err(GatewayError::Other("ACME order became invalid".to_string()));
                }
                _ => continue, // "pending" or "processing"
            }
        }

        Err(GatewayError::Other(
            "Timed out waiting for ACME order to become ready".to_string(),
        ))
    }

    /// Finalize an order by submitting a CSR
    pub async fn finalize_order(
        &self,
        finalize_url: &str,
        domains: &[String],
    ) -> Result<AcmeOrder> {
        // Generate a CSR key pair (separate from account key)
        let rng = SystemRandom::new();
        let csr_pkcs8 = EcdsaKeyPair::generate_pkcs8(&ECDSA_P256_SHA256_FIXED_SIGNING, &rng)
            .map_err(|e| GatewayError::Other(format!("Failed to generate CSR key: {}", e)))?;
        let csr_key =
            EcdsaKeyPair::from_pkcs8(&ECDSA_P256_SHA256_FIXED_SIGNING, csr_pkcs8.as_ref(), &rng)
                .map_err(|e| GatewayError::Other(format!("Failed to parse CSR key: {}", e)))?;

        // Build a minimal DER-encoded CSR
        let csr_der = build_csr(&csr_key, domains, &rng)?;
        let csr_b64 = URL_SAFE_NO_PAD.encode(&csr_der);

        let payload = serde_json::json!({ "csr": csr_b64 });
        let nonce = self.get_nonce().await?;
        let (resp, _) = self
            .acme_post(finalize_url, &payload.to_string(), &nonce)
            .await?;

        let status = resp.status();
        if status.is_success() {
            let order: AcmeOrder = resp.json().await.map_err(|e| {
                GatewayError::Other(format!("Failed to parse finalize response: {}", e))
            })?;

            // Store the CSR private key for later use as the cert's key
            let key_pem = pem_encode("EC PRIVATE KEY", csr_pkcs8.as_ref());
            let key_path = self.config.storage_path.join("csr.key.pem");
            std::fs::write(&key_path, &key_pem)
                .map_err(|e| GatewayError::Other(format!("Failed to write CSR key: {}", e)))?;

            tracing::info!(status = order.status, "Order finalized");
            Ok(order)
        } else {
            let body = resp.text().await.unwrap_or_default();
            Err(GatewayError::Other(format!(
                "ACME finalize failed (HTTP {}): {}",
                status, body
            )))
        }
    }

    /// Download the issued certificate
    pub async fn download_certificate(&self, cert_url: &str) -> Result<String> {
        let nonce = self.get_nonce().await?;
        let (resp, _) = self.acme_post(cert_url, "", &nonce).await?;

        if !resp.status().is_success() {
            let body = resp.text().await.unwrap_or_default();
            return Err(GatewayError::Other(format!(
                "Certificate download failed: {}",
                body
            )));
        }

        let cert_pem = resp
            .text()
            .await
            .map_err(|e| GatewayError::Other(format!("Failed to read certificate body: {}", e)))?;

        tracing::info!(bytes = cert_pem.len(), "Certificate downloaded");
        Ok(cert_pem)
    }

    /// Full certificate issuance flow for all configured domains
    pub async fn issue_certificate(&mut self) -> Result<CertInfo> {
        // 1. Fetch directory
        self.fetch_directory().await?;

        // 2. Register account
        self.register_account().await?;

        // 3. Create order
        let (order, order_url) = self.create_order().await?;

        // 4. Solve challenges based on configured challenge type
        match self.config.challenge_type {
            ChallengeType::Http01 => {
                for auth_url in &order.authorizations {
                    self.solve_http01_challenge(auth_url).await?;
                }
            }
            ChallengeType::Dns01 => {
                let dns_config = self.config.dns_provider.as_ref().ok_or_else(|| {
                    GatewayError::Other(
                        "DNS provider configuration required for DNS-01 challenge".to_string(),
                    )
                })?;
                let solver = acme_dns::create_solver(dns_config)?;
                for auth_url in &order.authorizations {
                    self.solve_dns01_challenge(auth_url, solver.as_ref())
                        .await?;
                }
            }
        }

        // 5. Poll until order is ready
        let order = self.poll_order_ready(&order_url).await?;

        // 6. Finalize with CSR
        let order = if order.status == "ready" {
            self.finalize_order(&order.finalize, &self.config.domains.clone())
                .await?
        } else {
            order
        };

        // 7. Poll until order is valid (certificate issued)
        let order = if order.certificate.is_none() {
            self.poll_order_ready(&order_url).await?
        } else {
            order
        };

        // 8. Download certificate
        let cert_url = order.certificate.ok_or_else(|| {
            GatewayError::Other("Order completed but no certificate URL".to_string())
        })?;
        let cert_pem = self.download_certificate(&cert_url).await?;

        // 9. Read the CSR private key
        let key_path = self.config.storage_path.join("csr.key.pem");
        let key_pem = std::fs::read_to_string(&key_path)
            .map_err(|e| GatewayError::Other(format!("Failed to read CSR key: {}", e)))?;

        // 10. Build CertInfo and save
        let now = SystemTime::now()
            .duration_since(SystemTime::UNIX_EPOCH)
            .unwrap_or_default()
            .as_secs();
        let cert_info = CertInfo {
            domain: self.config.domains.first().cloned().unwrap_or_default(),
            cert_pem,
            key_pem,
            expires_at: now + 90 * 86400, // Let's Encrypt certs are valid for 90 days
            issued_at: now,
        };

        self.storage.save(&cert_info)?;
        tracing::info!(
            domain = cert_info.domain,
            expires_in_days = 90,
            "Certificate issued and saved"
        );

        Ok(cert_info)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::path::PathBuf;

    fn test_config() -> AcmeConfig {
        AcmeConfig {
            email: "test@example.com".to_string(),
            domains: vec!["example.com".to_string()],
            staging: true,
            storage_path: PathBuf::from("/tmp/acme-test"),
            ..Default::default()
        }
    }

    // --- AcmeClient construction ---

    #[test]
    fn test_client_new() {
        let challenges = Arc::new(ChallengeStore::new());
        let client = AcmeClient::new(test_config(), challenges).unwrap();
        assert!(client.challenges().is_empty());
    }

    #[test]
    fn test_client_new_invalid_config() {
        let challenges = Arc::new(ChallengeStore::new());
        let config = AcmeConfig::default(); // missing email + domains
        let result = AcmeClient::new(config, challenges);
        assert!(result.is_err());
    }

    #[test]
    fn test_client_ensure_account_key() {
        let dir = tempfile::tempdir().unwrap();
        let challenges = Arc::new(ChallengeStore::new());
        let config = AcmeConfig {
            email: "test@example.com".to_string(),
            domains: vec!["example.com".to_string()],
            storage_path: dir.path().to_path_buf(),
            ..Default::default()
        };
        let mut client = AcmeClient::new(config, challenges).unwrap();
        client.ensure_account_key().unwrap();

        // Key file should exist
        assert!(dir.path().join("account.key").exists());

        // Loading again should reuse the same key
        client.account_key = None;
        client.ensure_account_key().unwrap();
    }

    // --- JWS building ---

    #[test]
    fn test_build_jws_without_account() {
        let dir = tempfile::tempdir().unwrap();
        let challenges = Arc::new(ChallengeStore::new());
        let config = AcmeConfig {
            email: "test@example.com".to_string(),
            domains: vec!["example.com".to_string()],
            storage_path: dir.path().to_path_buf(),
            ..Default::default()
        };
        let mut client = AcmeClient::new(config, challenges).unwrap();
        client.ensure_account_key().unwrap();

        let jws = client
            .build_jws(
                "https://acme.example/new-acct",
                r#"{"test":true}"#,
                "nonce123",
            )
            .unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&jws).unwrap();
        assert!(parsed["protected"].is_string());
        assert!(parsed["payload"].is_string());
        assert!(parsed["signature"].is_string());

        // Decode protected header — should contain jwk (not kid)
        let protected = URL_SAFE_NO_PAD
            .decode(parsed["protected"].as_str().unwrap())
            .unwrap();
        let header: serde_json::Value = serde_json::from_slice(&protected).unwrap();
        assert_eq!(header["alg"], "ES256");
        assert!(header["jwk"].is_object());
        assert!(header.get("kid").is_none());
    }

    #[test]
    fn test_build_jws_with_account() {
        let dir = tempfile::tempdir().unwrap();
        let challenges = Arc::new(ChallengeStore::new());
        let config = AcmeConfig {
            email: "test@example.com".to_string(),
            domains: vec!["example.com".to_string()],
            storage_path: dir.path().to_path_buf(),
            ..Default::default()
        };
        let mut client = AcmeClient::new(config, challenges).unwrap();
        client.ensure_account_key().unwrap();
        client.account_url = Some("https://acme.example/acct/1".to_string());

        let jws = client
            .build_jws("https://acme.example/order", r#"{"test":true}"#, "nonce456")
            .unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&jws).unwrap();

        let protected = URL_SAFE_NO_PAD
            .decode(parsed["protected"].as_str().unwrap())
            .unwrap();
        let header: serde_json::Value = serde_json::from_slice(&protected).unwrap();
        assert_eq!(header["alg"], "ES256");
        assert_eq!(header["kid"], "https://acme.example/acct/1");
        assert!(header.get("jwk").is_none());
    }

    #[test]
    fn test_build_jws_post_as_get() {
        let dir = tempfile::tempdir().unwrap();
        let challenges = Arc::new(ChallengeStore::new());
        let config = AcmeConfig {
            email: "test@example.com".to_string(),
            domains: vec!["example.com".to_string()],
            storage_path: dir.path().to_path_buf(),
            ..Default::default()
        };
        let mut client = AcmeClient::new(config, challenges).unwrap();
        client.ensure_account_key().unwrap();

        // Empty payload = POST-as-GET
        let jws = client
            .build_jws("https://acme.example/auth", "", "nonce789")
            .unwrap();
        let parsed: serde_json::Value = serde_json::from_str(&jws).unwrap();
        assert_eq!(parsed["payload"], "");
    }

    #[test]
    fn test_build_jws_no_key_fails() {
        let challenges = Arc::new(ChallengeStore::new());
        let client = AcmeClient::new(test_config(), challenges).unwrap();
        let result = client.build_jws("https://acme.example/test", "{}", "nonce");
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("Account key"));
    }

    #[test]
    fn test_acme_client_challenges_accessor() {
        let challenges = Arc::new(ChallengeStore::new());
        let client = AcmeClient::new(test_config(), challenges.clone()).unwrap();
        assert!(client.challenges().is_empty());
    }
}