album/src/main.rs

139 lines
4.7 KiB
Rust
Raw Normal View History

#[macro_use] extern crate nickel;
2015-11-21 18:21:44 +03:00
#[macro_use] extern crate log;
extern crate env_logger;
2015-11-21 18:21:44 +03:00
extern crate rustorm;
extern crate rustc_serialize;
2015-11-22 15:01:39 +03:00
extern crate typemap;
extern crate plugin;
extern crate image;
extern crate hyper;
extern crate time;
mod models;
2015-11-22 15:01:39 +03:00
use hyper::header::{Expires, HttpDate};
use image::open as image_open;
use image::{FilterType, ImageFormat};
use models::{Photo, Tag, query_for};
use nickel::{MediaType, Nickel, StaticFilesHandler};
use plugin::{Pluggable};
use rustc_serialize::Encodable;
use rustorm::database::{Database};
use rustorm::query::Query;
2015-11-22 15:01:39 +03:00
use rustorm::table::IsTable;
use std::collections::HashMap;
use time::Duration;
2015-11-21 18:21:44 +03:00
mod env;
use env::dburl;
2015-11-21 18:21:44 +03:00
mod rustormmiddleware;
use rustormmiddleware::{RustormMiddleware, RustormRequestExtensions};
#[derive(Debug, Clone, RustcEncodable)]
struct DetailsData {
photo: Photo,
tags: Vec<Tag>
2015-11-22 15:01:39 +03:00
}
#[derive(Debug, Clone, RustcEncodable)]
struct TagData {
tag: Tag,
photos: Vec<Photo>
}
2015-11-22 15:01:39 +03:00
fn get_scaled_image(photo: Photo, width: u32, height: u32) -> Vec<u8> {
let path = format!("/home/kaj/Bilder/foto/{}", photo.path);
info!("Should open {}", path);
let img = image_open(path).unwrap();
let scaled = img.resize(width, height, FilterType::Nearest);
// TODO Put the icon in some kind of cache!
let mut buf : Vec<u8> = Vec::new();
scaled.save(&mut buf, ImageFormat::JPEG).unwrap();
buf
}
fn main() {
env_logger::init().unwrap();
2015-11-21 18:21:44 +03:00
info!("Initalized logger");
// NOTE pool will need to be mut if we do db writes?
2015-11-22 15:01:39 +03:00
// let pool = ManagedPool::init(&dburl(), 1).unwrap();
2015-11-21 18:21:44 +03:00
info!("Initalized pool");
let mut server = Nickel::new();
2015-11-27 01:20:36 +03:00
server.utilize(StaticFilesHandler::new("static/"));
2015-11-22 15:01:39 +03:00
server.utilize(RustormMiddleware::new(&dburl()));
server.utilize(router! {
2015-11-22 15:01:39 +03:00
get "/" => |req, res| {
2015-11-27 01:20:36 +03:00
let photos: Vec<Photo> = query_for::<Photo>().limit(25)
2015-11-22 15:01:39 +03:00
.collect(req.db_conn()).unwrap();
2015-11-21 18:21:44 +03:00
info!("Got some photos: {:?}", photos);
let mut data = HashMap::new();
2015-11-21 18:21:44 +03:00
data.insert("photos", &photos);
// data.insert("name", "Self".into());
return res.render("templates/index.tpl", &data);
}
2015-11-22 15:01:39 +03:00
get "/details/:id" => |req, res| {
if let Ok(id) = req.param("id").unwrap().parse::<i32>() {
if let Ok(photo) = req.orm_get::<Photo>("id", &id) {
let mut q = Query::select();
q.only_from(&Tag::table());
q.left_join_table("photo_tag", "tag.id", "photo_tag.tag")
.filter_eq("photo_tag.photo", &photo.id);
let tags = q.collect(req.db_conn()).unwrap();
return res.render("templates/details.tpl", &DetailsData {
photo: photo,
tags: tags
});
}
}
}
2015-11-27 02:02:18 +03:00
get "/tag/" => |req, res| {
let tags: Vec<Tag> = query_for::<Tag>().asc("tag")
.collect(req.db_conn()).unwrap();
let mut data = HashMap::new();
data.insert("tags", &tags);
return res.render("templates/tags.tpl", &data);
}
get "/tag/:tag" => |req, res| {
let slug = req.param("tag").unwrap();
if let Ok(tag) = req.orm_get::<Tag>("slug", &slug) {
let mut q = Query::select();
q.only_from(&Photo::table());
q.left_join_table("photo_tag", "photo.id", "photo_tag.photo")
.filter_eq("photo_tag.tag", &tag.id);
let photos : Vec<Photo> = q.collect(req.db_conn()).unwrap();
return res.render("templates/tag.tpl", &TagData {
tag: tag,
photos: photos
});
}
2015-11-22 15:01:39 +03:00
}
get "/icon/:id" => |req, mut res| {
if let Ok(id) = req.param("id").unwrap().parse::<i32>() {
if let Ok(photo) = req.orm_get::<Photo>("id", &id) {
let buf = get_scaled_image(photo, 200, 180);
res.set(MediaType::Jpeg);
res.set(Expires(HttpDate(time::now() + Duration::days(14))));
return res.send(buf);
}
}
2015-11-22 15:01:39 +03:00
}
get "/view/:id" => |req, mut res| {
if let Ok(id) = req.param("id").unwrap().parse::<i32>() {
if let Ok(photo) = req.orm_get::<Photo>("id", &id) {
let buf = get_scaled_image(photo, 800, 600);
res.set(MediaType::Jpeg);
res.set(Expires(HttpDate(time::now() + Duration::days(14))));
return res.send(buf);
}
}
2015-11-22 15:01:39 +03:00
}
});
server.listen("127.0.0.1:6767");
}