diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-02-26 23:07:13 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-02-27 14:51:32 +0100 |
commit | 6ef6a872fe3bbe389e92145b39fd88d864f6a790 (patch) | |
tree | 6db40ec6f0cb91b9262aabaa3c4134a680a8803c /planetwars-server/src | |
parent | 29bd21e489cdda2aaf807c66198f112f8ac0f7d5 (diff) | |
download | planetwars.dev-6ef6a872fe3bbe389e92145b39fd88d864f6a790.tar.xz planetwars.dev-6ef6a872fe3bbe389e92145b39fd88d864f6a790.zip |
make bot owner nullable
Diffstat (limited to 'planetwars-server/src')
-rw-r--r-- | planetwars-server/src/db/bots.rs | 4 | ||||
-rw-r--r-- | planetwars-server/src/routes/bots.rs | 4 | ||||
-rw-r--r-- | planetwars-server/src/schema.rs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/planetwars-server/src/db/bots.rs b/planetwars-server/src/db/bots.rs index 970dcf9..f7d8373 100644 --- a/planetwars-server/src/db/bots.rs +++ b/planetwars-server/src/db/bots.rs @@ -7,14 +7,14 @@ use chrono; #[derive(Insertable)] #[table_name = "bots"] pub struct NewBot<'a> { - pub owner_id: i32, + pub owner_id: Option<i32>, pub name: &'a str, } #[derive(Queryable, Debug, PartialEq, Serialize, Deserialize)] pub struct Bot { pub id: i32, - pub owner_id: i32, + pub owner_id: Option<i32>, pub name: String, } diff --git a/planetwars-server/src/routes/bots.rs b/planetwars-server/src/routes/bots.rs index 5f5d8f5..0edfaa9 100644 --- a/planetwars-server/src/routes/bots.rs +++ b/planetwars-server/src/routes/bots.rs @@ -24,7 +24,7 @@ pub async fn create_bot( params: Json<BotParams>, ) -> (StatusCode, Json<Bot>) { let bot_params = bots::NewBot { - owner_id: user.id, + owner_id: Some(user.id), name: ¶ms.name, }; let bot = bots::create_bot(&bot_params, &conn).unwrap(); @@ -71,7 +71,7 @@ pub async fn upload_code_multipart( let bot = bots::find_bot(bot_id, &conn).map_err(|_| StatusCode::NOT_FOUND)?; - if user.id != bot.owner_id { + if Some(user.id) != bot.owner_id { return Err(StatusCode::FORBIDDEN); } diff --git a/planetwars-server/src/schema.rs b/planetwars-server/src/schema.rs index 5e74e85..e67ef3a 100644 --- a/planetwars-server/src/schema.rs +++ b/planetwars-server/src/schema.rs @@ -7,7 +7,7 @@ table! { bots (id) { id -> Int4, - owner_id -> Int4, + owner_id -> Nullable<Int4>, name -> Text, } } |