/* Social program for Ramaskrik. Copyright (C) 2019 Harald Eilertsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ use crate::{ db, models, }; use rocket::{get, post}; use rocket::request::{Form, FromForm}; use rocket::response::Redirect; use rocket_contrib::{ json::Json, templates::Template, }; use serde::Serialize; use std::collections::HashMap; use std::error::Error; use std::result::Result; #[get("/", format = "application/json", rank = 1)] pub fn get_films_json(db: db::Connection) -> Json> { Json(db.get_films().unwrap()) } #[get("/", rank = 2)] pub fn list_films(db: db::Connection) -> Result> { #[derive(Serialize)] struct Context { films: Vec, } let ctx = Context { films: db.get_films()? }; Ok(Template::render("film/list", &ctx)) } #[get("/new")] pub fn new_film() -> Result> { let ctx: HashMap = HashMap::new(); Ok(Template::render("film/new", &ctx)) } #[derive(FromForm)] pub struct NewFilmForm { title: String, url: Option, } #[post("/", format = "application/x-www-form-urlencoded", data = "")] pub fn create_film(db: db::Connection, film: Form) -> Result> { db.create_film(&film.title, &film.url)?; Ok(Redirect::to("/films")) }