use chrono::{DateTime, Utc};
use mas_data_model::{
BrowserSession, CompatSession, Device, Session, User, UserEmailAuthentication,
UserRecoverySession,
};
use serde::{Deserialize, Serialize};
use ulid::Ulid;
use super::InsertableJob;
use crate::{Page, Pagination};
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct VerifyEmailJob {
user_email_id: Ulid,
language: Option<String>,
}
impl VerifyEmailJob {
#[must_use]
pub fn user_email_id(&self) -> Ulid {
self.user_email_id
}
}
impl InsertableJob for VerifyEmailJob {
const QUEUE_NAME: &'static str = "verify-email";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct SendEmailAuthenticationCodeJob {
user_email_authentication_id: Ulid,
language: String,
}
impl SendEmailAuthenticationCodeJob {
#[must_use]
pub fn new(user_email_authentication: &UserEmailAuthentication, language: String) -> Self {
Self {
user_email_authentication_id: user_email_authentication.id,
language,
}
}
#[must_use]
pub fn language(&self) -> &str {
&self.language
}
#[must_use]
pub fn user_email_authentication_id(&self) -> Ulid {
self.user_email_authentication_id
}
}
impl InsertableJob for SendEmailAuthenticationCodeJob {
const QUEUE_NAME: &'static str = "send-email-authentication-code";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ProvisionUserJob {
user_id: Ulid,
set_display_name: Option<String>,
}
impl ProvisionUserJob {
#[must_use]
pub fn new(user: &User) -> Self {
Self {
user_id: user.id,
set_display_name: None,
}
}
#[doc(hidden)]
#[must_use]
pub fn new_for_id(user_id: Ulid) -> Self {
Self {
user_id,
set_display_name: None,
}
}
#[must_use]
pub fn set_display_name(mut self, display_name: String) -> Self {
self.set_display_name = Some(display_name);
self
}
#[must_use]
pub fn display_name_to_set(&self) -> Option<&str> {
self.set_display_name.as_deref()
}
#[must_use]
pub fn user_id(&self) -> Ulid {
self.user_id
}
}
impl InsertableJob for ProvisionUserJob {
const QUEUE_NAME: &'static str = "provision-user";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ProvisionDeviceJob {
user_id: Ulid,
device_id: String,
}
impl ProvisionDeviceJob {
#[must_use]
pub fn user_id(&self) -> Ulid {
self.user_id
}
#[must_use]
pub fn device_id(&self) -> &str {
&self.device_id
}
}
impl InsertableJob for ProvisionDeviceJob {
const QUEUE_NAME: &'static str = "provision-device";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct DeleteDeviceJob {
user_id: Ulid,
device_id: String,
}
impl DeleteDeviceJob {
#[must_use]
pub fn new(user: &User, device: &Device) -> Self {
Self {
user_id: user.id,
device_id: device.as_str().to_owned(),
}
}
#[must_use]
pub fn user_id(&self) -> Ulid {
self.user_id
}
#[must_use]
pub fn device_id(&self) -> &str {
&self.device_id
}
}
impl InsertableJob for DeleteDeviceJob {
const QUEUE_NAME: &'static str = "delete-device";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct SyncDevicesJob {
user_id: Ulid,
}
impl SyncDevicesJob {
#[must_use]
pub fn new(user: &User) -> Self {
Self { user_id: user.id }
}
#[must_use]
pub fn new_for_id(user_id: Ulid) -> Self {
Self { user_id }
}
#[must_use]
pub fn user_id(&self) -> Ulid {
self.user_id
}
}
impl InsertableJob for SyncDevicesJob {
const QUEUE_NAME: &'static str = "sync-devices";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct DeactivateUserJob {
user_id: Ulid,
hs_erase: bool,
}
impl DeactivateUserJob {
#[must_use]
pub fn new(user: &User, hs_erase: bool) -> Self {
Self {
user_id: user.id,
hs_erase,
}
}
#[must_use]
pub fn user_id(&self) -> Ulid {
self.user_id
}
#[must_use]
pub fn hs_erase(&self) -> bool {
self.hs_erase
}
}
impl InsertableJob for DeactivateUserJob {
const QUEUE_NAME: &'static str = "deactivate-user";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ReactivateUserJob {
user_id: Ulid,
}
impl ReactivateUserJob {
#[must_use]
pub fn new(user: &User) -> Self {
Self { user_id: user.id }
}
#[must_use]
pub fn user_id(&self) -> Ulid {
self.user_id
}
}
impl InsertableJob for ReactivateUserJob {
const QUEUE_NAME: &'static str = "reactivate-user";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct SendAccountRecoveryEmailsJob {
user_recovery_session_id: Ulid,
}
impl SendAccountRecoveryEmailsJob {
#[must_use]
pub fn new(user_recovery_session: &UserRecoverySession) -> Self {
Self {
user_recovery_session_id: user_recovery_session.id,
}
}
#[must_use]
pub fn user_recovery_session_id(&self) -> Ulid {
self.user_recovery_session_id
}
}
impl InsertableJob for SendAccountRecoveryEmailsJob {
const QUEUE_NAME: &'static str = "send-account-recovery-email";
}
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct CleanupExpiredTokensJob;
impl InsertableJob for CleanupExpiredTokensJob {
const QUEUE_NAME: &'static str = "cleanup-expired-tokens";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ExpireInactiveSessionsJob;
impl InsertableJob for ExpireInactiveSessionsJob {
const QUEUE_NAME: &'static str = "expire-inactive-sessions";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ExpireInactiveOAuthSessionsJob {
threshold: DateTime<Utc>,
after: Option<Ulid>,
}
impl ExpireInactiveOAuthSessionsJob {
#[must_use]
pub fn new(threshold: DateTime<Utc>) -> Self {
Self {
threshold,
after: None,
}
}
#[must_use]
pub fn threshold(&self) -> DateTime<Utc> {
self.threshold
}
#[must_use]
pub fn pagination(&self, batch_size: usize) -> Pagination {
let pagination = Pagination::first(batch_size);
if let Some(after) = self.after {
pagination.after(after)
} else {
pagination
}
}
#[must_use]
pub fn next(&self, page: &Page<Session>) -> Option<Self> {
if !page.has_next_page {
return None;
}
let last_edge = page.edges.last()?;
Some(Self {
threshold: self.threshold,
after: Some(last_edge.id),
})
}
}
impl InsertableJob for ExpireInactiveOAuthSessionsJob {
const QUEUE_NAME: &'static str = "expire-inactive-oauth-sessions";
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ExpireInactiveCompatSessionsJob {
threshold: DateTime<Utc>,
after: Option<Ulid>,
}
impl ExpireInactiveCompatSessionsJob {
#[must_use]
pub fn new(threshold: DateTime<Utc>) -> Self {
Self {
threshold,
after: None,
}
}
#[must_use]
pub fn threshold(&self) -> DateTime<Utc> {
self.threshold
}
#[must_use]
pub fn pagination(&self, batch_size: usize) -> Pagination {
let pagination = Pagination::first(batch_size);
if let Some(after) = self.after {
pagination.after(after)
} else {
pagination
}
}
#[must_use]
pub fn next(&self, page: &Page<CompatSession>) -> Option<Self> {
if !page.has_next_page {
return None;
}
let last_edge = page.edges.last()?;
Some(Self {
threshold: self.threshold,
after: Some(last_edge.id),
})
}
}
impl InsertableJob for ExpireInactiveCompatSessionsJob {
const QUEUE_NAME: &'static str = "expire-inactive-compat-sessions";
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ExpireInactiveUserSessionsJob {
threshold: DateTime<Utc>,
after: Option<Ulid>,
}
impl ExpireInactiveUserSessionsJob {
#[must_use]
pub fn new(threshold: DateTime<Utc>) -> Self {
Self {
threshold,
after: None,
}
}
#[must_use]
pub fn threshold(&self) -> DateTime<Utc> {
self.threshold
}
#[must_use]
pub fn pagination(&self, batch_size: usize) -> Pagination {
let pagination = Pagination::first(batch_size);
if let Some(after) = self.after {
pagination.after(after)
} else {
pagination
}
}
#[must_use]
pub fn next(&self, page: &Page<BrowserSession>) -> Option<Self> {
if !page.has_next_page {
return None;
}
let last_edge = page.edges.last()?;
Some(Self {
threshold: self.threshold,
after: Some(last_edge.id),
})
}
}
impl InsertableJob for ExpireInactiveUserSessionsJob {
const QUEUE_NAME: &'static str = "expire-inactive-user-sessions";
}