From 2278ecd2584050c28e62f0f5fd8967b81d64cc5b Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Thu, 13 Oct 2022 17:45:11 +0200 Subject: implement ListBotMatches, allow querying matches by bot/opponent pair --- planetwars-server/src/db/match_queries.rs | 86 +++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 planetwars-server/src/db/match_queries.rs (limited to 'planetwars-server/src/db/match_queries.rs') diff --git a/planetwars-server/src/db/match_queries.rs b/planetwars-server/src/db/match_queries.rs new file mode 100644 index 0000000..2e89706 --- /dev/null +++ b/planetwars-server/src/db/match_queries.rs @@ -0,0 +1,86 @@ +use super::matches::BotMatchOutcome; +use crate::schema::matches; +use chrono::NaiveDateTime; +use diesel::pg::Pg; +use diesel::query_builder::{AstPass, Query, QueryFragment, QueryId}; +use diesel::sql_types::*; +use diesel::{PgConnection, QueryResult, RunQueryDsl}; + +pub struct ListBotMatches { + pub bot_id: i32, + pub opponent_id: Option, + pub outcome: Option, + + pub before: Option, + pub after: Option, + pub amount: i64, +} + +impl QueryFragment for ListBotMatches { + fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> { + out.unsafe_to_cache_prepared(); + + out.push_sql("SELECT matches.* FROM matches"); + out.push_sql(" JOIN ("); + out.push_sql(concat!( + "SELECT match_id, player_id, bot_version_id, bot_id ", + "FROM match_players ", + "JOIN bot_versions ON match_players.bot_version_id = bot_versions.id ", + "WHERE bot_id = " + )); + out.push_bind_param::(&self.bot_id)?; + out.push_sql(") main_player ON matches.id = main_player.match_id"); + + if let Some(opponent_id) = self.opponent_id.as_ref() { + out.push_sql(" JOIN ("); + out.push_sql(concat!( + "SELECT match_id, player_id, bot_version_id, bot_id ", + "FROM match_players ", + "JOIN bot_versions ON match_players.bot_version_id = bot_versions.id ", + "WHERE bot_id = " + )); + out.push_bind_param::(opponent_id)?; + out.push_sql(") other_player ON matches.id = other_player.match_id"); + } + + out.push_sql(" WHERE matches.state = 'finished' AND matches.is_public = true"); + if let Some(outcome) = self.outcome.as_ref() { + match outcome { + BotMatchOutcome::Win => { + out.push_sql(" AND matches.winner = main_player.player_id"); + } + BotMatchOutcome::Loss => { + out.push_sql(" AND matches.winner <> main_player.player_id"); + } + BotMatchOutcome::Tie => { + out.push_sql(" AND matches.winner IS NULL"); + } + } + } + if let Some(before) = self.before.as_ref() { + out.push_sql(" AND matches.created_at < "); + out.push_bind_param::(before)?; + out.push_sql(" ORDER BY matches.created_at DESC"); + } else if let Some(after) = self.after.as_ref() { + out.push_sql(" AND matches.created_at > "); + out.push_bind_param::(after)?; + out.push_sql(" ORDER BY matches.created_at ASC"); + } + out.push_sql(" LIMIT "); + out.push_bind_param::(&self.amount)?; + + Ok(()) + } +} + +impl Query for ListBotMatches { + type SqlType = matches::SqlType; +} + +impl QueryId for ListBotMatches { + type QueryId = (); + + const HAS_STATIC_QUERY_ID: bool = false; +} + +impl RunQueryDsl for ListBotMatches {} -- cgit v1.2.3