openfigi-rs 0.3.1

A Rust client for interacting with the OpenFIGI API and parsing financial data.
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
//! Builder pattern for configuring OpenFIGI API clients.
//!
//! This module provides [`crate::client_builder::OpenFIGIClientBuilder`] for creating customized [`crate::client::OpenFIGIClient`]
//! instances with support for custom HTTP clients, middleware, authentication, and base URLs.
//!
//! ## Key Features
//!
//! - **Fluent API**: Chainable method calls for clean configuration
//! - **HTTP Client Support**: Integrate custom `reqwest::Client` or middleware stacks  
//! - **Smart Defaults**: Falls back to environment variables and sensible defaults
//! - **Middleware Priority**: Control over HTTP client precedence and middleware composition
//!
//! ## Examples
//!
//! ### Basic Setup
//! ```rust
//! use openfigi_rs::client_builder::OpenFIGIClientBuilder;
//!
//! let client = OpenFIGIClientBuilder::new()
//!     .api_key("your_api_key")
//!     .build()?;
//! # Ok::<(), Box<dyn std::error::Error>>(())
//! ```
//!
//! ### Custom HTTP Client
//! ```rust
//! use openfigi_rs::client_builder::OpenFIGIClientBuilder;
//! use reqwest::Client;
//! use std::time::Duration;
//!
//! let http_client = Client::builder()
//!     .timeout(Duration::from_secs(30))
//!     .build()?;
//!
//! let client = OpenFIGIClientBuilder::new()
//!     .reqwest_client(http_client)
//!     .build()?;
//! # Ok::<(), Box<dyn std::error::Error>>(())
//! ```
//!
//! ### With Middleware
//! ```rust
//! use openfigi_rs::client_builder::OpenFIGIClientBuilder;
//! use reqwest_middleware::ClientBuilder;
//! use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};
//!
//! let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);
//! let middleware_client = ClientBuilder::new(reqwest::Client::new())
//!     .with(RetryTransientMiddleware::new_with_policy(retry_policy))
//!     .build();
//!
//! let client = OpenFIGIClientBuilder::new()
//!     .middleware_client(middleware_client)
//!     .build()?;
//! # Ok::<(), Box<dyn std::error::Error>>(())
//! ```
//!
//! ### Production Configuration
//! ```rust
//! use openfigi_rs::client_builder::OpenFIGIClientBuilder;
//! use reqwest::Client;
//! use reqwest_middleware::ClientBuilder;
//! use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};
//! use std::time::Duration;
//!
//! // Configure HTTP client with timeouts
//! let http_client = Client::builder()
//!     .timeout(Duration::from_secs(30))
//!     .connect_timeout(Duration::from_secs(5))
//!     .build()?;
//!
//! // Add retry middleware
//! let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);
//! let middleware_client = ClientBuilder::new(http_client)
//!     .with(RetryTransientMiddleware::new_with_policy(retry_policy))
//!     .build();
//!
//! // Build OpenFIGI client
//! let client = OpenFIGIClientBuilder::new()
//!     .base_url("https://api.openfigi.com/v3")
//!     .api_key("your-api-key")
//!     .middleware_client(middleware_client)
//!     .build()?;
//! # Ok::<(), Box<dyn std::error::Error>>(())
//! ```

use crate::{
    API_KEY, DEFAULT_BASE_URL,
    client::OpenFIGIClient,
    error::{OpenFIGIError, Result},
};
use reqwest::Client as ReqwestClient;
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use url::Url;

/// Builder for configuring [`crate::client::OpenFIGIClient`] instances with custom settings.
///
/// Provides a fluent API for client configuration with memory-efficient string storage.
/// Supports custom HTTP clients, middleware stacks, base URLs, and API keys with
/// automatic fallbacks to environment variables and sensible defaults.
///
/// ## Client Precedence
///
/// When building the final client, HTTP clients are prioritized as follows:
/// 1. `middleware_client` (if set via [`Self::middleware_client`])
/// 2. `reqwest_client` wrapped with default middleware (if set via [`Self::reqwest_client`])
/// 3. Default `reqwest::Client` with default middleware
///
/// # Examples
///
/// ```rust
/// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
///
/// // Basic configuration
/// let client = OpenFIGIClientBuilder::new()
///     .api_key("your-api-key")
///     .base_url("https://api.openfigi.com/v3")
///     .build()?;
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
pub struct OpenFIGIClientBuilder {
    reqwest_client: Option<ReqwestClient>,
    middleware_client: Option<ClientWithMiddleware>,
    base_url: Option<String>,
    api_key: Option<String>,
}

