Parkmanne/Customer.cpp

57 lines
1.9 KiB
C++
Raw Normal View History

2019-05-28 16:46:55 +00:00
#include "headers/Customer.h"
#include <iostream>
2019-06-20 11:08:02 +00:00
// moet aangepast worden om een verhicle_type toe te voegen
2019-06-26 18:12:23 +00:00
Customer::Customer(int id_, string name_, Verhicle_type verhicle_) : id{id_}, name{name_}, verhicle{verhicle_}, card_code{gen_cardcode()} {}
2019-05-28 16:46:55 +00:00
2019-06-20 11:08:02 +00:00
/*
creert een park_time object met start time= nu, en voegt t toe aan een vector.
*/
2019-06-26 18:12:23 +00:00
void Customer::clock_in(int s_id) {
2019-05-28 16:46:55 +00:00
Park_time pt{id, s_id};
park_instances.push_back(pt);
}
2019-06-20 11:08:02 +00:00
// edit de laatste park_time obj in de vector zodat de end_time = now.
2019-06-26 18:12:23 +00:00
void Customer::clock_out(int s_id) { park_instances[park_instances.size() - 1].clock_out(id, s_id); }
2019-05-28 16:46:55 +00:00
2019-06-20 11:08:02 +00:00
// monthly report generation. moet nog een manier vinden om af te bakenen.
2019-06-26 18:12:23 +00:00
void Customer::gen_monthly() {
2019-05-28 16:46:55 +00:00
std::cout << "NAME: " << name << " card code: " << card_code << "\n";
std::cout << "-------------------------------------------------\n";
for (auto& i : park_instances) {
2019-05-28 16:57:33 +00:00
// TODO: need some logic to only include from this month
2019-05-28 16:46:55 +00:00
std::cout << i;
}
std::cout << "-------------------------------------------------\n\n";
2019-06-26 18:12:23 +00:00
}
void Customer::update_db(SQLite::Database& database) {
string statement{"insert into Customer values (, '', '', )"};
// after ( = 28)
statement.insert(38, std::to_string(int(verhicle)));
statement.insert(36, card_code);
statement.insert(32, name);
statement.insert(29, std::to_string(id));
std::cout << statement;
SQLite::Transaction transaction(database);
database.exec(statement);
transaction.commit();
}
//
// used to generate random card codes that will be used to authenticate users.
// they represent contactless rf cards that users will use to authenticate
std::mt19937 mt(time(0));
std::uniform_int_distribution<int> dist(65, 127);
string Customer::gen_cardcode() {
string code;
for (int i = 0; i < 20; i++) {
char letter = char(dist(mt));
code += letter;
}
return code;
}