web3-proxy/entities/src/rpc_key.rs

67 lines
1.8 KiB
Rust
Raw Normal View History

2022-12-14 05:13:23 +03:00
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.5
2022-08-03 03:31:47 +03:00
2022-12-12 07:39:54 +03:00
use super::sea_orm_active_enums::LogLevel;
2022-12-14 05:13:23 +03:00
use crate::serialization;
2022-08-03 03:31:47 +03:00
use sea_orm::entity::prelude::*;
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 {
#[sea_orm(primary_key)]
pub id: u64,
pub user_id: u64,
2022-08-04 02:17:02 +03:00
#[sea_orm(unique)]
2022-12-14 05:13:23 +03:00
#[serde(serialize_with = "serialization::uuid_as_ulid")]
2022-11-01 21:54:39 +03:00
pub secret_key: Uuid,
pub description: Option<String>,
pub private_txs: bool,
pub active: bool,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_ips: Option<String>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_origins: Option<String>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_referers: Option<String>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_user_agents: Option<String>,
2022-12-14 05:13:23 +03:00
pub log_revert_chance: f64,
pub log_level: LogLevel,
2022-08-03 03:31:47 +03:00
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
2022-12-14 05:13:23 +03:00
#[sea_orm(has_many = "super::revert_log::Entity")]
RevertLog,
#[sea_orm(has_many = "super::rpc_accounting::Entity")]
RpcAccounting,
2022-08-03 03:31:47 +03:00
#[sea_orm(
belongs_to = "super::user::Entity",
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
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-12-14 05:13:23 +03:00
impl Related<super::user::Entity> for Entity {
fn to() -> RelationDef {
Relation::User.def()
}
}
2022-08-03 03:31:47 +03:00
impl ActiveModelBehavior for ActiveModel {}