fars 0.2.0

An unofficial Rust client for the Firebase Auth REST API.
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
//! Configuration for the Firebase Auth.
//!
//! ## Features
//! 1. Provides a session ([`crate::Session`]) via sigining in (or equivalent) methods.
//! 2. Provides APIs that do not require any ID token.
//!
//! See aslo [`crate::session`] for APIs that require an ID token.
//!
//! ## 1. Siging in methods
//! Supported sigining in methods are as follows:
//!
//! - [Sign up with email and password](`crate::Config::sign_up_with_email_password`)
//! - [Sign in with email and password](`crate::Config::sign_in_with_email_password`)
//! - [Sign in with OAuth credential](`crate::Config::sign_in_with_oauth_credential`)
//! - [Sign in anounymously](`crate::Config::sign_in_anonymously`)
//! - [Exchange a refresh token to an ID token](`crate::Config::exchange_refresh_token`)
//!
//! ## 2. Supported APIs that do not require an ID token
//! Supported APIs that do not require an ID token are as follows:
//!
//! - [Fetch providers for email](`crate::Config::fetch_providers_for_email`)
//! - [Send password reset email](`crate::Config::send_reset_password_email`)
//!
//! ## Supported OAuth ID providers
//! Supported OAuth ID provides are as follows:
//!
//! - [ ] (Not implemented) Apple (`apple.com`)
//! - [ ] (Not implemented) Apple Game Center (`gc.apple.com`)
//! - [ ] (Not tested) Facebook (`facebook.com`)
//! - [ ] (Not implemented) GitHub (`github.com`)
//! - [x] Google (`google.com`)
//! - [ ] (Not implemented) Google Play Games (`playgames.google.com`)
//! - [ ] (Not implemented) LinkedIn (`linkedin.com`)
//! - [ ] (Not implemented) Microsoft (`microsoft.com`)
//! - [ ] (Not tested) Twitter (`twitter.com`)
//! - [ ] (Not implemented) Yahoo (`yahoo.com`)
//! - [ ] (Not implemented) custom
//!
//! Unsupported providers have either not been tested or the format of [`crate::IdpPostBody`] is not documented at the [official API reference](https://firebase.google.com/docs/reference/rest/auth).
//!
//! ## Examples
//!
//! ### Sign in with email / password
//! An example of sign in with email and password with [tokio](https://github.com/tokio-rs/tokio) and [anyhow](https://github.com/dtolnay/anyhow) is as follows:
//!
//! ```rust
//! use fars::Config;
//! use fars::ApiKey;
//! use fars::Email;
//! use fars::Password;
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//!     // Create a config.
//!     let config = Config::new(
//!         ApiKey::new("your-firebase-project-api-key"),
//!     );
//!
//!     // Get a session by signing in with email and password.
//!     let session = config.sign_in_with_email_password(
//!         Email::new("user@example"),
//!         Password::new("password"),
//!     ).await?;
//!
//!     // Do something with the session.
//!     println!(
//!         "Succeeded to sign in with email and password: {:?}",
//!         session
//!     );
//!
//!     Ok(())
//! }
//! ```
//!
//! ### Sign in with Google OAuth credential
//! An example of sign in with Google OAuth credential with [tokio](https://github.com/tokio-rs/tokio) and [anyhow](https://github.com/dtolnay/anyhow) is as follows:
//!
//! ```rust
//! use fars::Config;
//! use fars::ApiKey;
//! use fars::OAuthRequestUri;
//! use fars::IdpPostBody;
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//!     // Create a config.
//!     let config = Config::new(
//!         ApiKey::new("your-firebase-project-api-key"),
//!     );
//!
//!     // Get a credential for Google OAuth by any method.
//!     let google_open_id_token = "user-google-oauth-open-id-token".to_string();
//!
//!     // Get a session by signing in with Google OAuth credential.
//!     let session = config.sign_in_with_oauth_credential(
//!         OAuthRequestUri::new("https://your-app.com/redirect/path/auth/handler"),
//!         IdpPostBody::Google {
//!             id_token: google_open_id_token,
//!         },
//!     ).await?;
//!
//!     // Do something with the session.
//!     println!(
//!         "Succeeded to sign in with Google OAuth credential: {:?}",
//!         session
//!     );
//!
//!     Ok(())
//! }
//! ```
//!
//! ### Send password reset email
//! An example of sending password reset email with [tokio](https://github.com/tokio-rs/tokio) and [anyhow](https://github.com/dtolnay/anyhow) is as follows:
//!
//! ```rust
//! use fars::Config;
//! use fars::ApiKey;
//! use fars::Email;
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//!     // Create a config.
//!     let config = Config::new(
//!         ApiKey::new("your-firebase-project-api-key"),
//!     );
//!
//!     // Send reset password email to specified email.
//!     config.send_reset_password_email(
//!         Email::new("user@example"),
//!     ).await?;
//!
//!     // Do something with the resutl.
//!     println!("Succeeded to send reset password email");
//!
//!     Ok(())
//! }
//! ```

