-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonnageManager.php
107 lines (91 loc) · 3.07 KB
/
PersonnageManager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/*
* PersonnageManager.php
*
* Copyright 2015 Eric Heintzmann <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*
*/
class PersonnageManager{
private $_db;
public function __construct($db){
$this->setDb($db);
}
public function db(){
return $this->_db;
}
public function setDb(PDO $db){
$this->_db = $db;
}
public function ajouterPersonnage(Personnage $perso){
$req = $this->db()->prepare('INSERT INTO Personnage(nom) VALUES(:nom);');
//$req->bindValue(':id', $perso->id(), PDO::PARAM_INT);
$req->bindValue(':nom', $perso->nom(), PDO::PARAM_STR);
//$req->bindValue(':degats',$perso->degats(), PDO::PARAM_INT);
$req->execute();
$perso->hydrate([
'id' => $this->db()->lastInsertId(),
'degats' => 0
]);
}
public function supprimerPersonnage(Personnage $perso){
$req = $this->db()->prepare('DELETE FROM Personnage WHERE id = :id;');
$req->bindValue(':id',$perso->id());
$req->execute();
}
public function selectionnerPersonnage($x){
if (is_int($x)){
$tab = $this->db()->query('SELECT * FROM Personnage WHERE id = ' . $x)->fetch(PDO::FETCH_ASSOC);
return new Personnage($tab);
}
elseif(is_string($x)){
$tab = $this->db()->query('SELECT * FROM Personnage WHERE nom = "'.$x.'";')->fetch(PDO::FETCH_ASSOC);
return new Personnage($tab);
}
}
public function count(){
return $this->db()->query('SELECT COUNT(id) AS nb_perso FROM Personnage;')->fetchColumn();
}
public function existe($x){
if (is_int($x)){
return (bool) -$this->db()->query('SELECT COUNT(*) FROM Personnage WHERE id = '.$x)->fetchColumn();
}
elseif(is_string($x)){
return (bool) $this->db()->query('SELECT COUNT(*) FROM Personnage WHERE nom = "'. $x . '";')->fetchColumn();
}
else{
return false;
}
}
public function listerPersonnages(){
$persos = [];
$req = $this->db()->prepare('SELECT id, nom, degats FROM Personnage ORDER BY nom;');
$req->execute();
while ($donnees = $req->fetch(PDO::FETCH_ASSOC)){
$persos[] = new Personnage($donnees);
}
return $persos;
}
public function updatePersonnage(Personnage $perso){
$req = $this->db()->prepare('UPDATE Personnage SET nom=:nom, degats=:degats WHERE id=:id;');
$req->bindValue(':nom', $perso->nom(), PDO::PARAM_STR);
$req->bindValue(':degats', $perso->degats(), PDO::PARAM_INT);
$req->bindValue(':id', $perso->id(), PDO::PARAM_INT);
$req->execute();
}
}