#![feature(proc_macro_hygiene, decl_macro)] #![recursion_limit="512"] use std::fs::read_to_string; use std::sync::Mutex; #[macro_use] extern crate rocket; use rocket::{State, response::content}; use typed_html::{html, text, dom::DOMTree}; use diesel::{Connection, pg::PgConnection, prelude::*}; use libticker::{ config::{Config, CalendarOptions}, schema::{self, events::dsl::events}, model::{Calendar, Event}, ics::{Object, Timestamp, GetValue}, }; fn fix_url(s: &str) -> std::borrow::Cow { if s.starts_with("http:") || s.starts_with("https:") { s.into() } else { format!("http://{}", s).into() } } #[get("/")] fn index(db: State>) -> content::Html { let db = db.lock().unwrap(); let es = events .order_by(schema::events::dtstart.asc()) .then_order_by(schema::events::dtend.desc()) .load::(&*db) .unwrap(); let doc: DOMTree = html!( "Ticker"

"Ticker"

{ es.iter().map(|e| html!(
{ match &e.url { None => html!(

{ text!("{}", &e.summary) }

), Some(url) => html!(

{ text!("{}", &e.summary) }

), } }

{ text!("{}", &e.dtstart) }

{ e.location.as_ref().map(|location| html!(

{ text!("{}", location) }

)) }
)) } ); content::Html(doc.to_string()) } fn main() { let config = Config::read_yaml_file("config.yaml"); let db = PgConnection::establish(&config.db_url) .expect("DB"); rocket::ignite() .manage(Mutex::new(db)) .mount("/", routes![ index, ]) .launch(); }