You've already forked AstralRinth
forked from didirus/AstralRinth
* Initial Anrok integration * Query cache, fmt, clippy * Fmt * Use payment intent function in edit_subscription * Attach Anrok client, use payments in index_billing * Integrate Anrok with refunds * Bug fixes * More bugfixes * Fix resubscriptions * Medal promotion bugfixes * Use stripe metadata constants everywhere * Pre-fill values in products_tax_identifiers * Cleanup billing route module * Cleanup * Email notification for tax charge * Don't charge tax on users which haven't been notified of tax change * Fix taxnotification.amount templates * Update .env.docker-compose * Update .env.local * Clippy * Fmt * Query cache * Periodically update tax amount on upcoming charges * Fix queries * Skip indexing tax amount on charges if no charges to process * chore: query cache, clippy, fmt * Fix a lot of things * Remove test code * chore: query cache, clippy, fmt * Fix money formatting * Fix conflicts * Extra documentation, handle tax association properly * Track loss in tax drift * chore: query cache, clippy, fmt * Add subscription.id variable * chore: query cache, clippy, fmt * chore: query cache, clippy, fmt
69 lines
2.0 KiB
Rust
69 lines
2.0 KiB
Rust
use thiserror::Error;
|
|
|
|
pub mod affiliate_code_item;
|
|
pub mod categories;
|
|
pub mod charge_item;
|
|
pub mod collection_item;
|
|
pub mod flow_item;
|
|
pub mod friend_item;
|
|
pub mod ids;
|
|
pub mod image_item;
|
|
pub mod legacy_loader_fields;
|
|
pub mod loader_fields;
|
|
pub mod notification_item;
|
|
pub mod notifications_deliveries_item;
|
|
pub mod notifications_template_item;
|
|
pub mod notifications_type_item;
|
|
pub mod oauth_client_authorization_item;
|
|
pub mod oauth_client_item;
|
|
pub mod oauth_token_item;
|
|
pub mod organization_item;
|
|
pub mod pat_item;
|
|
pub mod payout_item;
|
|
pub mod payouts_values_notifications;
|
|
pub mod product_item;
|
|
pub mod products_tax_identifier_item;
|
|
pub mod project_item;
|
|
pub mod report_item;
|
|
pub mod session_item;
|
|
pub mod shared_instance_item;
|
|
pub mod team_item;
|
|
pub mod thread_item;
|
|
pub mod user_item;
|
|
pub mod user_subscription_item;
|
|
pub mod users_compliance;
|
|
pub mod users_notifications_preferences_item;
|
|
pub mod users_redeemals;
|
|
pub mod version_item;
|
|
|
|
pub use affiliate_code_item::DBAffiliateCode;
|
|
pub use collection_item::DBCollection;
|
|
pub use ids::*;
|
|
pub use image_item::DBImage;
|
|
pub use oauth_client_item::DBOAuthClient;
|
|
pub use organization_item::DBOrganization;
|
|
pub use project_item::DBProject;
|
|
pub use team_item::DBTeam;
|
|
pub use team_item::DBTeamMember;
|
|
pub use thread_item::{DBThread, DBThreadMessage};
|
|
pub use user_item::DBUser;
|
|
pub use version_item::DBVersion;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum DatabaseError {
|
|
#[error("Error while interacting with the database: {0}")]
|
|
Database(#[from] sqlx::Error),
|
|
#[error("Error while trying to generate random ID")]
|
|
RandomId,
|
|
#[error("Error while interacting with the cache: {0}")]
|
|
CacheError(#[from] redis::RedisError),
|
|
#[error("Redis Pool Error: {0}")]
|
|
RedisPool(#[from] deadpool_redis::PoolError),
|
|
#[error("Error while serializing with the cache: {0}")]
|
|
SerdeCacheError(#[from] serde_json::Error),
|
|
#[error("Schema error: {0}")]
|
|
SchemaError(String),
|
|
#[error("Timeout when waiting for cache subscriber")]
|
|
CacheTimeout,
|
|
}
|