acmex 0.8.0

AcmeX: High-performance, extensible ACME v2 (RFC 8555) client and server in Rust, supporting multiple DNS providers, storage backends, and crypto libraries.
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
use crate::account::AccountManager;
/// Order lifecycle management
use crate::error::Result;
use crate::order::{Authorization, Challenge, NewOrderRequest, Order};
use crate::protocol::{DirectoryManager, NonceManager};
use base64::Engine;
use base64::engine::general_purpose::URL_SAFE_NO_PAD;
use serde_json::json;
use std::time::Duration;

/// Order manager for handling order lifecycle
pub struct OrderManager<'a> {
    account_manager: &'a AccountManager<'a>,
    directory_manager: &'a DirectoryManager,
    nonce_manager: &'a NonceManager,
    http_client: &'a reqwest::Client,
    account_id: String,
}

impl<'a> OrderManager<'a> {
    /// Create a new order manager
    pub fn new(
        account_manager: &'a AccountManager<'a>,
        directory_manager: &'a DirectoryManager,
        nonce_manager: &'a NonceManager,
        http_client: &'a reqwest::Client,
        account_id: String,
    ) -> Self {
        Self {
            account_manager,
            directory_manager,
            nonce_manager,
            http_client,
            account_id,
        }
    }

    /// Create a new order
    pub async fn create_order(&self, request: &NewOrderRequest) -> Result<(String, Order)> {
        let directory = self.directory_manager.get().await?;
        let nonce = self.nonce_manager.get_nonce().await?;

        // Build JWS header
        let header = json!({
            "alg": "EdDSA",
            "kid": &self.account_id,
            "nonce": nonce,
            "url": &directory.new_order,
        });

        // Build payload
        let payload = json!(request);

        // Sign the request
        let jws = self.account_manager.get_signer().sign(&header, &payload)?;

        // Send request
        let response = self
            .http_client
            .post(&directory.new_order)
            .header("Content-Type", "application/jose+json")
            .body(jws)
            .send()
            .await
            .map_err(|e| {
                crate::error::AcmeError::transport(format!("Failed to create order: {}", e))
            })?;

        // Cache nonce
        if let Some(nonce_header) = response.headers().get("replay-nonce")
            && let Ok(nonce_str) = nonce_header.to_str()
        {
            self.nonce_manager.cache_nonce(nonce_str.to_string()).await;
        }

        // Get order URL from Location header
        let order_url = response
            .headers()
            .get("location")
            .and_then(|h| h.to_str().ok())
            .ok_or_else(|| {
                crate::error::AcmeError::order(
                    "Missing Location header in order response".to_string(),
                    "".to_string(),
                )
            })?
            .to_string();

        let status = response.status();
        if !status.is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(crate::error::AcmeError::order(
                format!("Failed to create order: HTTP {}", status),
                error_text,
            ));
        }

        // Parse order
        let order: Order = response.json().await.map_err(|e| {
            crate::error::AcmeError::order("Failed to parse order".to_string(), e.to_string())
        })?;

