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
// SPDX-License-Identifier: Apache-2.0
use Duration;
use async_trait;
use Error;
use Url;
use crateCryptoClient;
use cratePayload;
use crate;
use crateWebClient;
/// Defines the asynchronous interface for a client that can send and receive secrets.
///
/// This trait represents the core API for secret operations. The library provides
/// a default implementation via `client::new()`, but users can create wrapper
/// clients that add additional functionality around the core client.
///
/// # Examples
///
/// ## Adding Validation to Client Operations
///
/// ```
/// use hakanai_lib::{client, client::{Client, ClientError}, models::Payload};
/// use hakanai_lib::options::{SecretSendOptions, SecretReceiveOptions};
/// use async_trait::async_trait;
/// use url::Url;
/// use std::time::Duration;
///
/// // Wrapper that adds input validation to client operations
/// struct ValidatingClient {
/// inner: Box<dyn Client<Payload>>,
/// max_size: usize,
/// }
///
/// impl ValidatingClient {
/// fn new(inner: Box<dyn Client<Payload>>, max_size: usize) -> Self {
/// Self { inner, max_size }
/// }
/// }
///
/// #[async_trait]
/// impl Client<Payload> for ValidatingClient {
/// async fn send_secret(
/// &self,
/// base_url: Url,
/// payload: Payload,
/// ttl: Duration,
/// token: String,
/// opts: Option<SecretSendOptions>,
/// ) -> Result<Url, ClientError> {
/// // Validate payload size before sending
/// if payload.data.len() > self.max_size {
/// return Err(ClientError::Custom(format!(
/// "Payload size {} exceeds maximum {}",
/// payload.data.len(),
/// self.max_size
/// )));
/// }
///
/// // Validate filename for security
/// if let Some(ref filename) = payload.filename {
/// if filename.contains("..") || filename.starts_with('/') {
/// return Err(ClientError::Custom(
/// "Invalid filename: path traversal detected".to_string()
/// ));
/// }
/// }
///
/// // Validation passed, proceed with sending
/// self.inner.send_secret(base_url, payload, ttl, token, opts).await
/// }
///
/// async fn receive_secret(
/// &self,
/// url: Url,
/// opts: Option<SecretReceiveOptions>,
/// ) -> Result<Payload, ClientError> {
/// // Pass through to inner client
/// self.inner.receive_secret(url, opts).await
/// }
/// }
///
/// // Usage: wrap the default client with validation
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let base_client = client::new();
/// let validating_client = ValidatingClient::new(Box::new(base_client), 1024 * 1024); // 1MB limit
///
/// let payload = Payload {
/// data: "test secret".to_string(),
/// filename: None,
/// };
///
/// // This will validate before sending
/// let url = validating_client.send_secret(
/// Url::parse("https://api.example.com")?,
/// payload,
/// Duration::from_secs(3600),
/// "token".to_string(),
/// None,
/// ).await?;
/// # Ok(())
/// # }
/// ```
/// Represents errors that can occur during client operations.
///
/// This enum covers all possible error cases when sending or receiving secrets,
/// including network errors, parsing errors, and cryptographic failures.
///
/// # Examples
///
/// ```
/// use hakanai_lib::{client, client::{Client, ClientError}, models::Payload};
/// use std::time::Duration;
/// use url::Url;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let client = client::new();
/// let payload = Payload::from_bytes(b"Test secret", None);
///
/// match client.send_secret(
/// Url::parse("https://api.example.com")?,
/// payload,
/// Duration::from_secs(3600),
/// "auth-token".to_string(),
/// None,
/// ).await {
/// Ok(url) => println!("Secret stored at: {}", url),
/// Err(ClientError::Web(e)) => eprintln!("Network error: {}", e),
/// Err(ClientError::Http(msg)) => eprintln!("Server error: {}", msg),
/// Err(ClientError::CryptoError(msg)) => eprintln!("Decryption failed: {}", msg),
/// Err(e) => eprintln!("Other error: {}", e),
/// }
/// # Ok(())
/// # }
/// ```
/// Creates a new client instance with the default configuration.
///
/// This function constructs a layered client stack that provides:
/// - HTTP communication via `WebClient`
/// - AES-256-GCM encryption via `CryptoClient`
/// - Automatic `Payload` serialization via `SecretClient`
///
/// # Examples
///
/// ```no_run
/// use hakanai_lib::{client, client::Client, models::Payload};
/// use std::time::Duration;
/// use url::Url;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// // Create the default client
/// let client = client::new();
///
/// // Send a secret
/// let url = client.send_secret(
/// Url::parse("https://api.example.com")?,
/// Payload {
/// data: "my secret data".to_string(),
/// filename: None,
/// },
/// Duration::from_secs(3600),
/// "auth-token".to_string(),
/// None,
/// ).await?;
///
/// // The URL contains the encryption key and hash in the fragment (#key:hash)
/// println!("Share this URL: {}", url);
/// # Ok(())
/// # }
/// ```