2016-08-02 02:07:36 +00:00
|
|
|
#![feature(plugin, custom_derive, custom_attribute)]
|
2016-09-09 03:38:58 +00:00
|
|
|
#![plugin(rocket_codegen, serde_macros, diesel_codegen)]
|
2016-07-16 04:09:08 +00:00
|
|
|
|
|
|
|
extern crate rocket;
|
2016-08-02 02:07:36 +00:00
|
|
|
#[macro_use] extern crate diesel;
|
|
|
|
#[macro_use] extern crate lazy_static;
|
2016-09-22 11:12:07 +00:00
|
|
|
#[macro_use] extern crate rocket_contrib;
|
2016-08-02 02:07:36 +00:00
|
|
|
extern crate serde_json;
|
|
|
|
|
|
|
|
mod static_files;
|
|
|
|
mod task;
|
2016-07-16 04:09:08 +00:00
|
|
|
|
|
|
|
use rocket::Rocket;
|
2016-09-12 01:57:04 +00:00
|
|
|
use rocket::response::{Flash, Redirect};
|
2016-09-22 11:12:07 +00:00
|
|
|
use rocket_contrib::Template;
|
2016-08-02 02:07:36 +00:00
|
|
|
use task::Task;
|
|
|
|
|
2016-09-22 11:12:07 +00:00
|
|
|
#[derive(Debug, Serialize)]
|
|
|
|
struct Context<'a, 'b>{msg: Option<(&'a str, &'b str)>, tasks: Vec<Task>}
|
2016-07-16 04:09:08 +00:00
|
|
|
|
2016-09-22 11:12:07 +00:00
|
|
|
impl<'a, 'b> Context<'a, 'b> {
|
|
|
|
pub fn err(msg: &'a str) -> Context<'static, 'a> {
|
|
|
|
Context{msg: Some(("error", msg)), tasks: Task::all()}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn raw(msg: Option<(&'a str, &'b str)>) -> Context<'a, 'b> {
|
|
|
|
Context{msg: msg, tasks: Task::all()}
|
|
|
|
}
|
2016-07-16 04:09:08 +00:00
|
|
|
}
|
|
|
|
|
2016-09-04 11:06:28 +00:00
|
|
|
#[post("/", form = "<todo>")]
|
2016-09-22 11:12:07 +00:00
|
|
|
fn new(todo: Task) -> Result<Flash<Redirect>, Template> {
|
2016-08-02 02:07:36 +00:00
|
|
|
if todo.description.is_empty() {
|
2016-09-30 04:41:21 +00:00
|
|
|
Err(Template::render("index", &Context::err("Description cannot be empty.")))
|
2016-08-02 02:07:36 +00:00
|
|
|
} else if todo.insert() {
|
2016-09-12 01:57:04 +00:00
|
|
|
Ok(Flash::success(Redirect::to("/"), "Todo successfully added."))
|
2016-08-02 02:07:36 +00:00
|
|
|
} else {
|
2016-09-30 04:41:21 +00:00
|
|
|
Err(Template::render("index", &Context::err("Whoops! The server failed.")))
|
2016-08-02 02:07:36 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-16 04:09:08 +00:00
|
|
|
|
2016-08-02 02:07:36 +00:00
|
|
|
// Should likely do something to simulate PUT.
|
2016-09-25 09:26:15 +00:00
|
|
|
#[put("/<id>")]
|
2016-09-22 11:12:07 +00:00
|
|
|
fn toggle(id: i32) -> Result<Redirect, Template> {
|
2016-08-02 02:07:36 +00:00
|
|
|
if Task::toggle_with_id(id) {
|
2016-09-12 01:57:04 +00:00
|
|
|
Ok(Redirect::to("/"))
|
2016-08-02 02:07:36 +00:00
|
|
|
} else {
|
2016-09-30 04:41:21 +00:00
|
|
|
Err(Template::render("index", &Context::err("Couldn't toggle task.")))
|
2016-08-02 02:07:36 +00:00
|
|
|
}
|
2016-07-16 04:09:08 +00:00
|
|
|
}
|
|
|
|
|
2016-08-02 02:07:36 +00:00
|
|
|
// Should likely do something to simulate DELETE.
|
2016-09-25 09:26:15 +00:00
|
|
|
#[delete("/<id>")]
|
2016-09-22 11:12:07 +00:00
|
|
|
fn delete(id: i32) -> Result<Flash<Redirect>, Template> {
|
2016-08-02 02:07:36 +00:00
|
|
|
if Task::delete_with_id(id) {
|
2016-09-12 01:57:04 +00:00
|
|
|
Ok(Flash::success(Redirect::to("/"), "Todo was deleted."))
|
2016-08-02 02:07:36 +00:00
|
|
|
} else {
|
2016-09-30 04:41:21 +00:00
|
|
|
Err(Template::render("index", &Context::err("Couldn't delete task.")))
|
2016-08-02 02:07:36 +00:00
|
|
|
}
|
2016-07-16 04:09:08 +00:00
|
|
|
}
|
|
|
|
|
2016-09-04 11:06:28 +00:00
|
|
|
#[get("/")]
|
2016-09-22 11:12:07 +00:00
|
|
|
fn index(msg: Option<Flash<()>>) -> Template {
|
2016-09-30 04:41:21 +00:00
|
|
|
Template::render("index", &match msg {
|
2016-09-22 11:12:07 +00:00
|
|
|
Some(ref msg) => Context::raw(Some((msg.name(), msg.msg()))),
|
|
|
|
None => Context::raw(None),
|
|
|
|
})
|
2016-07-16 04:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-08-02 02:07:36 +00:00
|
|
|
let mut rocket = Rocket::new("127.0.0.1", 8000);
|
2016-09-12 01:57:04 +00:00
|
|
|
rocket.mount("/", routes![index, static_files::all])
|
2016-09-22 11:12:07 +00:00
|
|
|
.mount("/todo/", routes![new, toggle, delete]);
|
2016-07-16 04:09:08 +00:00
|
|
|
rocket.launch();
|
|
|
|
}
|