use crate::api;
use crate::ApiKey;
use crate::Client;
use crate::Email;
use crate::ExpiresIn;
use crate::IdToken;
use crate::IdpPostBody;
use crate::LanguageCode;
use crate::OAuthContinueUri;
use crate::OAuthRequestUri;
use crate::Password;
use crate::ProviderId;
use crate::RefreshToken;
use crate::Result;
use crate::Session;

/// Configuration for the Firebase Auth.
///
/// ## Example
/// ```
/// use fars::Config;
/// use fars::ApiKey;
///
/// let config = Config::new(
///     ApiKey::new("your-firebase-project-api-key"),
/// );
/// ```
#[derive(Clone, Debug)]
pub struct Config {
    /// Firebase project API key.
    api_key: ApiKey,
    /// A HTTP client.
    client: Client,
}

impl Config {
    /// Creates a new config.
    ///
    /// ## Arguments
    /// - `api_key` - Your Firebase project API key.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    /// ```
    pub fn new(api_key: ApiKey) -> Self {
        Self {
            api_key,
            client: Client::new(),
        }
    }

    /// Creates a new config with a custom HTTP client.
    ///
    /// ## NOTE
    /// This method requires the `custom_client` feature.
    ///
    /// ## Arguments
    /// - `api_key` - Your Firebase project API key.
    /// - `client` - A custom HTTP client.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use std::time::Duration;
    ///
    /// // Create a custom reqwest client with timeout.
    /// let client = fars::reqwest::ClientBuilder::new()
    ///     .timeout(Duration::from_secs(60))
    ///     .connect_timeout(Duration::from_secs(10))
    ///     .build()?;
    ///
    /// // Create a custom config.
    /// let config = Config::custom(
    ///     ApiKey::new("your-firebase-project-api-key"),
    ///     Client::custom(client),
    /// );
    /// ```
    #[cfg(feature = "custom_client")]
    pub fn custom(
        api_key: ApiKey,
        client: Client,
    ) -> Self {
        Self {
            api_key,
            client,
        }
    }

    /// Signs up a new user with the given email and password.
    ///
    /// ## Arguments
    /// - `email` - The email of the user to sign up.
    /// - `password` - The password of the user to sign up.
    ///
    /// ## Returns
    /// The session for the signed up user.
    ///
    /// ## Errors
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    /// - `Error::ParseExpriesInFailed` - Failed to parse the expires in value.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use fars::Email;
    /// use fars::Password;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// let session = config.sign_up_with_email_password(
    ///     Email::new("user@example"),
    ///     Password::new("password"),
    /// ).await?;
    /// ```
    pub async fn sign_up_with_email_password(
        &self,
        email: Email,
        password: Password,
    ) -> Result<Session> {
        // Create request payload.
        let request_payload =
            api::SignUpWithEmailPasswordRequestBodyPayload::new(
                email.inner().to_string(),
                password.inner().to_string(),
            );

        // Send request.
        let response_payload = api::sign_up_with_email_password(
            &self.client,
            &self.api_key,
            request_payload,
        )
        .await?;

        // Create session.
        Ok(Session {
            client: self.client.clone(),
            api_key: self.api_key.clone(),
            id_token: IdToken::new(response_payload.id_token),
            expires_in: ExpiresIn::parse(response_payload.expires_in)?,
            refresh_token: RefreshToken::new(response_payload.refresh_token),
        })
    }

