rustauth-core 0.2.0

Core types and primitives for RustAuth.
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
//! Plugin contracts for RustAuth extensions.

use std::any::Any;
use std::future::Future;
use std::pin::Pin;

mod db;
mod endpoint;
mod error;
mod hooks;
mod init;
mod password;
mod rate_limit;
mod schema;

pub use db::{
    PluginDatabaseAfterHookHandler, PluginDatabaseAfterInput, PluginDatabaseBeforeAction,
    PluginDatabaseBeforeHookHandler, PluginDatabaseBeforeInput, PluginDatabaseHook,
    PluginDatabaseHookContext, PluginDatabaseOperation, PluginMigration, PluginMigrationBody,
    PluginMigrationStep,
};
pub use endpoint::PluginEndpoint;
pub use error::PluginErrorCode;
pub use hooks::{
    async_after_hook_handler, async_before_hook_handler, PluginAfterHook, PluginAfterHookAction,
    PluginAfterHookFuture, PluginAfterHookHandler, PluginAsyncAfterHook,
    PluginAsyncAfterHookHandler, PluginAsyncBeforeHook, PluginAsyncBeforeHookHandler,
    PluginBeforeHook, PluginBeforeHookAction, PluginBeforeHookFuture, PluginBeforeHookHandler,
    PluginEndpointHooks, PluginHookMatcher,
};
pub use init::{PluginInitHandler, PluginInitOutput};
pub use password::{
    PluginPasswordValidationInput, PluginPasswordValidationRejection, PluginPasswordValidator,
    PluginPasswordValidatorFuture, PluginPasswordValidatorHandler,
};
pub use rate_limit::PluginRateLimitRule;
pub use schema::PluginSchemaContribution;

use crate::api::{ApiRequest, ApiResponse, AsyncAuthEndpoint, Body};
use crate::context::AuthContext;
use crate::error::RustAuthError;
#[cfg(feature = "oauth")]
use rustauth_oauth::oauth2::SocialOAuthProvider;
use serde_json::Value;
use std::fmt;
use std::sync::Arc;

/// Alias for [`Body`]; prefer [`Body`] or [`ApiRequest`] in new code.
pub type PluginBody = Body;
/// Alias for [`ApiRequest`]; prefer [`ApiRequest`] in new code.
pub type PluginRequest = ApiRequest;
/// Alias for [`ApiResponse`]; prefer [`ApiResponse`] in new code.
pub type PluginResponse = ApiResponse;
pub type PluginMiddlewareFuture<'a> =
    Pin<Box<dyn Future<Output = Result<Option<PluginResponse>, RustAuthError>> + Send + 'a>>;
pub type PluginOnRequest = Arc<
    dyn Fn(&AuthContext, PluginRequest) -> Result<PluginRequestAction, RustAuthError> + Send + Sync,
>;
pub type PluginOnResponse = Arc<
    dyn Fn(&AuthContext, &PluginRequest, PluginResponse) -> Result<PluginResponse, RustAuthError>
        + Send
        + Sync,
>;
pub type PluginOnResponseAsyncFuture<'a> =
    Pin<Box<dyn Future<Output = Result<(), RustAuthError>> + Send + 'a>>;
pub type PluginOnResponseAsync = Arc<
    dyn for<'a> Fn(
            &'a AuthContext,
            &'a PluginRequest,
            &'a PluginResponse,
        ) -> PluginOnResponseAsyncFuture<'a>
        + Send
        + Sync,
>;
pub type PluginMiddlewareHandler = Arc<
    dyn Fn(&AuthContext, &PluginRequest) -> Result<Option<PluginResponse>, RustAuthError>
        + Send
        + Sync,
>;
pub type PluginAsyncMiddlewareHandler = Arc<
    dyn for<'a> Fn(&'a AuthContext, &'a PluginRequest) -> PluginMiddlewareFuture<'a> + Send + Sync,
>;

#[derive(Clone)]
pub struct AuthPlugin {
    pub id: String,
    pub version: Option<String>,
    pub options: Option<Value>,
    pub endpoints: Vec<AsyncAuthEndpoint>,
    pub middlewares: Vec<PluginMiddleware>,
    pub async_middlewares: Vec<PluginAsyncMiddleware>,
    pub on_request: Option<PluginOnRequest>,
    pub on_response: Option<PluginOnResponse>,
    pub on_response_async: Option<PluginOnResponseAsync>,
    pub init: Option<PluginInitHandler>,
    pub schema: Vec<PluginSchemaContribution>,
    pub rate_limit: Vec<PluginRateLimitRule>,
    pub hooks: PluginEndpointHooks,
    pub error_codes: Vec<PluginErrorCode>,
    pub database_hooks: Vec<PluginDatabaseHook>,
    pub migrations: Vec<PluginMigration>,
    #[cfg(feature = "oauth")]
    pub social_providers: Vec<Arc<dyn SocialOAuthProvider>>,
    pub password_validators: Vec<PluginPasswordValidator>,
    pub state: Option<Arc<dyn Any + Send + Sync>>,
}

