2025-03-15 11:03:35 -04:00
|
|
|
#[allow(dead_code)]
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct UserToken {
|
|
|
|
|
pub uuid: String,
|
|
|
|
|
pub token: String,
|
|
|
|
|
pub refresh_token: String,
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-01 19:38:03 -04:00
|
|
|
pub struct UserInfo {
|
|
|
|
|
pub payload: libfj::robocraft::TokenPayload,
|
|
|
|
|
pub extra: ExtraUserInfo,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub enum ExtraUserInfo {
|
|
|
|
|
Steam {
|
|
|
|
|
id: u64,
|
|
|
|
|
},
|
2025-05-11 21:18:45 -04:00
|
|
|
Username {
|
|
|
|
|
password: String,
|
|
|
|
|
},
|
|
|
|
|
Email {
|
2025-04-01 19:38:03 -04:00
|
|
|
password: String,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-12 20:56:24 -04:00
|
|
|
pub enum UserId {
|
|
|
|
|
SteamId(u64),
|
|
|
|
|
Email(String),
|
|
|
|
|
Username(String),
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-01 19:38:03 -04:00
|
|
|
pub struct UserLoginInfo {
|
|
|
|
|
pub response: libfj::robocraft::AuthenticationResponseInfo,
|
|
|
|
|
pub is_new: bool,
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-12 20:56:24 -04:00
|
|
|
pub struct RegistrationInfo {
|
|
|
|
|
pub display_name: String,
|
|
|
|
|
pub password: String,
|
|
|
|
|
pub email: Option<String>,
|
|
|
|
|
pub steam_id: Option<u64>,
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-07 20:23:22 -04:00
|
|
|
#[async_trait::async_trait]
|
2025-03-15 11:03:35 -04:00
|
|
|
pub trait UserProvider<C> {
|
2025-05-07 20:23:22 -04:00
|
|
|
async fn authenticate(&self, user: UserToken, ext: std::collections::HashMap<std::any::TypeId, Box<dyn std::any::Any + Send + Sync + 'static>>) -> Result<Box<dyn User<C> + Send + Sync>, String>;
|
2025-03-15 11:03:35 -04:00
|
|
|
}
|
|
|
|
|
|
2025-05-07 20:23:22 -04:00
|
|
|
#[async_trait::async_trait]
|
2025-04-01 19:38:03 -04:00
|
|
|
pub trait UserAuthenticator {
|
2025-05-07 20:23:22 -04:00
|
|
|
async fn login(&self, info: UserInfo) -> Result<UserLoginInfo, String>;
|
2025-05-12 20:56:24 -04:00
|
|
|
async fn user_exists(&self, user: UserId) -> Result<bool, String>;
|
|
|
|
|
async fn register(&self, info: RegistrationInfo) -> Result<u32, String>;
|
2025-04-01 19:38:03 -04:00
|
|
|
}
|
|
|
|
|
|
2025-05-07 20:23:22 -04:00
|
|
|
#[async_trait::async_trait]
|
2025-03-15 11:03:35 -04:00
|
|
|
pub trait User<C> {
|
2025-04-14 21:17:41 -04:00
|
|
|
fn ext(&self, ty: std::any::TypeId) -> Option<&'_ (dyn std::any::Any + Send + Sync + 'static)>;
|
2025-03-15 11:03:35 -04:00
|
|
|
fn token(&self) -> &'_ super::UserToken;
|
|
|
|
|
fn is_mod(&self) -> bool;
|
|
|
|
|
fn is_admin(&self) -> bool;
|
|
|
|
|
fn is_dev(&self) -> bool;
|
2025-05-07 20:23:22 -04:00
|
|
|
async fn unlocked_parts(&self) -> Vec<u32>;
|
|
|
|
|
async fn selected_garage(&self) -> (String, u32);
|
2025-05-10 13:19:35 -04:00
|
|
|
async fn select_garage(&self, slot: i32) -> Result<(), i16>;
|
|
|
|
|
async fn all_slots(&self) -> UserSlots<C>;
|
2025-05-07 20:23:22 -04:00
|
|
|
async fn slot_by_id(&self, id: i32) -> Result<UserSlotData<C>, i16>;
|
|
|
|
|
async fn save_slot(&self, vehicle: VehicleData) -> Result<(), i16>;
|
2025-05-10 13:19:35 -04:00
|
|
|
async fn save_slot_order(&self, slots: Vec<i32>) -> Result<(), i16>;
|
|
|
|
|
async fn new_slot(&self, reset_slot: Option<i32>) -> Result<NewSlotData<C>, i16>;
|
2025-05-11 12:09:23 -04:00
|
|
|
async fn upgrade_slot(&self, increments: i32) -> Result<polariton::operation::Typed<C>, i16>;
|
2025-03-15 17:21:18 -04:00
|
|
|
fn signup_date(&self) -> i64;
|
2025-05-07 20:23:22 -04:00
|
|
|
async fn singleplayer_robots(&self) -> Result<polariton::operation::Typed<C>, i16>;
|
2025-03-15 11:03:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct UserSlots<C> {
|
|
|
|
|
pub slot_info: polariton::operation::Typed<C>,
|
|
|
|
|
pub slot_order: polariton::operation::Typed<C>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct UserSlotData<C> {
|
|
|
|
|
pub data: polariton::operation::Typed<C>,
|
|
|
|
|
pub colour_data: polariton::operation::Typed<C>,
|
|
|
|
|
pub cube_count: polariton::operation::Typed<C>,
|
|
|
|
|
pub weapon_order: polariton::operation::Typed<C>,
|
|
|
|
|
pub movement_categories: polariton::operation::Typed<C>,
|
|
|
|
|
pub control_type: polariton::operation::Typed<C>,
|
|
|
|
|
pub control_options: polariton::operation::Typed<C>,
|
|
|
|
|
pub mastery_level: polariton::operation::Typed<C>,
|
2025-03-18 16:47:11 -04:00
|
|
|
pub robot_rank: polariton::operation::Typed<C>,
|
|
|
|
|
pub cpu: polariton::operation::Typed<C>,
|
|
|
|
|
pub cosmetic_cpu: polariton::operation::Typed<C>,
|
2025-03-30 16:22:25 -04:00
|
|
|
pub uuid: polariton::operation::Typed<C>,
|
2025-03-15 11:03:35 -04:00
|
|
|
}
|
|
|
|
|
|
2025-05-10 13:19:35 -04:00
|
|
|
pub struct NewSlotData<C> {
|
|
|
|
|
pub name: polariton::operation::Typed<C>,
|
|
|
|
|
pub uuid_0: polariton::operation::Typed<C>,
|
|
|
|
|
pub uuid_1: polariton::operation::Typed<C>,
|
|
|
|
|
pub slot: polariton::operation::Typed<C>,
|
|
|
|
|
pub bay_cpu: polariton::operation::Typed<C>,
|
|
|
|
|
pub mastery_level: polariton::operation::Typed<C>,
|
2025-05-17 23:06:07 -04:00
|
|
|
pub slot_i: i32,
|
2025-05-10 13:19:35 -04:00
|
|
|
}
|
|
|
|
|
|
2025-03-15 11:03:35 -04:00
|
|
|
pub struct VehicleData {
|
2025-05-18 16:55:12 -04:00
|
|
|
pub name: Option<String>,
|
2025-05-07 20:23:22 -04:00
|
|
|
pub slot: i32,
|
2025-03-15 11:03:35 -04:00
|
|
|
pub robot_data: Vec<u8>,
|
|
|
|
|
pub colour_data: Vec<u8>,
|
|
|
|
|
pub weapon_order: Vec<i32>,
|
2025-05-18 16:55:12 -04:00
|
|
|
pub crf_id: Option<i32>,
|
2025-03-15 11:03:35 -04:00
|
|
|
}
|