Time's Up!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.0 KiB

4 years ago
/*
TU - Time's Up!
Copyright (C) 2020 Julio Biason
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 <https://www.gnu.org/licenses/>.
*/
use log;
4 years ago
mod args;
mod eventlist;
use crate::eventlist::event::Event;
use crate::eventlist::eventlist::EventList;
fn main() {
env_logger::init();
if let Ok(command) = args::parse() {
log::debug!("Command: {:?}", command);
4 years ago
match command {
args::Action::List => list(),
args::Action::Add(description, date) => add_with_date(&description, &date),
4 years ago
args::Action::AddWithTime(description, date, time) => {
add_with_date_time(&description, &date, &time)
}
4 years ago
}
}
}
fn list() {
let event_list = EventList::load(); // TODO hide this
4 years ago
for record in event_list.into_iter() {
println!("{}", record); // TODO remove display
4 years ago
}
4 years ago
}
// TODO business rule (should be in EventList)
4 years ago
fn add_with_date(description: &str, date: &str) {
let event = Event::new_on_date(description, date);
4 years ago
add_event(event);
}
fn add_with_date_time(description: &str, date: &str, time: &str) {
let event = Event::new_on_date_time(description, date, time);
add_event(event);
}
fn add_event(event: Event) {
println!("Adding event {}", event);
let mut event_list = EventList::load();
log::debug!("EventList: {:?}", event_list);
4 years ago
event_list.push(event);
event_list.save();
println!("Done.");
4 years ago
}