2019-09-06 11:48:50 +00:00
|
|
|
<?php
|
|
|
|
|
2019-09-06 23:33:05 +00:00
|
|
|
if (!isset($_SESSION["role"]) || $_SESSION["role"] != Role::ADMIN)
|
2019-09-07 11:42:36 +00:00
|
|
|
require_once "server_files/403.php";
|
2019-09-06 11:48:50 +00:00
|
|
|
|
2019-09-07 15:26:49 +00:00
|
|
|
$has_error = false;
|
|
|
|
$error_message = null;
|
|
|
|
|
2019-09-06 11:48:50 +00:00
|
|
|
if (isset($_POST["submitted"])) {
|
2019-09-07 15:26:49 +00:00
|
|
|
$orga = new NewOrganizer($_POST);
|
|
|
|
try {
|
|
|
|
$orga->makeVerifications();
|
|
|
|
$orga->register();
|
|
|
|
}
|
|
|
|
catch (AssertionError $e) {
|
|
|
|
$has_error = true;
|
|
|
|
$error_message = $e->getMessage();
|
|
|
|
}
|
2019-09-06 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 15:26:49 +00:00
|
|
|
class NewOrganizer {
|
|
|
|
public $surname;
|
|
|
|
public $first_name;
|
|
|
|
public $email;
|
|
|
|
public $admin;
|
|
|
|
public $password;
|
|
|
|
|
|
|
|
public function __construct($data)
|
|
|
|
{
|
|
|
|
foreach ($data as $key => $value)
|
|
|
|
$this->$key = htmlspecialchars($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function makeVerifications()
|
|
|
|
{
|
|
|
|
ensure($this->surname != null && $this->surname != "", "Le nom est invalide.");
|
|
|
|
ensure($this->first_name != null && $this->first_name != "", "Le prénom est invalide.");
|
|
|
|
ensure(filter_var($this->email, FILTER_VALIDATE_EMAIL), "L'adresse e-mail est invalide.");
|
|
|
|
$this->email = strtolower($this->email);
|
|
|
|
ensure(!userExists($this->email), "Cette adresse e-mail est déjà utilisée.");
|
|
|
|
$this->admin = $this->admin == "on" ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function register() {
|
|
|
|
global $DB, $YEAR;
|
|
|
|
|
|
|
|
$alphabet = "0123456789abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
|
|
|
$this->password = "";
|
|
|
|
for ($i = 0; $i < 16; ++$i)
|
|
|
|
$this->password .= $alphabet[rand(0, strlen($alphabet) - 1)];
|
|
|
|
|
|
|
|
$req = $DB->prepare("INSERT INTO `users`(`email`, `pwd_hash`, `surname`, `first_name`, `role`, `year`)
|
2019-09-06 11:48:50 +00:00
|
|
|
VALUES (?, ?, ?, ?, ?, ?);");
|
2019-09-07 15:26:49 +00:00
|
|
|
$req->execute([$this->email, password_hash($this->password, PASSWORD_BCRYPT), $this->surname, $this->first_name, $this->admin ? "ADMIN" : "ORGANIZER", $YEAR]);
|
2019-09-06 11:48:50 +00:00
|
|
|
|
2019-09-07 15:26:49 +00:00
|
|
|
sendAddOrganizerMail($this);
|
|
|
|
}
|
2019-09-06 11:48:50 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 11:42:36 +00:00
|
|
|
require_once "server_files/views/ajouter_organisateur.php";
|