2022-11-01 21:54:39 +03:00
|
|
|
//! SeaORM Entity. Generated by sea-orm-codegen 0.10.1
|
2022-08-03 03:31:47 +03:00
|
|
|
|
2022-12-12 07:39:54 +03:00
|
|
|
use super::sea_orm_active_enums::LogLevel;
|
2022-08-03 03:31:47 +03:00
|
|
|
use sea_orm::entity::prelude::*;
|
2022-08-05 22:47:50 +03:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-08-03 03:31:47 +03:00
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
|
|
|
|
#[sea_orm(table_name = "rpc_key")]
|
2022-08-03 03:31:47 +03:00
|
|
|
pub struct Model {
|
2022-08-06 03:07:12 +03:00
|
|
|
#[sea_orm(primary_key)]
|
2022-08-13 00:00:26 +03:00
|
|
|
pub id: u64,
|
|
|
|
pub user_id: u64,
|
2022-08-04 02:17:02 +03:00
|
|
|
#[sea_orm(unique)]
|
2022-11-01 21:54:39 +03:00
|
|
|
pub secret_key: Uuid,
|
2022-08-05 22:47:50 +03:00
|
|
|
pub description: Option<String>,
|
|
|
|
pub private_txs: bool,
|
|
|
|
pub active: bool,
|
2022-12-12 07:39:54 +03:00
|
|
|
pub log_level: LogLevel,
|
|
|
|
pub log_revert_chance: f64,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_ips: Option<String>,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_origins: Option<String>,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_referers: Option<String>,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_user_agents: Option<String>,
|
2022-12-12 07:39:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub enum RpcKeyLogLevels {
|
|
|
|
None,
|
|
|
|
Basic,
|
|
|
|
Detailed,
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {
|
|
|
|
#[sea_orm(
|
|
|
|
belongs_to = "super::user::Entity",
|
2022-08-06 03:07:12 +03:00
|
|
|
from = "Column::UserId",
|
|
|
|
to = "super::user::Column::Id",
|
2022-08-03 03:31:47 +03:00
|
|
|
on_update = "NoAction",
|
|
|
|
on_delete = "NoAction"
|
|
|
|
)]
|
|
|
|
User,
|
2022-11-01 21:54:39 +03:00
|
|
|
#[sea_orm(has_many = "super::revert_log::Entity")]
|
|
|
|
RevertLog,
|
2022-10-10 07:15:07 +03:00
|
|
|
#[sea_orm(has_many = "super::rpc_accounting::Entity")]
|
|
|
|
RpcAccounting,
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Related<super::user::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::User.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
impl Related<super::revert_log::Entity> for Entity {
|
2022-09-24 03:14:35 +03:00
|
|
|
fn to() -> RelationDef {
|
2022-11-01 21:54:39 +03:00
|
|
|
Relation::RevertLog.def()
|
2022-09-24 03:14:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-10 07:15:07 +03:00
|
|
|
impl Related<super::rpc_accounting::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::RpcAccounting.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 03:31:47 +03:00
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|