2019-09-05 17:07:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class User
|
|
|
|
{
|
|
|
|
private $id;
|
|
|
|
private $email;
|
|
|
|
private $pwd_hash;
|
|
|
|
private $surname;
|
|
|
|
private $first_name;
|
|
|
|
private $birth_date;
|
|
|
|
private $gender;
|
|
|
|
private $address;
|
|
|
|
private $postal_code;
|
|
|
|
private $city;
|
|
|
|
private $country;
|
|
|
|
private $phone_number;
|
|
|
|
private $school;
|
|
|
|
private $class;
|
|
|
|
private $responsible_name;
|
|
|
|
private $responsible_phone;
|
|
|
|
private $responsible_email;
|
|
|
|
private $description;
|
|
|
|
private $role;
|
|
|
|
private $team_id;
|
|
|
|
private $year;
|
|
|
|
private $confirm_email;
|
|
|
|
private $forgotten_password;
|
2019-09-06 23:33:05 +00:00
|
|
|
private $inscription_date;
|
2019-09-06 12:02:32 +00:00
|
|
|
|
|
|
|
private function __construct() {}
|
2019-09-05 17:07:59 +00:00
|
|
|
|
2019-09-06 12:02:32 +00:00
|
|
|
public static function fromId($id)
|
2019-09-05 17:07:59 +00:00
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$req = $DB->prepare("SELECT * FROM `users` WHERE `id` = ?;");
|
|
|
|
$req->execute([htmlspecialchars($id)]);
|
|
|
|
$data = $req->fetch();
|
|
|
|
|
|
|
|
if ($data === false)
|
2019-09-06 23:33:05 +00:00
|
|
|
return null;
|
2019-09-05 17:07:59 +00:00
|
|
|
|
2019-09-06 12:02:32 +00:00
|
|
|
$user = new User();
|
|
|
|
$user->fill($data);
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function fromEmail($email)
|
|
|
|
{
|
|
|
|
global $DB, $YEAR;
|
|
|
|
$req = $DB->prepare("SELECT * FROM `users` WHERE `email` = ? AND `year` = $YEAR;");
|
|
|
|
$req->execute([htmlspecialchars($email)]);
|
|
|
|
$data = $req->fetch();
|
|
|
|
|
|
|
|
if ($data === false)
|
2019-09-06 23:33:05 +00:00
|
|
|
return null;
|
2019-09-06 12:02:32 +00:00
|
|
|
|
|
|
|
$user = new User();
|
|
|
|
$user->fill($data);
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function fill($data)
|
|
|
|
{
|
|
|
|
$this->id = $data["id"];
|
2019-09-05 17:07:59 +00:00
|
|
|
$this->email = $data["email"];
|
|
|
|
$this->pwd_hash = $data["pwd_hash"];
|
|
|
|
$this->surname = $data["surname"];
|
|
|
|
$this->first_name = $data["first_name"];
|
|
|
|
$this->birth_date = $data["birth_date"];
|
|
|
|
$this->gender = $data["gender"];
|
|
|
|
$this->address = $data["address"];
|
|
|
|
$this->postal_code = $data["postal_code"];
|
|
|
|
$this->city = $data["city"];
|
|
|
|
$this->country = $data["country"];
|
|
|
|
$this->phone_number = $data["phone_number"];
|
|
|
|
$this->school = $data["school"];
|
2019-09-07 13:51:16 +00:00
|
|
|
$this->class = SchoolClass::fromName($data["class"]);
|
2019-09-05 17:07:59 +00:00
|
|
|
$this->responsible_name = $data["responsible_name"];
|
|
|
|
$this->responsible_phone = $data["responsible_phone"];
|
|
|
|
$this->responsible_email = $data["responsible_email"];
|
|
|
|
$this->description = $data["description"];
|
|
|
|
$this->role = Role::fromName($data["role"]);
|
|
|
|
$this->team_id = $data["team_id"];
|
|
|
|
$this->year = $data["year"];
|
|
|
|
$this->confirm_email = $data["confirm_email"];
|
|
|
|
$this->forgotten_password = $data["forgotten_password"];
|
2019-09-06 23:33:05 +00:00
|
|
|
$this->inscription_date = $data["inscription_date"];
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getEmail()
|
|
|
|
{
|
|
|
|
return $this->email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setEmail($email)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->email = $email;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `email` = ? WHERE `id` = ?;")->execute([$email, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getId()
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function checkPassword($password)
|
|
|
|
{
|
|
|
|
return password_verify($password, $this->pwd_hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPassword($password)
|
|
|
|
{
|
|
|
|
$this->setPasswordHash(password_hash($password, PASSWORD_BCRYPT));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setPasswordHash($password_hash)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->pwd_hash = $password_hash;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `pwd_hash` = ? WHERE `id` = ?;")->execute([$password_hash, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getSurname()
|
|
|
|
{
|
|
|
|
return $this->surname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSurname($surname)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->surname = $surname;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `surname` = ? WHERE `id` = ?;")->execute([$surname, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFirstName()
|
|
|
|
{
|
|
|
|
return $this->first_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setFirstName($first_name)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->first_name = $first_name;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `first_name` = ? WHERE `id` = ?;")->execute([$first_name, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getBirthDate()
|
|
|
|
{
|
|
|
|
return $this->birth_date;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setBirthDate($birth_date)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->birth_date = $birth_date;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `birth_date` = ? WHERE `id` = ?;")->execute([$birth_date, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getGender()
|
|
|
|
{
|
|
|
|
return $this->gender;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setGender($gender)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->gender = $gender;
|
2019-09-06 23:33:05 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `gender` = ? WHERE `id` = ?;")->execute([$gender, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getAddress()
|
|
|
|
{
|
|
|
|
return $this->address;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setAddress($address)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->address = $address;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `address` = ? WHERE `id` = ?;")->execute([$address, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getPostalCode()
|
|
|
|
{
|
|
|
|
return $this->postal_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPostalCode($postal_code)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->postal_code = $postal_code;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `postal_code` = ? WHERE `id` = ?;")->execute([$postal_code, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getCity()
|
|
|
|
{
|
|
|
|
return $this->city;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setCity($city)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->city = $city;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `city` = ? WHERE `id` = ?;")->execute([$city, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getCountry()
|
|
|
|
{
|
|
|
|
return $this->country;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setCountry($country)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->country = $country;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `country` = ? WHERE `id` = ?;")->execute([$country, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getPhoneNumber()
|
|
|
|
{
|
|
|
|
return $this->phone_number;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPhoneNumber($phone_number)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->phone_number = $phone_number;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `phone_number` = ? WHERE `id` = ?;")->execute([$phone_number, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getSchool()
|
|
|
|
{
|
|
|
|
return $this->school;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSchool($school)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->school = $school;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `school` = ? WHERE `id` = ?;")->execute([$school, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getClass()
|
|
|
|
{
|
|
|
|
return $this->class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setClass($class)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->class = $class;
|
2019-09-07 13:51:16 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `class` = ? WHERE `id` = ?;")->execute([SchoolClass::getName($class), $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getResponsibleName()
|
|
|
|
{
|
|
|
|
return $this->responsible_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setResponsibleName($responsible_name)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->responsible_name = $responsible_name;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `responsible_name` = ? WHERE `id` = ?;")->execute([$responsible_name, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getResponsiblePhone()
|
|
|
|
{
|
|
|
|
return $this->responsible_phone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setResponsiblePhone($responsible_phone)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->responsible_phone = $responsible_phone;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `responsible_phone` = ? WHERE `id` = ?;")->execute([$responsible_phone, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getResponsibleEmail()
|
|
|
|
{
|
|
|
|
return $this->responsible_email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setResponsibleEmail($responsible_email)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->responsible_email = $responsible_email;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `responsible_email` = ? WHERE `id` = ?;")->execute([$responsible_email, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription()
|
|
|
|
{
|
|
|
|
return $this->description;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setDescription($desc)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->description = $desc;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `description` = ? WHERE `id` = ?;")->execute([$desc, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getRole()
|
|
|
|
{
|
|
|
|
return $this->role;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setRole($role)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->role = $role;
|
|
|
|
/** @noinspection PhpUndefinedMethodInspection */
|
2019-09-06 23:33:05 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `role` = ? WHERE `id` = ?;")->execute([Role::getName($role), $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTeamId()
|
|
|
|
{
|
|
|
|
return $this->team_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setTeamId($team_id)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->team_id = $team_id;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `team_id` = ? WHERE `id` = ?;")->execute([$team_id, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getYear()
|
|
|
|
{
|
|
|
|
return $this->year;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConfirmEmailToken()
|
|
|
|
{
|
|
|
|
return $this->confirm_email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setConfirmEmailToken($token)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->confirm_email = $token;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `confirm_email` = ? WHERE `id` = ?;")->execute([$token, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getForgottenPasswordToken()
|
|
|
|
{
|
|
|
|
return $this->forgotten_password;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setForgottenPasswordToken($token)
|
|
|
|
{
|
|
|
|
global $DB;
|
|
|
|
$this->forgotten_password = $token;
|
2019-09-06 12:02:32 +00:00
|
|
|
$DB->prepare("UPDATE `users` SET `forgotten_password` = ? WHERE `id` = ?;")->execute([$token, $this->getId()]);
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|
2019-09-06 23:33:05 +00:00
|
|
|
|
|
|
|
public function getInscriptionDate()
|
|
|
|
{
|
|
|
|
return $this->inscription_date;
|
|
|
|
}
|
2019-09-05 17:07:59 +00:00
|
|
|
}
|