mfashby.net

Website mfashby.net
git clone git://code.mfashby.net:/mfashby.net
Log | Files | Refs | Submodules | README

commit 9be5acc275711d0a6a717ac5564a86185ec1d613
parent 30927637f2ae8af9224eb6daeca25793a0675bca
Author: Martin Ashby <martin@ashbysoft.com>
Date:   Thu, 29 Dec 2022 23:32:46 +0000

comments api appears functional...

Diffstat:
Acomments/.env | 1+
Mcomments/src/main.rs | 8++++++--
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/comments/.env b/comments/.env @@ -0,0 +1 @@ +DATABASE_URL=postgres:/// diff --git a/comments/src/main.rs b/comments/src/main.rs @@ -135,16 +135,20 @@ struct PostComment { capcha_answer: String, } +struct CapchaAnswer { + answer:String +} + async fn post_comments( State(ctx): State<Ctx>, Form(post_comment): Form<PostComment>) -> Result<Redirect,(StatusCode,String)> { let capcha_id: Uuid = post_comment.capcha_id.parse() .map_err(|_| {(StatusCode::BAD_REQUEST, "Invalid capcha_id".to_string())})?; - let ans: String = sqlx::query_as!("select answer from capchas where id = $1", capcha_id) + let ans: CapchaAnswer = sqlx::query_as!(CapchaAnswer, "select answer from capchas where id = $1", capcha_id) .fetch_one(&ctx.pool) .await .map_err(internal_error)?; - if post_comment.capcha_answer != ans { + if post_comment.capcha_answer != ans.answer { return Err((StatusCode::BAD_REQUEST, "Capcha was wrong!".to_string())); } sqlx::query!("insert into comments(url,author,comment) values($1, $2, $3)", post_comment.url, post_comment.author, post_comment.comment)