pub mod request_state;
mod builder;
mod origins;
mod plugins;
mod secrets;
use crate::auth::trusted_origins::{matches_origin_pattern, OriginMatchSettings};
use crate::cookies::{AuthCookie, AuthCookies};
use crate::db::{AuthSchema, DbAdapter, DbSchema};
use crate::env::{env_var, logger::Logger};
use crate::error::RustAuthError;
use crate::options::{
BackgroundTaskFuture, BackgroundTaskRunner, DynamicRateLimitPathRule, HybridRateLimitOptions,
MissingIpPolicy, RateLimitPathRule, RateLimitStorageOption, RateLimitStore, RustAuthOptions,
SecondaryStorage,
};
use crate::plugin::{AuthPlugin, PluginErrorCode};
use crate::rate_limit::GovernorMemoryRateLimitStore;
use crate::session::{DbSessionStore, SessionStore};
use crate::user::DbUserStore;
use crate::verification::{DbVerificationStore, VerificationStore};
use http::Request;
#[cfg(feature = "oauth")]
use rustauth_oauth::oauth2::SocialOAuthProvider;
use std::collections::BTreeMap;
use std::fmt;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
use std::time::Duration as StdDuration;
use time::Duration;
pub use builder::{
create_auth_context, create_auth_context_with_adapter, create_auth_context_with_environment,
create_auth_context_with_environment_and_adapter,
};
pub use secrets::SecretMaterial;
use origins::push_trusted_origin;
pub type ContextTelemetryFuture = Pin<Box<dyn Future<Output = ()> + Send + 'static>>;
pub type ContextTelemetryPublisher =
Arc<dyn Fn(ContextTelemetryEvent) -> ContextTelemetryFuture + Send + Sync>;
#[derive(Clone, Debug, PartialEq)]
pub struct ContextTelemetryEvent {
pub event_type: String,
pub anonymous_id: Option<String>,
pub payload: serde_json::Value,
}
pub(super) fn noop_telemetry_publisher() -> ContextTelemetryPublisher {
Arc::new(|_| Box::pin(async move {}))
}
#[derive(Clone)]
pub struct AuthContext {
pub app_name: String,
pub base_url: String,
pub base_path: String,
pub options: RustAuthOptions,
pub auth_cookies: AuthCookies,
pub session_config: SessionConfig,
pub secret: String,
pub secret_config: SecretMaterial,
pub password: PasswordContext,
pub rate_limit: RateLimitContext,
pub trusted_origins: Vec<String>,
pub disabled_paths: Vec<String>,
pub plugins: Vec<AuthPlugin>,
pub adapter: Option<Arc<dyn DbAdapter>>,
pub secondary_storage: Option<Arc<dyn SecondaryStorage>>,
pub background_tasks: Option<Arc<dyn BackgroundTaskRunner>>,
#[cfg(feature = "oauth")]
pub social_providers: BTreeMap<String, Arc<dyn SocialOAuthProvider>>,
pub db_schema: DbSchema,
pub plugin_error_codes: BTreeMap<String, PluginErrorCode>,
pub plugin_database_hooks: Vec<crate::plugin::PluginDatabaseHook>,
pub plugin_migrations: Vec<crate::plugin::PluginMigration>,
pub telemetry_publisher: ContextTelemetryPublisher,
pub logger: Logger,
}
#[derive(Clone, Default, PartialEq, Eq)]
pub struct AuthEnvironment {
pub rustauth_secret: Option<String>,
pub rustauth_secrets: Option<String>,
pub rustauth_trusted_origins: Option<String>,
}
impl fmt::Debug for AuthEnvironment {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
formatter
.debug_struct("AuthEnvironment")
.field(
"rustauth_secret",
&self.rustauth_secret.as_ref().map(|_| "<redacted>"),
)
.field(
"rustauth_secrets",
&self.rustauth_secrets.as_ref().map(|_| "<redacted>"),
)
.field("rustauth_trusted_origins", &self.rustauth_trusted_origins)
.finish()
}
}
impl AuthEnvironment {
pub fn from_process() -> Self {
Self {
rustauth_secret: env_var("SECRET"),
rustauth_secrets: env_var("SECRETS"),
rustauth_trusted_origins: env_var("TRUSTED_ORIGINS"),
}
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SessionConfig {
pub update_age: Duration,
pub expires_in: Duration,
pub fresh_age: Duration,
pub cookie_refresh_cache: bool,
}
#[derive(Clone)]
pub struct PasswordContext {
pub config: PasswordPolicy,
pub hash: fn(&str) -> Result<String, RustAuthError>,
pub verify: fn(&str, &str) -> Result<bool, RustAuthError>,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PasswordPolicy {
pub min_password_length: usize,
pub max_password_length: usize,
}
#[derive(Clone)]
pub struct RateLimitContext {
pub enabled: bool,
pub window: Duration,
pub max: u64,
pub storage: RateLimitStorageOption,
pub custom_rules: Vec<RateLimitPathRule>,
pub dynamic_rules: Vec<DynamicRateLimitPathRule>,
pub plugin_rules: Vec<crate::plugin::PluginRateLimitRule>,
pub custom_store: Option<Arc<dyn RateLimitStore>>,
pub hybrid: HybridRateLimitOptions,
pub memory_cleanup_interval: Option<StdDuration>,
pub memory_store: Arc<GovernorMemoryRateLimitStore>,
pub missing_ip_policy: MissingIpPolicy,
}
impl AuthContext {
pub fn db_schema(&self) -> &DbSchema {
&self.db_schema
}
pub fn schema(&self) -> AuthSchema<'_> {
AuthSchema::new(&self.db_schema)
}
pub fn adapter(&self) -> Option<Arc<dyn DbAdapter>> {
self.adapter.clone()
}
pub fn require_adapter(&self) -> Result<Arc<dyn DbAdapter>, RustAuthError> {
self.adapter
.clone()
.ok_or_else(|| RustAuthError::InvalidConfig("database adapter is required".to_owned()))
}
pub fn adapter_ref(&self) -> Result<&dyn DbAdapter, RustAuthError> {
self.adapter
.as_deref()
.ok_or_else(|| RustAuthError::InvalidConfig("database adapter is required".to_owned()))
}
pub fn users(&self) -> Result<DbUserStore<'_>, RustAuthError> {
DbUserStore::from_context(self)
}
pub fn sessions(&self) -> Result<SessionStore<'_>, RustAuthError> {
SessionStore::new(self)
}
pub fn verifications(&self) -> Result<VerificationStore<'_>, RustAuthError> {
VerificationStore::new(self)
}
pub fn session_store(&self) -> Result<DbSessionStore<'_>, RustAuthError> {
DbSessionStore::from_context(self)
}
pub fn verification_store(&self) -> Result<DbVerificationStore<'_>, RustAuthError> {
DbVerificationStore::from_context(self)
}
pub fn create_auth_cookie(
&self,
name: &str,
max_age: Option<u64>,
) -> Result<AuthCookie, RustAuthError> {
crate::cookies::create_auth_cookie(&self.options, name, max_age)
}
pub fn secondary_storage(&self) -> Option<Arc<dyn SecondaryStorage>> {
self.secondary_storage.clone()
}
pub fn run_background_task(&self, task: BackgroundTaskFuture) -> bool {
let Some(runner) = &self.background_tasks else {
return false;
};
runner.spawn(task);
true
}
pub async fn publish_telemetry(&self, event: ContextTelemetryEvent) {
(self.telemetry_publisher)(event).await;
}
#[cfg(feature = "oauth")]
pub fn social_provider(&self, id: &str) -> Option<Arc<dyn SocialOAuthProvider>> {
self.social_providers.get(id).cloned()
}
pub fn has_plugin(&self, id: &str) -> bool {
self.plugins.iter().any(|plugin| plugin.id == id)
}
pub fn plugin(&self, id: &str) -> Option<&AuthPlugin> {
self.plugins.iter().find(|plugin| plugin.id == id)
}
pub fn is_trusted_origin(&self, url: &str, settings: Option<OriginMatchSettings>) -> bool {
self.trusted_origins
.iter()
.any(|origin| matches_origin_pattern(url, origin, settings))
}
pub fn trusted_origins_for_request(
&self,
request: Option<&Request<Vec<u8>>>,
) -> Result<Vec<String>, RustAuthError> {
let mut origins = self.trusted_origins.clone();
if let Some(provider) = self.options.trusted_origins.provider() {
for origin in provider.trusted_origins(request)? {
push_trusted_origin(&mut origins, origin);
}
}
Ok(origins)
}
pub fn trusted_providers_for_request(
&self,
request: Option<&Request<Vec<u8>>>,
) -> Result<Vec<String>, RustAuthError> {
let linking = &self.options.account.account_linking;
let mut providers = linking.trusted_providers.clone();
if let Some(provider) = &linking.trusted_providers_provider {
for trusted in provider.trusted_providers()? {
if !providers.iter().any(|existing| existing == &trusted) {
providers.push(trusted);
}
}
}
if let Some(provider) = &linking.trusted_providers_request_provider {
for trusted in provider.trusted_providers_for_request(request)? {
if !providers.iter().any(|existing| existing == &trusted) {
providers.push(trusted);
}
}
}
Ok(providers)
}
pub fn is_trusted_origin_for_request(
&self,
url: &str,
settings: Option<OriginMatchSettings>,
request: Option<&Request<Vec<u8>>>,
) -> Result<bool, RustAuthError> {
Ok(self
.trusted_origins_for_request(request)?
.iter()
.any(|origin| matches_origin_pattern(url, origin, settings)))
}
}