planetwars.dev/planetwars-server/src/db/bots.rs

83 lines
2.2 KiB
Rust
Raw Normal View History

2021-12-19 00:16:46 +01:00
use diesel::prelude::*;
use serde::{Deserialize, Serialize};
2022-07-05 20:34:20 +02:00
use crate::schema::{bot_versions, bots};
2021-12-19 00:16:46 +01:00
use chrono;
#[derive(Insertable)]
#[table_name = "bots"]
pub struct NewBot<'a> {
2022-02-26 23:07:13 +01:00
pub owner_id: Option<i32>,
2021-12-19 00:16:46 +01:00
pub name: &'a str,
}
#[derive(Queryable, Debug, Clone, PartialEq, Serialize, Deserialize)]
2021-12-19 00:16:46 +01:00
pub struct Bot {
pub id: i32,
2022-02-26 23:07:13 +01:00
pub owner_id: Option<i32>,
2021-12-19 00:16:46 +01:00
pub name: String,
}
pub fn create_bot(new_bot: &NewBot, conn: &PgConnection) -> QueryResult<Bot> {
diesel::insert_into(bots::table)
.values(new_bot)
.get_result(conn)
}
pub fn find_bot(id: i32, conn: &PgConnection) -> QueryResult<Bot> {
bots::table.find(id).first(conn)
}
2021-12-30 23:40:37 +01:00
pub fn find_bots_by_owner(owner_id: i32, conn: &PgConnection) -> QueryResult<Vec<Bot>> {
bots::table
.filter(bots::owner_id.eq(owner_id))
.get_results(conn)
}
2022-02-27 22:57:06 +01:00
pub fn find_bot_by_name(name: &str, conn: &PgConnection) -> QueryResult<Bot> {
bots::table.filter(bots::name.eq(name)).first(conn)
}
2022-01-01 11:26:49 +01:00
pub fn find_all_bots(conn: &PgConnection) -> QueryResult<Vec<Bot>> {
// TODO: filter out bots that cannot be run (have no valid code bundle associated with them)
bots::table.get_results(conn)
}
2021-12-19 00:16:46 +01:00
#[derive(Insertable)]
2022-07-05 20:34:20 +02:00
#[table_name = "bot_versions"]
2021-12-19 00:16:46 +01:00
pub struct NewCodeBundle<'a> {
pub bot_id: Option<i32>,
2022-07-05 20:34:20 +02:00
pub code_bundle_path: &'a str,
2021-12-19 00:16:46 +01:00
}
#[derive(Queryable, Serialize, Deserialize, Debug)]
2022-07-06 22:41:27 +02:00
pub struct BotVersion {
2021-12-19 00:16:46 +01:00
pub id: i32,
pub bot_id: Option<i32>,
2022-07-05 20:34:20 +02:00
pub code_bundle_path: Option<String>,
2021-12-19 00:16:46 +01:00
pub created_at: chrono::NaiveDateTime,
2022-07-05 20:34:20 +02:00
pub container_digest: Option<String>,
2021-12-19 00:16:46 +01:00
}
pub fn create_code_bundle(
new_code_bundle: &NewCodeBundle,
conn: &PgConnection,
2022-07-06 22:41:27 +02:00
) -> QueryResult<BotVersion> {
2022-07-05 20:34:20 +02:00
diesel::insert_into(bot_versions::table)
2021-12-19 00:16:46 +01:00
.values(new_code_bundle)
.get_result(conn)
}
2021-12-31 11:24:25 +01:00
2022-07-06 22:41:27 +02:00
pub fn find_bot_versions(bot_id: i32, conn: &PgConnection) -> QueryResult<Vec<BotVersion>> {
2022-07-05 20:34:20 +02:00
bot_versions::table
.filter(bot_versions::bot_id.eq(bot_id))
2021-12-31 11:24:25 +01:00
.get_results(conn)
}
2022-01-01 16:32:55 +01:00
2022-07-06 22:41:27 +02:00
pub fn active_bot_version(bot_id: i32, conn: &PgConnection) -> QueryResult<BotVersion> {
2022-07-05 20:34:20 +02:00
bot_versions::table
.filter(bot_versions::bot_id.eq(bot_id))
.order(bot_versions::created_at.desc())
2022-01-01 16:32:55 +01:00
.first(conn)
}