impl Default for OpenFIGIClientBuilder {
    /// Create a new builder with all fields unset.
    ///
    /// Equivalent to [`Self::new`]. All configuration will use defaults
    /// or environment variables during [`Self::build`].
    fn default() -> Self {
        Self {
            reqwest_client: None,
            middleware_client: None,
            base_url: None,
            api_key: None,
        }
    }
}

impl OpenFIGIClientBuilder {
    /// Create a new builder with default settings.
    ///
    /// All fields start as `None` and will use defaults or environment variables during [`Self::build`].
    ///
    /// # Examples
    ///
    /// ```rust
    /// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
    ///
    /// let builder = OpenFIGIClientBuilder::new();
    /// let client = builder.build()?;
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Set a custom base URL for the OpenFIGI API.
    ///
    /// Overrides the default URL (`https://api.openfigi.com/v3/`). Useful for testing
    /// with sandbox environments or custom API deployments.
    ///
    /// # Arguments
    ///
    /// * `url` - The base URL string (must be a valid URL)
    ///
    /// # Examples
    ///
    /// ```rust
    /// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
    ///
    /// let client = OpenFIGIClientBuilder::new()
    ///     .base_url("https://api-sandbox.openfigi.com/v3/")
    ///     .build()?;
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    #[must_use]
    pub fn base_url(mut self, url: impl Into<String>) -> Self {
        self.base_url = Some(url.into());
        self
    }

    /// Set the API key for authenticating requests.
    ///
    /// If not explicitly provided, the builder attempts to use the `OPENFIGI_API_KEY`
    /// environment variable. Without an API key, the client operates with rate limits
    /// but can still access public endpoints.
    ///
    /// # Arguments
    ///
    /// * `key` - The API key string obtained from OpenFIGI
    ///
    /// # Examples
    ///
    /// ```rust
    /// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
    ///
    /// let client = OpenFIGIClientBuilder::new()
    ///     .api_key("your-api-key")
    ///     .build()?;
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    #[must_use]
    pub fn api_key(mut self, key: impl Into<String>) -> Self {
        self.api_key = Some(key.into());
        self
    }

    /// Use a custom reqwest client for HTTP operations.
    ///
    /// The provided client will be automatically wrapped with default middleware.
    /// Use this when you need specific HTTP configurations like custom timeouts,
    /// proxies, or TLS settings.
    ///
    /// **Note**: [`Self::middleware_client`] takes precedence if both are set.
    ///
    /// # Arguments
    ///
    /// * `client` - A configured `reqwest::Client` instance
    ///
    /// # Examples
    ///
    /// ```rust
    /// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
    /// use reqwest::Client;
    /// use std::time::Duration;
    ///
    /// let http_client = Client::builder()
    ///     .timeout(Duration::from_secs(30))
    ///     .build()?;
    ///
    /// let client = OpenFIGIClientBuilder::new()
    ///     .reqwest_client(http_client)
    ///     .build()?;
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    #[must_use]
    pub fn reqwest_client(mut self, client: ReqwestClient) -> Self {
        self.reqwest_client = Some(client);
        self
    }

    /// Use a pre-configured middleware client for HTTP operations.
    ///
    /// This allows full control over the HTTP middleware stack, including retry policies,
    /// logging, authentication, and other custom middleware. Takes precedence over any
    /// reqwest client set via [`Self::reqwest_client`].
    ///
    /// # Arguments
    ///
    /// * `client` - A `ClientWithMiddleware` instance with your desired middleware stack
    ///
    /// # Examples
    ///
    /// ```rust
    /// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
    /// use reqwest_middleware::ClientBuilder;
    /// use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};
    ///
    /// let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);
    /// let middleware_client = ClientBuilder::new(reqwest::Client::new())
    ///     .with(RetryTransientMiddleware::new_with_policy(retry_policy))
    ///     .build();
    ///
    /// let client = OpenFIGIClientBuilder::new()
    ///     .middleware_client(middleware_client)
    ///     .build()?;
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    #[must_use]
    pub fn middleware_client(mut self, client: ClientWithMiddleware) -> Self {
        self.middleware_client = Some(client);
        self
    }