    /// Signs in a user with the given email and password.
    ///
    /// ## Arguments
    /// - `email` - The email of the user to sign in.
    /// - `password` - The password of the user to sign in.
    ///
    /// ## Returns
    /// The session for the signed in user.
    ///
    /// ## Errors
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    /// - `Error::ParseExpriesInFailed` - Failed to parse the expires in value.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use fars::Email;
    /// use fars::Password;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// let session = config.sign_in_with_email_password(
    ///     Email::new("user@example"),
    ///     Password::new("password"),
    /// ).await?;
    /// ```
    pub async fn sign_in_with_email_password(
        &self,
        email: Email,
        password: Password,
    ) -> Result<Session> {
        // Create request payload.
        let request_payload =
            api::SignInWithEmailPasswordRequestBodyPayload::new(
                email.inner().to_string(),
                password.inner().to_string(),
            );

        // Send request.
        let response_payload = api::sign_in_with_email_password(
            &self.client,
            &self.api_key,
            request_payload,
        )
        .await?;

        // Create session.
        Ok(Session {
            client: self.client.clone(),
            api_key: self.api_key.clone(),
            id_token: IdToken::new(response_payload.id_token),
            expires_in: ExpiresIn::parse(response_payload.expires_in)?,
            refresh_token: RefreshToken::new(response_payload.refresh_token),
        })
    }

    /// Signs in as an anonymous user.
    ///
    /// ## Returns
    /// The session for the signed in user.
    ///
    /// ## Errors
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    /// - `Error::ParseExpriesInFailed` - Failed to parse the expires in value.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// let session = config.sign_in_anonymously().await?;
    /// ```
    pub async fn sign_in_anonymously(&self) -> Result<Session> {
        // Create request payload.
        let request_payload = api::SignInAnonymouslyRequestBodyPayload::new();

        // Send request.
        let response_payload = api::sign_in_anonymously(
            &self.client,
            &self.api_key,
            request_payload,
        )
        .await?;

        // Create session.
        Ok(Session {
            client: self.client.clone(),
            api_key: self.api_key.clone(),
            id_token: IdToken::new(response_payload.id_token),
            expires_in: ExpiresIn::parse(response_payload.expires_in)?,
            refresh_token: RefreshToken::new(response_payload.refresh_token),
        })
    }

    /// Signs in a user with the given OAuth credential.
    ///
    /// ## Arguments
    /// - `request_uri` - The URI to which the IDP redirects the user back.
    /// - `post_body` - The POST body passed to the IDP containing the OAuth credential and provider ID.
    ///
    /// ## Returns
    /// The session for the signed in user.
    ///
    /// ## Errors
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    /// - `Error::ParseExpriesInFailed` - Failed to parse the expires in value.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use fars::OAuthRequestUri;
    /// use fars::IdpPostBody;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// let session = config.sign_in_with_oauth_credential(
    ///     OAuthRequestUri::new("https://your-app.com/redirect/path/auth/handler"),
    ///     IdpPostBody::Google {
    ///         id_token: "user-google-oauth-open-id-token".to_string(),
    ///     },
    /// ).await?;
    /// ```
    pub async fn sign_in_with_oauth_credential(
        &self,
        request_uri: OAuthRequestUri,
        post_body: IdpPostBody,
    ) -> Result<Session> {
        // Create request payload.
        let request_payload =
            api::SignInWithOAuthCredentialRequestBodyPayload::new(
                request_uri
                    .inner()
                    .to_string(),
                post_body,
                false,
            );

        // Send request.
        let response_payload = api::sign_in_with_oauth_credential(
            &self.client,
            &self.api_key,
            request_payload,
        )
        .await?;

        // Create session.
        Ok(Session {
            client: self.client.clone(),
            api_key: self.api_key.clone(),
            id_token: IdToken::new(response_payload.id_token),
            expires_in: ExpiresIn::parse(response_payload.expires_in)?,
            refresh_token: RefreshToken::new(response_payload.refresh_token),
        })
    }

