use std::time; #[macro_use] extern crate lazy_static; mod conf; mod db; mod ed; mod error; mod logging; mod posts; mod user; fn main() { let arg_matches = &*conf::ARGS; let start = time::Instant::now(); logging::checked_init(); log::info!("clinte starting up!"); println!("clinte v{}", clap::crate_version!()); println!("a community notices system"); println!(); let db = db::Conn::new(); if *conf::DEBUG { log::info!("Startup completed in {:?}ms", start.elapsed().as_millis()); } if arg_matches.subcommand_matches("post").is_some() { log::info!("New post..."); error::helper(posts::create(&db), "Error creating new post"); } else if arg_matches.subcommand_matches("update").is_some() { let id: u32 = if let Some(val) = arg_matches.subcommand_matches("update_handler") { error::helper( val.value_of("id").unwrap_or_else(|| "0").parse(), "Couldn't parse ID", ) } else { 0 }; log::info!("Updating post ..."); error::helper( posts::update_handler(&db, id), format!("Error updating post {}", id).as_ref(), ); } else if arg_matches.subcommand_matches("delete").is_some() { let id: u32 = if let Some(val) = arg_matches.subcommand_matches("update_handler") { error::helper( val.value_of("id").unwrap_or_else(|| "0").parse(), "Couldn't parse ID", ) } else { 0 }; log::info!("Deleting post"); error::helper( posts::delete_handler(&db, id), format!("Error deleting post {}", id).as_ref(), ); } error::helper(posts::display(&db), "Error displaying posts"); }