impl AuthPlugin {
    pub fn new(id: impl Into<String>) -> Self {
        Self {
            id: id.into(),
            version: None,
            options: None,
            endpoints: Vec::new(),
            middlewares: Vec::new(),
            async_middlewares: Vec::new(),
            on_request: None,
            on_response: None,
            on_response_async: None,
            init: None,
            schema: Vec::new(),
            rate_limit: Vec::new(),
            hooks: PluginEndpointHooks::default(),
            error_codes: Vec::new(),
            database_hooks: Vec::new(),
            migrations: Vec::new(),
            #[cfg(feature = "oauth")]
            social_providers: Vec::new(),
            password_validators: Vec::new(),
            state: None,
        }
    }

    pub fn with_version(mut self, version: impl Into<String>) -> Self {
        self.version = Some(version.into());
        self
    }

    pub fn with_options(mut self, options: Value) -> Self {
        self.options = Some(options);
        self
    }

    pub fn with_endpoint(mut self, endpoint: AsyncAuthEndpoint) -> Self {
        self.endpoints.push(endpoint);
        self
    }

    pub fn with_init<F>(mut self, init: F) -> Self
    where
        F: Fn(&AuthContext) -> Result<PluginInitOutput, RustAuthError> + Send + Sync + 'static,
    {
        self.init = Some(Arc::new(init));
        self
    }

    pub fn with_schema(mut self, contribution: PluginSchemaContribution) -> Self {
        self.schema.push(contribution);
        self
    }

    pub fn with_rate_limit(mut self, rule: PluginRateLimitRule) -> Self {
        self.rate_limit.push(rule);
        self
    }

    pub fn with_before_hook<F>(mut self, path: impl Into<String>, hook: F) -> Self
    where
        F: Fn(&AuthContext, PluginRequest) -> Result<PluginBeforeHookAction, RustAuthError>
            + Send
            + Sync
            + 'static,
    {
        self.hooks.before.push(PluginBeforeHook {
            matcher: PluginHookMatcher::path(path),
            handler: Arc::new(hook),
        });
        self
    }

    pub fn with_after_hook<F>(mut self, path: impl Into<String>, hook: F) -> Self
    where
        F: Fn(
                &AuthContext,
                &PluginRequest,
                PluginResponse,
            ) -> Result<PluginAfterHookAction, RustAuthError>
            + Send
            + Sync
            + 'static,
    {
        self.hooks.after.push(PluginAfterHook {
            matcher: PluginHookMatcher::path(path),
            handler: Arc::new(hook),
        });
        self
    }

