mirror of https://github.com/rwf2/Rocket.git
67 lines
1.9 KiB
Rust
67 lines
1.9 KiB
Rust
use diesel::{self, result::QueryResult, prelude::*};
|
|
|
|
mod schema {
|
|
table! {
|
|
tasks {
|
|
id -> Nullable<Integer>,
|
|
description -> Text,
|
|
completed -> Bool,
|
|
}
|
|
}
|
|
}
|
|
|
|
use self::schema::tasks;
|
|
use self::schema::tasks::dsl::{tasks as all_tasks, completed as task_completed};
|
|
|
|
use crate::DbConn;
|
|
|
|
#[derive(serde::Serialize, Queryable, Insertable, Debug, Clone)]
|
|
#[table_name="tasks"]
|
|
pub struct Task {
|
|
pub id: Option<i32>,
|
|
pub description: String,
|
|
pub completed: bool
|
|
}
|
|
|
|
#[derive(Debug, FromForm)]
|
|
pub struct Todo {
|
|
pub description: String,
|
|
}
|
|
|
|
impl Task {
|
|
pub async fn all(conn: &DbConn) -> QueryResult<Vec<Task>> {
|
|
conn.run(|c| {
|
|
all_tasks.order(tasks::id.desc()).load::<Task>(c)
|
|
}).await
|
|
}
|
|
|
|
/// Returns the number of affected rows: 1.
|
|
pub async fn insert(todo: Todo, conn: &DbConn) -> QueryResult<usize> {
|
|
conn.run(|c| {
|
|
let t = Task { id: None, description: todo.description, completed: false };
|
|
diesel::insert_into(tasks::table).values(&t).execute(c)
|
|
}).await
|
|
}
|
|
|
|
/// Returns the number of affected rows: 1.
|
|
pub async fn toggle_with_id(id: i32, conn: &DbConn) -> QueryResult<usize> {
|
|
conn.run(move |c| {
|
|
let task = all_tasks.find(id).get_result::<Task>(c)?;
|
|
let new_status = !task.completed;
|
|
let updated_task = diesel::update(all_tasks.find(id));
|
|
updated_task.set(task_completed.eq(new_status)).execute(c)
|
|
}).await
|
|
}
|
|
|
|
/// Returns the number of affected rows: 1.
|
|
pub async fn delete_with_id(id: i32, conn: &DbConn) -> QueryResult<usize> {
|
|
conn.run(move |c| diesel::delete(all_tasks.find(id)).execute(c)).await
|
|
}
|
|
|
|
/// Returns the number of affected rows.
|
|
#[cfg(test)]
|
|
pub async fn delete_all(conn: &DbConn) -> QueryResult<usize> {
|
|
conn.run(|c| diesel::delete(all_tasks).execute(c)).await
|
|
}
|
|
}
|