df2f3d340f
* fix popularity contest * more info in the Debug for Web3Rpc * add frontend_requests and cache_misses to the Balance query * add more to balance and stats flushing and improved test coverage * it compiles * deserializer for Ulid to Uuid I think a wrapper type on Ulid that implements sea_orm::Value is probably better * rename variable to match struct name * add deserializer for Address -> Vec<u8> * sql sum returns a Decimal. need to convert to u64 * assert more * one log and assert more * log more * use a helper to get the user's rpc provider * this should be 2 now that we have a public and authed call * this should be zero. the public has the cache miss * instrument cu calcs * trace the value we took, not the default that replaced it * move usd_per_chain into config * remove some extra logging * use Arc::into_inner to maybe avoid a race * off by 1 * pass paid credits used instead of returning it this lets us use it to write to our user balance cache first. importantly, this keeps us from holding a write lock while writing to mysql * no cache misses expected in this test * actually check the admin * put the balance checks back now that the rest of the test works * archive request is being set incorrectly * wow howd we manage flipping the greater than sign on archive depth * move latest_balance and premium_credits_used to before any stats are emitted * lint * and build undoes the linting. fun i didnt even want to lint them in the first place, so this is fine * missed incrementing total_spent when not incrementing total_spent_paid_credits * use the credits on self * use the credits on self (pt 2) * fix type for 10 cu query * convert the requestmetadata on the other side of the channel * logs * viewing stats is allowed even without a balance * move paid_credits_used to AuthorizationChecks * wip * test_sum_credits_used finally passes * UserBalanceCache::get_or_insert * re-enable rpc_secret_key_cache * move invalidate to a helper function and always call it **after** the db is commited * fix PartialEq and Eq on RpcSecretKey * cargo upgrade
130 lines
3.4 KiB
Rust
130 lines
3.4 KiB
Rust
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
|
|
|
|
use crate::serialization;
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "user")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: u64,
|
|
#[sea_orm(column_type = "Binary(BlobSize::Blob(Some(20)))", unique)]
|
|
#[serde(
|
|
serialize_with = "serialization::vec_as_address",
|
|
deserialize_with = "serialization::address_to_vec"
|
|
)]
|
|
pub address: Vec<u8>,
|
|
pub description: Option<String>,
|
|
pub email: Option<String>,
|
|
pub user_tier_id: u64,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_one = "super::admin::Entity")]
|
|
Admin,
|
|
#[sea_orm(has_many = "super::admin_increase_balance_receipt::Entity")]
|
|
AdminIncreaseBalanceReceipt,
|
|
#[sea_orm(has_one = "super::balance::Entity")]
|
|
Balance,
|
|
#[sea_orm(has_many = "super::increase_on_chain_balance_receipt::Entity")]
|
|
IncreaseOnChainBalanceReceipt,
|
|
#[sea_orm(has_many = "super::login::Entity")]
|
|
Login,
|
|
#[sea_orm(has_many = "super::pending_login::Entity")]
|
|
PendingLogin,
|
|
#[sea_orm(has_one = "super::referee::Entity")]
|
|
Referee,
|
|
#[sea_orm(has_one = "super::referrer::Entity")]
|
|
Referrer,
|
|
#[sea_orm(has_many = "super::rpc_key::Entity")]
|
|
RpcKey,
|
|
#[sea_orm(has_many = "super::secondary_user::Entity")]
|
|
SecondaryUser,
|
|
#[sea_orm(has_many = "super::stripe_increase_balance_receipt::Entity")]
|
|
StripeIncreaseBalanceReceipt,
|
|
#[sea_orm(
|
|
belongs_to = "super::user_tier::Entity",
|
|
from = "Column::UserTierId",
|
|
to = "super::user_tier::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
UserTier,
|
|
}
|
|
|
|
impl Related<super::admin::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Admin.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::admin_increase_balance_receipt::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::AdminIncreaseBalanceReceipt.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::balance::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Balance.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::increase_on_chain_balance_receipt::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::IncreaseOnChainBalanceReceipt.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::login::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Login.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::pending_login::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::PendingLogin.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::referee::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Referee.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::referrer::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Referrer.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::rpc_key::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::RpcKey.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::secondary_user::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::SecondaryUser.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::stripe_increase_balance_receipt::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::StripeIncreaseBalanceReceipt.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::user_tier::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::UserTier.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|