Add tic tac toe drawing

This commit is contained in:
Joscha 2024-03-31 13:38:04 +02:00
parent 28c44b526c
commit 9c4ee1a350
3 changed files with 82 additions and 1 deletions

View file

@ -14,7 +14,7 @@ use tokio::{net::TcpListener, sync::mpsc};
use crate::drawer::{
CalendarDrawing, CellsDrawing, ChatMessageDrawing, Command, EggDrawing, ImageDrawing,
PhotoDrawing, TextDrawing,
PhotoDrawing, TextDrawing, TicTacToeDrawing,
};
use self::{r#static::get_static_file, statuscode::status_code};
@ -33,6 +33,7 @@ pub async fn run(tx: mpsc::Sender<Command>, addr: String) -> anyhow::Result<()>
.route("/image", post(post_image).fallback(get_static_file))
.route("/photo", post(post_photo).fallback(get_static_file))
.route("/text", post(post_text))
.route("/tictactoe", post(post_tictactoe))
.fallback(get(get_static_file))
.layer(DefaultBodyLimit::max(32 * 1024 * 1024)) // 32 MiB
.with_state(Server { tx });
@ -184,3 +185,9 @@ async fn post_text(server: State<Server>, request: Form<PostTextForm>) {
.send(Command::draw(TextDrawing(request.0.text)))
.await;
}
// /tictactoe
async fn post_tictactoe(server: State<Server>) {
let _ = server.tx.send(Command::draw(TicTacToeDrawing)).await;
}