    pub fn with_async_before_hook<F>(mut self, path: impl Into<String>, hook: F) -> Self
    where
        F: for<'a> Fn(&'a AuthContext, PluginRequest) -> PluginBeforeHookFuture<'a>
            + Send
            + Sync
            + 'static,
    {
        self.hooks.async_before.push(PluginAsyncBeforeHook {
            matcher: PluginHookMatcher::path(path),
            handler: Arc::new(hook),
        });
        self
    }

    pub fn with_async_after_hook<F>(mut self, path: impl Into<String>, hook: F) -> Self
    where
        F: for<'a> Fn(
                &'a AuthContext,
                &'a PluginRequest,
                PluginResponse,
            ) -> PluginAfterHookFuture<'a>
            + Send
            + Sync
            + 'static,
    {
        self.hooks.async_after.push(PluginAsyncAfterHook {
            matcher: PluginHookMatcher::path(path),
            handler: Arc::new(hook),
        });
        self
    }

    /// Registers an async after-hook without manual `Box::pin`.
    pub fn with_async_after_handler<F, Fut>(self, path: impl Into<String>, handler: F) -> Self
    where
        F: for<'a> Fn(AuthContext, &'a PluginRequest, PluginResponse) -> Fut
            + Send
            + Sync
            + Clone
            + 'static,
        for<'a> Fut: Future<Output = Result<PluginAfterHookAction, RustAuthError>> + Send + 'a,
    {
        self.with_async_after_hook(path, hooks::async_after_hook_handler(handler))
    }

    /// Registers an async before-hook without manual `Box::pin`.
    pub fn with_async_before_handler<F, Fut>(self, path: impl Into<String>, handler: F) -> Self
    where
        F: Fn(AuthContext, PluginRequest) -> Fut + Send + Sync + Clone + 'static,
        Fut: Future<Output = Result<PluginBeforeHookAction, RustAuthError>> + Send + 'static,
    {
        self.with_async_before_hook(path, hooks::async_before_hook_handler(handler))
    }

    pub fn with_error_code(mut self, error_code: PluginErrorCode) -> Self {
        self.error_codes.push(error_code);
        self
    }

    pub fn with_database_hook(mut self, hook: PluginDatabaseHook) -> Self {
        self.database_hooks.push(hook);
        self
    }

    pub fn with_migration(mut self, migration: PluginMigration) -> Self {
        self.migrations.push(migration);
        self
    }

    #[cfg(feature = "oauth")]
    pub fn with_social_provider(
        mut self,
        provider: impl Into<Arc<dyn SocialOAuthProvider>>,
    ) -> Self {
        self.social_providers.push(provider.into());
        self
    }

    pub fn with_password_validator<F>(mut self, validator: F) -> Self
    where
        F: for<'a> Fn(
                &'a AuthContext,
                PluginPasswordValidationInput,
            ) -> PluginPasswordValidatorFuture<'a>
            + Send
            + Sync
            + 'static,
    {
        self.password_validators.push(PluginPasswordValidator {
            handler: Arc::new(validator),
        });
        self
    }

    pub fn with_state<T>(mut self, state: T) -> Self
    where
        T: Any + Send + Sync + 'static,
    {
        self.state = Some(Arc::new(state));
        self
    }

    pub fn state<T>(&self) -> Option<Arc<T>>
    where
        T: Any + Send + Sync + 'static,
    {
        self.state
            .as_ref()
            .and_then(|state| Arc::clone(state).downcast::<T>().ok())
    }

    pub fn with_middleware<F>(mut self, path: impl Into<String>, middleware: F) -> Self
    where
        F: Fn(&AuthContext, &PluginRequest) -> Result<Option<PluginResponse>, RustAuthError>
            + Send
            + Sync
            + 'static,
    {
        self.middlewares.push(PluginMiddleware {
            path: path.into(),
            handler: Arc::new(middleware),
        });
        self
    }

    pub fn with_async_middleware<F>(mut self, path: impl Into<String>, middleware: F) -> Self
    where
        F: for<'a> Fn(&'a AuthContext, &'a PluginRequest) -> PluginMiddlewareFuture<'a>
            + Send
            + Sync
            + 'static,
    {
        self.async_middlewares.push(PluginAsyncMiddleware {
            path: path.into(),
            handler: Arc::new(middleware),
        });
        self
    }

    pub fn with_on_request<F>(mut self, hook: F) -> Self
    where
        F: Fn(&AuthContext, PluginRequest) -> Result<PluginRequestAction, RustAuthError>
            + Send
            + Sync
            + 'static,
    {
        self.on_request = Some(Arc::new(hook));
        self
    }

    pub fn with_on_response<F>(mut self, hook: F) -> Self
    where
        F: Fn(
                &AuthContext,
                &PluginRequest,
                PluginResponse,
            ) -> Result<PluginResponse, RustAuthError>
            + Send
            + Sync
            + 'static,
    {
        self.on_response = Some(Arc::new(hook));
        self
    }

    /// Async hook run during async response finalization after session hydration
    /// and before synchronous `on_response` hooks.
    pub fn with_on_response_async<F>(mut self, hook: F) -> Self
    where
        F: for<'a> Fn(
                &'a AuthContext,
                &'a PluginRequest,
                &'a PluginResponse,
            ) -> PluginOnResponseAsyncFuture<'a>
            + Send
            + Sync
            + 'static,
    {
        self.on_response_async = Some(Arc::new(hook));
        self
    }
}

impl fmt::Debug for AuthPlugin {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("AuthPlugin")
            .field("id", &self.id)
            .field("version", &self.version)
            .field("options", &self.options)
            .field("endpoints", &self.endpoints.len())
            .field("middlewares", &self.middlewares)
            .field("async_middlewares", &self.async_middlewares)
            .field("on_request", &self.on_request.as_ref().map(|_| "<hook>"))
            .field("on_response", &self.on_response.as_ref().map(|_| "<hook>"))
            .field(
                "on_response_async",
                &self.on_response_async.as_ref().map(|_| "<hook>"),
            )
            .field("init", &self.init.as_ref().map(|_| "<init>"))
            .field("schema", &self.schema)
            .field("rate_limit", &self.rate_limit)
            .field("hooks", &self.hooks)
            .field("error_codes", &self.error_codes)
            .field("database_hooks", &self.database_hooks)
            .field("migrations", &self.migrations)
            .field("social_providers", &debug_social_providers(self))
            .field("password_validators", &self.password_validators)
            .field("state", &self.state.as_ref().map(|_| "<state>"))
            .finish()
    }
}

#[cfg(feature = "oauth")]
fn debug_social_providers(plugin: &AuthPlugin) -> Vec<&str> {
    plugin
        .social_providers
        .iter()
        .map(|provider| provider.id())
        .collect()
}

#[cfg(not(feature = "oauth"))]
fn debug_social_providers(_plugin: &AuthPlugin) -> Vec<&'static str> {
    Vec::new()
}

#[derive(Clone)]
pub struct PluginMiddleware {
    pub path: String,
    pub handler: PluginMiddlewareHandler,
}

impl fmt::Debug for PluginMiddleware {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("PluginMiddleware")
            .field("path", &self.path)
            .field("handler", &"<middleware>")
            .finish()
    }
}

#[derive(Clone)]
pub struct PluginAsyncMiddleware {
    pub path: String,
    pub handler: PluginAsyncMiddlewareHandler,
}

impl fmt::Debug for PluginAsyncMiddleware {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("PluginAsyncMiddleware")
            .field("path", &self.path)
            .field("handler", &"<async middleware>")
            .finish()
    }
}

pub enum PluginRequestAction {
    Continue(PluginRequest),
    Respond(PluginResponse),
}