4 * Représente un participant.
8 public $info; # Toute les infos du membre sous la forme d'un objet.
12 static private $NB_VOTES_PAR_PARTICIPANT = 3; # Concerne les votes des jeux joueés.
15 * Constructeur, peut être appelé sous trois formes différentes :
16 * 1) $v1 = NULL, $v2 = NULL : participant non-valide
17 * 2) $v1 = id, $v2 = NULL : la participant existe et est chargé à partir de son id
18 * 3) $v1 = pseudo, $v2 = password : le participant existe et est chargé à partir de son pseudo et de son password
20 public function Participant($v1=NULL, $v2=NULL)
22 # Aucunes valeurs transmise => ce n'est pas un participant valide.
23 if ($v1 == NULL && $v2 == NULL)
26 if (is_string($v1) && is_string($v2)) # Aucun des arguments n'est vide alors c'est le pseudo et le password qui ont été transmis
28 $res = pg_query_params("SELECT id FROM participants WHERE pseudo = $1 AND password = $2", array($v1, $v2));
30 else # Sinon c'est l'id
31 $res = pg_query_params("SELECT id FROM participants WHERE id
= $1", array($v1));
33 if (pg_result_status($res) == PGSQL_TUPLES_OK
&& pg_num_rows($res) === 1)
35 $this->id
= pg_fetch_object($res)->id
;
36 $this->chargerInfos();
41 * Est-ce que le participant existe ? C-à-d qu'il est inscrit.
43 public function existe()
45 return $this->id
!= 0;
48 public function chargerInfos()
53 $res = pg_query_params("SELECT * FROM participants WHERE id = $1", array($this->id));
55 if (pg_result_status($res) == PGSQL_TUPLES_OK && pg_num_rows($res) === 1)
56 $this->info = pg_fetch_object($res);
62 * Renvoie le nombre de votes restant pour le participant.
64 function nb_vote_restant()
66 $nombre_de_vote = pg_fetch_array(pg_query_params("
67 SELECT
COUNT(*) FROM participants RIGHT JOIN jeux_choisis ON participants
.id
= jeux_choisis
.participant_id
68 WHERE participants
.id
= $1
69 GROUP BY participants
.id
70 ", array($this->id)));
72 return Participant::$NB_VOTES_PAR_PARTICIPANT - $nombre_de_vote[0];
76 * Renvois TRUE si le nombre de participant max est atteint.
78 static function nombre_participant_max_atteint()
80 return Participant::nombre_place_restante() <= 0;
84 * Renvois le nombre de places restantes.
86 static function nombre_place_restante()
89 $res_SQL = pg_query("SELECT
COUNT(*) FROM participants
");
90 $nb_participant = pg_fetch_row($res_SQL);
92 return $config->get('nb_max_participant') - $nb_participant[0];