48 lines
1.2 KiB
Rust
48 lines
1.2 KiB
Rust
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(
|
|
Clone, Debug, PartialEq, Eq, EnumIter, DeriveActiveEnum, DeriveDisplay, Serialize, Deserialize,
|
|
)]
|
|
#[sea_orm(
|
|
rs_type = "String",
|
|
db_type = "Enum",
|
|
enum_name = "downloader_category"
|
|
)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum DownloaderCategory {
|
|
#[sea_orm(string_value = "qbittorrent")]
|
|
QBittorrent,
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "downloaders")]
|
|
pub struct Model {
|
|
pub created_at: DateTime,
|
|
pub updated_at: DateTime,
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub category: DownloaderCategory,
|
|
pub endpoint: String,
|
|
pub password: String,
|
|
pub username: String,
|
|
pub subscriber_id: i32,
|
|
pub save_path: String,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(
|
|
belongs_to = "super::subscribers::Entity",
|
|
from = "Column::SubscriberId",
|
|
to = "super::subscribers::Column::Id"
|
|
)]
|
|
Subscriber,
|
|
}
|
|
|
|
impl Related<super::subscribers::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Subscriber.def()
|
|
}
|
|
}
|