    /// Exchanges a refresh token for an ID token and new refresh token.
    ///
    /// ## Arguments
    /// - `refresh_token` - A Firebase Auth refresh token.
    ///
    /// ## Returns
    /// The session for the signed in user.
    ///
    /// ## Errors
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    /// - `Error::ParseExpriesInFailed` - Failed to parse the expires in value.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use fars::RefreshToken;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// let session = config.exchange_refresh_token(
    ///     RefreshToken::new("user-firebase-refresh-token"),
    /// ).await?;
    /// ```
    pub async fn exchange_refresh_token(
        &self,
        refresh_token: RefreshToken,
    ) -> Result<Session> {
        // Create request payload.
        let request_payload = api::ExchangeRefreshTokenRequestBodyPayload::new(
            refresh_token
                .inner()
                .to_string(),
        );

        // Send request.
        let response_payload = api::exchange_refresh_token(
            &self.client,
            &self.api_key,
            request_payload,
        )
        .await?;

        // Create session.
        Ok(Session {
            client: self.client.clone(),
            api_key: self.api_key.clone(),
            id_token: IdToken::new(response_payload.id_token),
            expires_in: ExpiresIn::parse(response_payload.expires_in)?,
            refresh_token: RefreshToken::new(response_payload.refresh_token),
        })
    }

    /// Fetches the list of all IDPs for the specified email.
    ///
    /// ## Arguments
    /// - `email` - The email of the user to fetch providers.
    /// - `continue_uri` - The URI to which the IDP redirects the user back.
    ///
    /// ## Returns
    /// - None - The email address is not registered or protected. See also the [issue](https://github.com/firebase/firebase-ios-sdk/issues/11810).
    /// - Some - The list of all IDPs for the specified email if the email is registered and not protected.
    ///
    /// ## Errors
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use fars::Email;
    /// use fars::OAuthContinueUri;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// let providers = config.fetch_providers_for_email(
    ///     Email::new("user@example"),
    ///     OAuthContinueUri::new("https://your-app.com/current/path"),
    /// ).await?;
    /// ```
    pub async fn fetch_providers_for_email(
        &self,
        email: Email,
        continue_uri: OAuthContinueUri,
    ) -> Result<Option<Vec<ProviderId>>> {
        // Create request payload.
        let request_payload =
            api::FetchProvidersForEmailRequestBodyPayload::new(
                email.inner().to_string(),
                continue_uri
                    .inner()
                    .to_string(),
            );

        // Send request.
        let response_payload = api::fetch_providers_for_email(
            &self.client,
            &self.api_key,
            request_payload,
        )
        .await?;

        match response_payload.all_providers {
            | None => Ok(None),
            | Some(providers) => {
                // Parse provider IDs from string to `ProviderId`.
                let provider_ids = providers
                    .iter()
                    .map(|provider_id| ProviderId::parse(provider_id.clone()))
                    .collect();

                Ok(Some(provider_ids))
            },
        }
    }

    /// Sends a password reset email to the given email address.
    ///
    /// ## Arguments
    /// - `email` - The email of the user to send password reset email.
    /// - `locale` - The optional language code corresponding to the user's locale.
    ///
    /// ## Errors
    /// - `Error::InvalidHeaderValue` - Invalid header value.
    /// - `Error::HttpRequestError` - Failed to send a request.
    /// - `Error::ReadResponseTextFailed` - Failed to read the response body as text.
    /// - `Error::DeserializeResponseJsonFailed` - Failed to deserialize the response body as JSON.
    /// - `Error::DeserializeErrorResponseJsonFailed` - Failed to deserialize the error response body as JSON.
    /// - `Error::ApiError` - API error on the Firebase Auth.
    ///
    /// ## Example
    /// ```
    /// use fars::Config;
    /// use fars::ApiKey;
    /// use fars::Email;
    ///
    /// let config = Config::new(
    ///     ApiKey::new("your-firebase-project-api-key"),
    /// );
    ///
    /// config.send_reset_password_email(
    ///     Email::new("user@example".),
    ///     None, // locale
    /// ).await?;
    /// ```
    pub async fn send_reset_password_email(
        &self,
        email: Email,
        locale: Option<LanguageCode>,
    ) -> Result<()> {
        // Create request payload.
        let request_payload =
            api::SendPasswordResetEmailRequestBodyPayload::new(
                email.inner().to_string(),
            );

        // Send request.
        api::send_password_reset_email(
            &self.client,
            &self.api_key,
            request_payload,
            locale,
        )
        .await?;

        Ok(())
    }
}