blob: e655e9dc3858e75d1a6d95bc339d3d5b14259311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
use crate::models::{NewProduct, Product};
use crate::schema::product::dsl::*;
use crate::TPool;
use actix_identity::Identity;
use actix_web::{web, HttpResponse, Responder};
use bcrypt::{hash, verify, DEFAULT_COST};
use diesel::prelude::*;
use log::{error, info};
use serde::Deserialize;
pub async fn new_product(
pool: web::Data<TPool>,
item: web::Json<NewProduct>,
) -> impl Responder {
let conn = pool.get().unwrap();
diesel::insert_into(product)
.values(item.into_inner())
.execute(&conn)
.expect("Coundn't connect to DB");
HttpResponse::Ok().body("Inserted successfully!")
}
pub async fn product_details(
pool: web::Data<TPool>,
product_id: web::Path<i32>,
) -> impl Responder {
let conn = pool.get().unwrap();
let product_id = product_id.into_inner();
info!("Fetching product details for {}", product_id);
let selected_product = product
.filter(id.eq(&product_id))
.limit(1)
.first::<Product>(&conn);
match selected_product {
Ok(m) => {
info!("Found product: {}", product_id);
HttpResponse::Ok().json(m)
}
Err(_) => {
error!("Product not found: {}", product_id);
HttpResponse::NotFound().finish()
}
}
}
|