    /// Build the [`OpenFIGIClient`] with the configured settings.
    ///
    /// Creates the final client instance using the configured options. Missing settings
    /// are populated with defaults or environment variables where applicable.
    ///
    /// ## HTTP Client Resolution
    ///
    /// The builder selects HTTP clients in this order:
    /// 1. `middleware_client` (if provided via [`Self::middleware_client`])
    /// 2. `reqwest_client` wrapped with default middleware (if provided via [`Self::reqwest_client`])
    /// 3. Default `reqwest::Client` with default middleware
    ///
    /// ## Default Values
    ///
    /// - **Base URL**: `https://api.openfigi.com/v3/`
    /// - **API Key**: Value from `OPENFIGI_API_KEY` environment variable (if set)
    /// - **HTTP Client**: Default reqwest client with standard middleware
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The base URL cannot be parsed as a valid URL
    /// - The underlying HTTP client cannot be created
    ///
    /// # Examples
    ///
    /// ```rust
    /// use openfigi_rs::client_builder::OpenFIGIClientBuilder;
    ///
    /// // Minimal configuration
    /// let client = OpenFIGIClientBuilder::new().build()?;
    ///
    /// // With custom settings  
    /// let client = OpenFIGIClientBuilder::new()
    ///     .api_key("your-api-key")
    ///     .base_url("https://api.openfigi.com/v3/")
    ///     .build()?;
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn build(self) -> Result<OpenFIGIClient> {
        // Determine the HTTP client to use (middleware_client takes precedence)
        let client = match (self.middleware_client, self.reqwest_client) {
            (Some(middleware_client), _) => middleware_client,
            (None, Some(reqwest_client)) => ClientBuilder::new(reqwest_client).build(),
            (None, None) => ClientBuilder::new(ReqwestClient::default()).build(),
        };

        // Parse base URL or use default
        let base_url = match self.base_url {
            Some(url_str) => Url::parse(&url_str).map_err(OpenFIGIError::from)?,
            None => DEFAULT_BASE_URL.clone(),
        };

        // Use provided API key or try environment variable (only if not set)
        let api_key = self.api_key.or(API_KEY.clone());

        Ok(OpenFIGIClient::new_with_components(
            client, base_url, api_key,
        ))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use reqwest::Client as ReqwestClient;
    use reqwest_middleware::ClientBuilder;
    use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};

    #[test]
    fn test_builder_basic() {
        let client = OpenFIGIClientBuilder::new()
            .build()
            .expect("Client build should succeed");
        assert_eq!(client.base_url().as_str(), DEFAULT_BASE_URL.as_str());
    }

    #[test]
    fn test_builder_base_url() {
        let custom_url = "https://api-custom.openfigi.com/v3/";
        let client = OpenFIGIClientBuilder::new()
            .base_url(custom_url)
            .build()
            .expect("Client build should succeed");
        assert_eq!(client.base_url().as_str(), custom_url);
    }

    #[test]
    fn test_builder_api_key() {
        let client = OpenFIGIClientBuilder::new()
            .api_key("test_key")
            .build()
            .expect("Client build should succeed");
        assert!(client.has_api_key());
    }

    #[test]
    fn test_builder_reqwest_client() {
        let reqwest_client = ReqwestClient::new();
        let client = OpenFIGIClientBuilder::new()
            .reqwest_client(reqwest_client)
            .build()
            .expect("Client build should succeed");
        assert_eq!(client.base_url().as_str(), DEFAULT_BASE_URL.as_str());
    }

    #[test]
    fn test_builder_middleware_client() {
        let reqwest_client = ReqwestClient::new();
        let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3);
        let middleware_client = ClientBuilder::new(reqwest_client)
            .with(RetryTransientMiddleware::new_with_policy(retry_policy))
            .build();

        let client = OpenFIGIClientBuilder::new()
            .middleware_client(middleware_client)
            .build()
            .expect("Client build should succeed");

        assert_eq!(client.base_url().as_str(), DEFAULT_BASE_URL.as_str());
    }

    #[test]
    fn test_builder_invalid_url() {
        let result = OpenFIGIClientBuilder::new()
            .base_url("not-a-valid-url")
            .build();
        assert!(result.is_err());
    }

    #[test]
    fn test_builder_middleware_precedence() {
        let reqwest_client = ReqwestClient::new();
        let middleware_client = ClientBuilder::new(ReqwestClient::new()).build();

        let client = OpenFIGIClientBuilder::new()
            .reqwest_client(reqwest_client)
            .middleware_client(middleware_client)
            .build()
            .expect("Client build should succeed");

        // Should use middleware_client, not reqwest_client
        assert_eq!(client.base_url().as_str(), DEFAULT_BASE_URL.as_str());
    }

    #[test]
    fn test_builder_chaining() {
        let client = OpenFIGIClientBuilder::new()
            .base_url("https://api-custom.openfigi.com/v3/")
            .api_key("test_key")
            .reqwest_client(ReqwestClient::new())
            .build()
            .expect("Client build should succeed");

        assert_eq!(
            client.base_url().as_str(),
            "https://api-custom.openfigi.com/v3/"
        );
        assert!(client.has_api_key());
    }
}