        tracing::info!("Order created: {}", order_url);
        Ok((order_url, order))
    }

    /// Get order status
    pub async fn get_order(&self, order_url: &str) -> Result<Order> {
        let nonce = self.nonce_manager.get_nonce().await?;

        let header = json!({
            "alg": "EdDSA",
            "kid": &self.account_id,
            "nonce": nonce,
            "url": order_url,
        });

        let payload = json!({});
        let jws = self.account_manager.get_signer().sign(&header, &payload)?;

        let response = self
            .http_client
            .post(order_url)
            .header("Content-Type", "application/jose+json")
            .body(jws)
            .send()
            .await
            .map_err(|e| {
                crate::error::AcmeError::transport(format!("Failed to get order: {}", e))
            })?;

        // Cache nonce
        if let Some(nonce_header) = response.headers().get("replay-nonce")
            && let Ok(nonce_str) = nonce_header.to_str()
        {
            self.nonce_manager.cache_nonce(nonce_str.to_string()).await;
        }

        let status = response.status();
        if !status.is_success() {
            return Err(crate::error::AcmeError::order(
                format!("Failed to get order: HTTP {}", status),
                "".to_string(),
            ));
        }

        let order: Order = response.json().await.map_err(|e| {
            crate::error::AcmeError::order("Failed to parse order".to_string(), e.to_string())
        })?;

        Ok(order)
    }

    /// Get authorization
    pub async fn get_authorization(&self, auth_url: &str) -> Result<Authorization> {
        let nonce = self.nonce_manager.get_nonce().await?;

        let header = json!({
            "alg": "EdDSA",
            "kid": &self.account_id,
            "nonce": nonce,
            "url": auth_url,
        });

        let payload = json!({});
        let jws = self.account_manager.get_signer().sign(&header, &payload)?;

        let response = self
            .http_client
            .post(auth_url)
            .header("Content-Type", "application/jose+json")
            .body(jws)
            .send()
            .await
            .map_err(|e| {
                crate::error::AcmeError::transport(format!("Failed to get authorization: {}", e))
            })?;

        // Cache nonce
        if let Some(nonce_header) = response.headers().get("replay-nonce")
            && let Ok(nonce_str) = nonce_header.to_str()
        {
            self.nonce_manager.cache_nonce(nonce_str.to_string()).await;
        }

        let status = response.status();
        if !status.is_success() {
            return Err(crate::error::AcmeError::order(
                format!("Failed to get authorization: HTTP {}", status),
                "".to_string(),
            ));
        }

        let auth: Authorization = response.json().await.map_err(|e| {
            crate::error::AcmeError::order(
                "Failed to parse authorization".to_string(),
                e.to_string(),
            )
        })?;

        Ok(auth)
    }

    /// Respond to challenge (tell ACME server we're ready)
    pub async fn respond_to_challenge(&self, challenge_url: &str) -> Result<Challenge> {
        let nonce = self.nonce_manager.get_nonce().await?;

        let header = json!({
            "alg": "EdDSA",
            "kid": &self.account_id,
            "nonce": nonce,
            "url": challenge_url,
        });

        // Empty payload triggers validation
        let payload = json!({});
        let jws = self.account_manager.get_signer().sign(&header, &payload)?;

        let response = self
            .http_client
            .post(challenge_url)
            .header("Content-Type", "application/jose+json")
            .body(jws)
            .send()
            .await
            .map_err(|e| {
                crate::error::AcmeError::transport(format!("Failed to respond to challenge: {}", e))
            })?;

        // Cache nonce
        if let Some(nonce_header) = response.headers().get("replay-nonce")
            && let Ok(nonce_str) = nonce_header.to_str()
        {
            self.nonce_manager.cache_nonce(nonce_str.to_string()).await;
        }

        let status = response.status();
        if !status.is_success() {
            return Err(crate::error::AcmeError::challenge(
                "unknown".to_string(),
                format!("Failed to respond to challenge: HTTP {}", status),
            ));
        }

        let challenge: Challenge = response.json().await.map_err(|e| {
            crate::error::AcmeError::challenge(
                "unknown".to_string(),
                format!("Failed to parse challenge: {}", e),
            )
        })?;

        tracing::info!("Challenge response submitted: {}", challenge_url);
        Ok(challenge)
    }

    /// Poll order until it reaches a final state
    pub async fn poll_order(
        &self,
        order_url: &str,
        max_attempts: u32,
        interval: Duration,
    ) -> Result<Order> {
        for attempt in 0..max_attempts {
            let order = self.get_order(order_url).await?;

            match order.status.as_str() {
                "ready" | "valid" | "invalid" => {
                    tracing::info!("Order status: {} (attempt {})", order.status, attempt + 1);
                    return Ok(order);
                }
                "pending" | "processing" => {
                    tracing::debug!("Order still pending, waiting... (attempt {})", attempt + 1);
                    tokio::time::sleep(interval).await;
                }
                status => {
                    return Err(crate::error::AcmeError::order(
                        format!("Unexpected order status: {}", status),
                        "".to_string(),
                    ));
                }
            }
        }

        Err(crate::error::AcmeError::order(
            "Order polling timeout".to_string(),
            format!("Exceeded {} attempts", max_attempts),
        ))
    }

    /// Finalize order with CSR
    pub async fn finalize_order(&self, finalize_url: &str, csr_der: &[u8]) -> Result<Order> {
        let nonce = self.nonce_manager.get_nonce().await?;

        let header = json!({
            "alg": "EdDSA",
            "kid": &self.account_id,
            "nonce": nonce,
            "url": finalize_url,
        });

        // Encode CSR as base64url
        let csr_b64 = URL_SAFE_NO_PAD.encode(csr_der);

        let payload = json!({
            "csr": csr_b64
        });

        let jws = self.account_manager.get_signer().sign(&header, &payload)?;

        let response = self
            .http_client
            .post(finalize_url)
            .header("Content-Type", "application/jose+json")
            .body(jws)
            .send()
            .await
            .map_err(|e| {
                crate::error::AcmeError::transport(format!("Failed to finalize order: {}", e))
            })?;

        // Cache nonce
        if let Some(nonce_header) = response.headers().get("replay-nonce")
            && let Ok(nonce_str) = nonce_header.to_str()
        {
            self.nonce_manager.cache_nonce(nonce_str.to_string()).await;
        }

        let status = response.status();
        if !status.is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(crate::error::AcmeError::order(
                format!("Failed to finalize order: HTTP {}", status),
                error_text,
            ));
        }

        let order: Order = response.json().await.map_err(|e| {
            crate::error::AcmeError::order(
                "Failed to parse finalized order".to_string(),
                e.to_string(),
            )
        })?;

        tracing::info!("Order finalized successfully");
        Ok(order)
    }

    /// Download certificate
    pub async fn download_certificate(&self, certificate_url: &str) -> Result<String> {
        let nonce = self.nonce_manager.get_nonce().await?;

        let header = json!({
            "alg": "EdDSA",
            "kid": &self.account_id,
            "nonce": nonce,
            "url": certificate_url,
        });

        let payload = json!({});
        let jws = self.account_manager.get_signer().sign(&header, &payload)?;

        let response = self
            .http_client
            .post(certificate_url)
            .header("Content-Type", "application/jose+json")
            .body(jws)
            .send()
            .await
            .map_err(|e| {
                crate::error::AcmeError::transport(format!("Failed to download certificate: {}", e))
            })?;

        // Cache nonce
        if let Some(nonce_header) = response.headers().get("replay-nonce")
            && let Ok(nonce_str) = nonce_header.to_str()
        {
            self.nonce_manager.cache_nonce(nonce_str.to_string()).await;
        }

        let status = response.status();
        if !status.is_success() {
            return Err(crate::error::AcmeError::certificate(format!(
                "Failed to download certificate: HTTP {}",
                status
            )));
        }

        let cert_pem = response.text().await.map_err(|e| {
            crate::error::AcmeError::certificate(format!("Failed to read certificate: {}", e))
        })?;

        tracing::info!("Certificate downloaded successfully");
        Ok(cert_pem)
    }
}

#[cfg(test)]
mod tests {
    #[test]
    fn test_order_manager_creation() {
        // This is a compile test - actual tests require full ACME setup
    }
}