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

118 lines
3.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,
2022-07-23 23:40:25 +02:00
pub active_version: Option<i32>,
2021-12-19 00:16:46 +01:00
}
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-07-23 23:40:25 +02:00
pub fn find_bot_with_version_by_name(
bot_name: &str,
conn: &PgConnection,
) -> QueryResult<(Bot, BotVersion)> {
bots::table
.inner_join(bot_versions::table.on(bots::active_version.eq(bot_versions::id.nullable())))
.filter(bots::name.eq(bot_name))
.first(conn)
}
pub fn all_active_bots_with_version(conn: &PgConnection) -> QueryResult<Vec<(Bot, BotVersion)>> {
bots::table
.inner_join(bot_versions::table.on(bots::active_version.eq(bot_versions::id.nullable())))
.get_results(conn)
}
2022-01-01 11:26:49 +01:00
pub fn find_all_bots(conn: &PgConnection) -> QueryResult<Vec<Bot>> {
bots::table.get_results(conn)
}
2022-07-23 23:40:25 +02:00
/// Find all bots that have an associated active version.
/// These are the bots that can be run.
pub fn find_active_bots(conn: &PgConnection) -> QueryResult<Vec<Bot>> {
bots::table
.filter(bots::active_version.is_not_null())
.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"]
2022-07-07 18:57:46 +02:00
pub struct NewBotVersion<'a> {
pub bot_id: Option<i32>,
2022-07-07 18:57:46 +02:00
pub code_bundle_path: Option<&'a str>,
pub container_digest: Option<&'a str>,
2021-12-19 00:16:46 +01:00
}
#[derive(Queryable, Serialize, Deserialize, Clone, 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
}
2022-07-07 18:57:46 +02:00
pub fn create_bot_version(
new_bot_version: &NewBotVersion,
2021-12-19 00:16:46 +01:00
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)
2022-07-07 18:57:46 +02:00
.values(new_bot_version)
2021-12-19 00:16:46 +01:00
.get_result(conn)
}
2021-12-31 11:24:25 +01:00
2022-07-23 23:40:25 +02:00
pub fn set_active_version(
bot_id: i32,
version_id: Option<i32>,
conn: &PgConnection,
) -> QueryResult<()> {
diesel::update(bots::table.filter(bots::id.eq(bot_id)))
.set(bots::active_version.eq(version_id))
.execute(conn)?;
Ok(())
}
pub fn find_bot_version(version_id: i32, conn: &PgConnection) -> QueryResult<BotVersion> {
2022-07-05 20:34:20 +02:00
bot_versions::table
2022-07-23 23:40:25 +02:00
.filter(bot_versions::id.eq(version_id))
.first(conn)
2021-12-31 11:24:25 +01:00
}
2022-01-01 16:32:55 +01:00
2022-07-23 23:40:25 +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))
2022-07-23 23:40:25 +02:00
.get_results(conn)
2022-01-01 16:32:55 +01:00
}