Rocket/examples/todo/src/main.rs

94 lines
2.6 KiB
Rust
Raw Normal View History

#![feature(plugin, decl_macro, custom_derive, const_fn)]
2016-10-12 07:38:30 +00:00
#![plugin(rocket_codegen)]
#[macro_use] extern crate rocket;
#[macro_use] extern crate diesel;
2016-10-04 00:56:43 +00:00
#[macro_use] extern crate serde_derive;
extern crate rocket_contrib;
mod static_files;
mod task;
2017-05-26 23:44:53 +00:00
#[cfg(test)] mod tests;
2017-05-26 23:44:53 +00:00
use rocket::Rocket;
2016-11-02 17:49:06 +00:00
use rocket::request::{Form, FlashMessage};
use rocket::response::{Flash, Redirect};
use rocket_contrib::Template;
use rocket_contrib::databases::database;
use diesel::SqliteConnection;
2017-02-03 01:38:36 +00:00
2017-05-26 23:44:53 +00:00
use task::{Task, Todo};
#[database("sqlite_database")]
pub struct DbConn(SqliteConnection);
#[derive(Debug, Serialize)]
struct Context<'a, 'b>{ msg: Option<(&'a str, &'b str)>, tasks: Vec<Task> }
impl<'a, 'b> Context<'a, 'b> {
pub fn err(conn: &DbConn, msg: &'a str) -> Context<'static, 'a> {
2017-02-03 01:38:36 +00:00
Context{msg: Some(("error", msg)), tasks: Task::all(conn)}
}
pub fn raw(conn: &DbConn, msg: Option<(&'a str, &'b str)>) -> Context<'a, 'b> {
2017-02-03 01:38:36 +00:00
Context{msg: msg, tasks: Task::all(conn)}
}
}
#[post("/", data = "<todo_form>")]
fn new(todo_form: Form<Todo>, conn: DbConn) -> Flash<Redirect> {
let todo = todo_form.into_inner();
if todo.description.is_empty() {
Flash::error(Redirect::to("/"), "Description cannot be empty.")
2017-05-26 23:44:53 +00:00
} else if Task::insert(todo, &conn) {
Flash::success(Redirect::to("/"), "Todo successfully added.")
} else {
Flash::error(Redirect::to("/"), "Whoops! The server failed.")
}
}
#[put("/<id>")]
fn toggle(id: i32, conn: DbConn) -> Result<Redirect, Template> {
2017-02-03 01:38:36 +00:00
if Task::toggle_with_id(id, &conn) {
Ok(Redirect::to("/"))
} else {
2017-02-03 01:38:36 +00:00
Err(Template::render("index", &Context::err(&conn, "Couldn't toggle task.")))
}
}
#[delete("/<id>")]
fn delete(id: i32, conn: DbConn) -> Result<Flash<Redirect>, Template> {
2017-02-03 01:38:36 +00:00
if Task::delete_with_id(id, &conn) {
Ok(Flash::success(Redirect::to("/"), "Todo was deleted."))
} else {
2017-02-03 01:38:36 +00:00
Err(Template::render("index", &Context::err(&conn, "Couldn't delete task.")))
}
}
2016-09-04 11:06:28 +00:00
#[get("/")]
fn index(msg: Option<FlashMessage>, conn: DbConn) -> Template {
2016-09-30 04:41:21 +00:00
Template::render("index", &match msg {
2017-02-03 01:38:36 +00:00
Some(ref msg) => Context::raw(&conn, Some((msg.name(), msg.msg()))),
None => Context::raw(&conn, None),
})
}
fn rocket() -> (Rocket, Option<DbConn>) {
2017-05-26 23:44:53 +00:00
let rocket = rocket::ignite()
.attach(DbConn::fairing())
.mount("/", routes![index, static_files::all])
.mount("/todo", routes![new, toggle, delete])
2017-05-26 23:44:53 +00:00
.attach(Template::fairing());
let conn = match cfg!(test) {
true => DbConn::get_one(&rocket),
false => None,
};
2017-05-26 23:44:53 +00:00
(rocket, conn)
}
fn main() {
rocket().0.launch();
}