2015-11-20 01:43:04 +03:00
|
|
|
#[macro_use] extern crate nickel;
|
2015-11-21 18:21:44 +03:00
|
|
|
#[macro_use] extern crate log;
|
2015-11-20 01:43:04 +03:00
|
|
|
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;
|
2015-11-20 01:43:04 +03:00
|
|
|
|
2015-11-23 08:48:09 +03:00
|
|
|
mod models;
|
2015-11-22 15:01:39 +03:00
|
|
|
use hyper::header::{Expires, HttpDate};
|
2015-11-23 08:48:09 +03:00
|
|
|
use image::open as image_open;
|
2015-11-29 20:53:09 +03:00
|
|
|
use image::{FilterType, ImageFormat, GenericImage};
|
2015-11-30 00:38:40 +03:00
|
|
|
use models::{Photo, Tag, Person, Place, query_for};
|
2015-11-27 15:05:43 +03:00
|
|
|
use nickel::{MediaType, Nickel, StaticFilesHandler};
|
|
|
|
use plugin::{Pluggable};
|
2015-11-23 08:48:09 +03:00
|
|
|
use rustc_serialize::Encodable;
|
2015-12-07 01:00:05 +03:00
|
|
|
use std::path::PathBuf;
|
2015-11-23 08:48:09 +03:00
|
|
|
use time::Duration;
|
2015-11-21 18:21:44 +03:00
|
|
|
|
2015-11-23 08:48:09 +03:00
|
|
|
mod env;
|
2015-12-07 01:00:05 +03:00
|
|
|
use env::{dburl, env_or, photos_dir};
|
2015-11-21 18:21:44 +03:00
|
|
|
|
2015-11-27 15:05:43 +03:00
|
|
|
mod rustormmiddleware;
|
|
|
|
use rustormmiddleware::{RustormMiddleware, RustormRequestExtensions};
|
2015-11-23 08:48:09 +03:00
|
|
|
|
2015-11-30 22:31:23 +03:00
|
|
|
mod requestloggermiddleware;
|
|
|
|
use requestloggermiddleware::RequestLoggerMiddleware;
|
|
|
|
|
2015-12-07 00:29:05 +03:00
|
|
|
struct PhotosDir {
|
|
|
|
basedir: PathBuf
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PhotosDir {
|
2015-12-07 01:00:05 +03:00
|
|
|
fn new(basedir: PathBuf) -> PhotosDir {
|
2015-12-07 00:29:05 +03:00
|
|
|
PhotosDir {
|
2015-12-07 01:00:05 +03:00
|
|
|
basedir: basedir
|
2015-11-29 20:34:54 +03:00
|
|
|
}
|
2015-12-07 00:29:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get_scaled_image(&self, photo: Photo, width: u32, height: u32)
|
|
|
|
-> Vec<u8> {
|
|
|
|
let path = self.basedir.join(photo.path);
|
|
|
|
info!("Should open {:?}", path);
|
|
|
|
let img = image_open(path).unwrap();
|
|
|
|
let img =
|
|
|
|
if width < img.width() || height < img.height() {
|
|
|
|
img.resize(width, height, FilterType::Nearest)
|
|
|
|
} else {
|
|
|
|
img
|
|
|
|
};
|
|
|
|
let img = match photo.rotation {
|
|
|
|
_x @ 0...44 => img,
|
|
|
|
_x @ 45...134 => img.rotate90(),
|
|
|
|
_x @ 135...224 => img.rotate180(),
|
|
|
|
_x @ 225...314 => img.rotate270(),
|
|
|
|
_x @ 315...360 => img,
|
|
|
|
x => {
|
|
|
|
warn!("Should rotate photo {} deg, which is unsupported", x);
|
|
|
|
img
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// TODO Put the icon in some kind of cache!
|
|
|
|
let mut buf : Vec<u8> = Vec::new();
|
|
|
|
img.save(&mut buf, ImageFormat::JPEG).unwrap();
|
|
|
|
buf
|
|
|
|
}
|
2015-11-22 15:01:39 +03:00
|
|
|
}
|
2015-11-20 01:43:04 +03:00
|
|
|
|
2015-12-06 18:33:25 +03:00
|
|
|
macro_rules! render {
|
|
|
|
($res:expr, $template:expr, { $($param:ident : $ptype:ty = $value:expr),* })
|
|
|
|
=>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#[derive(Debug, Clone, RustcEncodable)]
|
|
|
|
struct ParamData {
|
|
|
|
$(
|
|
|
|
$param: $ptype,
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
$res.render($template, &ParamData {
|
|
|
|
$(
|
|
|
|
$param: $value,
|
|
|
|
)*
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 01:43:04 +03:00
|
|
|
fn main() {
|
|
|
|
env_logger::init().unwrap();
|
2015-11-21 18:21:44 +03:00
|
|
|
info!("Initalized logger");
|
|
|
|
|
2015-12-07 01:00:05 +03:00
|
|
|
let photos = PhotosDir::new(photos_dir());
|
2015-11-20 01:43:04 +03:00
|
|
|
let mut server = Nickel::new();
|
2015-11-30 22:31:23 +03:00
|
|
|
server.utilize(RequestLoggerMiddleware);
|
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()));
|
2015-11-20 01:43:04 +03:00
|
|
|
server.utilize(router! {
|
2015-11-22 15:01:39 +03:00
|
|
|
get "/" => |req, res| {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/index.tpl", {
|
|
|
|
photos: Vec<Photo> = query_for::<Photo>()
|
|
|
|
.filter_gte("grade", &4_i16)
|
|
|
|
.limit(24)
|
|
|
|
.collect(req.db_conn()).unwrap()
|
|
|
|
});
|
2015-11-20 01:43:04 +03:00
|
|
|
}
|
2015-11-22 15:01:39 +03:00
|
|
|
get "/details/:id" => |req, res| {
|
2015-11-23 08:48:09 +03:00
|
|
|
if let Ok(id) = req.param("id").unwrap().parse::<i32>() {
|
2015-11-27 00:47:39 +03:00
|
|
|
if let Ok(photo) = req.orm_get::<Photo>("id", &id) {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/details.tpl", {
|
|
|
|
people: Vec<Person> =
|
|
|
|
req.orm_get_related(&photo, "photo_person").unwrap(),
|
|
|
|
places: Vec<Place> =
|
|
|
|
req.orm_get_related(&photo, "photo_place").unwrap(),
|
|
|
|
tags: Vec<Tag> =
|
|
|
|
req.orm_get_related(&photo, "photo_tag").unwrap(),
|
|
|
|
photo: Photo = photo
|
2015-11-27 00:47:39 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-27 02:02:18 +03:00
|
|
|
get "/tag/" => |req, res| {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/tags.tpl", {
|
|
|
|
tags: Vec<Tag> = query_for::<Tag>().asc("tag")
|
|
|
|
.collect(req.db_conn()).unwrap()
|
|
|
|
});
|
2015-11-27 02:02:18 +03:00
|
|
|
}
|
2015-11-27 00:47:39 +03:00
|
|
|
get "/tag/:tag" => |req, res| {
|
|
|
|
let slug = req.param("tag").unwrap();
|
|
|
|
if let Ok(tag) = req.orm_get::<Tag>("slug", &slug) {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/tag.tpl", {
|
|
|
|
photos: Vec<Photo> =
|
|
|
|
req.orm_get_related(&tag, "photo_tag").unwrap(),
|
|
|
|
tag: Tag = tag
|
2015-11-28 11:53:12 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
get "/person/" => |req, res| {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/people.tpl", {
|
|
|
|
people: Vec<Person> = query_for::<Person>().asc("name")
|
|
|
|
.collect(req.db_conn()).unwrap()
|
|
|
|
});
|
2015-11-28 11:53:12 +03:00
|
|
|
}
|
|
|
|
get "/person/:slug" => |req, res| {
|
|
|
|
let slug = req.param("slug").unwrap();
|
|
|
|
if let Ok(person) = req.orm_get::<Person>("slug", &slug) {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/person.tpl", {
|
|
|
|
photos: Vec<Photo> =
|
|
|
|
req.orm_get_related(&person, "photo_person").unwrap(),
|
|
|
|
person: Person = person
|
2015-11-30 00:38:40 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
get "/place/" => |req, res| {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/places.tpl", {
|
|
|
|
places: Vec<Place> = query_for::<Place>().asc("place")
|
|
|
|
.collect(req.db_conn()).unwrap()
|
|
|
|
});
|
2015-11-30 00:38:40 +03:00
|
|
|
}
|
|
|
|
get "/place/:slug" => |req, res| {
|
|
|
|
let slug = req.param("slug").unwrap();
|
|
|
|
if let Ok(place) = req.orm_get::<Place>("slug", &slug) {
|
2015-12-06 18:33:25 +03:00
|
|
|
return render!(res, "templates/place.tpl", {
|
|
|
|
photos: Vec<Photo> =
|
|
|
|
req.orm_get_related(&place, "photo_place").unwrap(),
|
|
|
|
place: Place = place
|
2015-11-23 08:48:09 +03:00
|
|
|
});
|
|
|
|
}
|
2015-11-22 15:01:39 +03:00
|
|
|
}
|
2015-12-06 16:42:03 +03:00
|
|
|
get "/img/:id/:size" => |req, mut res| {
|
2015-11-23 08:48:09 +03:00
|
|
|
if let Ok(id) = req.param("id").unwrap().parse::<i32>() {
|
2015-11-27 00:47:39 +03:00
|
|
|
if let Ok(photo) = req.orm_get::<Photo>("id", &id) {
|
2015-12-06 16:42:03 +03:00
|
|
|
if let Some(size) = match req.param("size").unwrap() {
|
|
|
|
"s" => Some(200),
|
|
|
|
"m" => Some(800),
|
|
|
|
"l" => Some(1200),
|
|
|
|
_ => None
|
|
|
|
} {
|
2015-12-07 00:29:05 +03:00
|
|
|
let buf = photos.get_scaled_image(photo, size, size);
|
2015-12-06 16:42:03 +03:00
|
|
|
res.set(MediaType::Jpeg);
|
|
|
|
res.set(Expires(HttpDate(time::now() + Duration::days(14))));
|
|
|
|
return res.send(buf);
|
|
|
|
}
|
2015-11-27 00:47:39 +03:00
|
|
|
}
|
2015-11-23 08:48:09 +03:00
|
|
|
}
|
2015-11-22 15:01:39 +03:00
|
|
|
}
|
2015-11-20 01:43:04 +03:00
|
|
|
});
|
|
|
|
|
2015-12-07 00:29:05 +03:00
|
|
|
server.listen(&*env_or("RPHOTOS_LISTEN", "127.0.0.1:6767"));
|
2015-11-20 01:43:04 +03:00
|
|
|
}
|