stoptime-rs/src/models/time_entry.rs

60 lines
1.7 KiB
Rust

use chrono::NaiveDateTime;
use diesel::prelude::*;
use juniper_codegen::{GraphQLInputObject, GraphQLObject};
use crate::models::Task;
use crate::schema::time_entries;
use crate::DbConn;
/// The time entry model.
///
/// This model represents an amount of time that is registered for a certain task.
#[derive(AsChangeset, Associations, Debug, GraphQLObject, Identifiable, Queryable)]
#[belongs_to(Task)]
#[table_name = "time_entries"]
pub struct TimeEntry {
/// The unique identification number
pub id: i32,
/// Flag whether to bill or not
pub bill: bool,
/// An additional comment
pub comment: String,
/// The finish/end time of the entry
pub end: NaiveDateTime,
/// The start time of the entry
pub start: NaiveDateTime,
/// The ID of the task the entry is registered for
pub task_id: i32,
/// The time of creation
pub created_at: NaiveDateTime,
/// The time of last update
pub updated_at: NaiveDateTime,
}
impl TimeEntry {
/// Returns the task the entry is registered for.
pub fn customer(&self, conn: &DbConn) -> QueryResult<Task> {
use diesel::associations::HasTable;
Task::table().find(self.task_id).first(&**conn)
}
}
/// The new time entry model.
///
/// This model represents a new registered amount of time that can be inserted into the database.
#[derive(Debug, GraphQLInputObject, Insertable)]
#[table_name = "time_entries"]
pub struct NewTimeEntry {
/// Flag whether to bill or not
pub bill: bool,
/// An additional comment
pub comment: String,
/// The finish/end time of the entry
pub end: NaiveDateTime,
/// The start time of the entry
pub start: NaiveDateTime,
/// The ID of the task the entry is registered for
pub task_id: i32,
}