-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.php
More file actions
87 lines (73 loc) · 2.96 KB
/
User.php
File metadata and controls
87 lines (73 loc) · 2.96 KB
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
<?php
// __DIR__ is a *magic constant* with the directory path containing this file.
// This allows us to correctly require_once Model.php, no matter where this file is being required from.
require_once __DIR__ . '/Model.php';
class User extends Model
{
/** Insert a new entry into the database */
protected function insert()
{
// @TODO: Use prepared statements to ensure data security
self::dbConnect();
$stmt = self::$dbc->prepare('INSERT INTO users (name, email, password) VALUES (:name, :email, :password)');
// @TODO: You will need to iterate through all the attributes to build the prepared query
foreach ($this->attributes as $key => $value) {
$stmt->bindValue(":$key", $value, PDO::PARAM_STR);
}
// @TODO: After the insert, add the id back to the attributes array
// so the object properly represents a DB record
$stmt->execute();
$lastId = self::$dbc->lastInsertId();
$this->id = $lastId;
}
/** Update existing entry in the database */
protected function update()
{
// @TODO: Use prepared statements to ensure data security
self::dbConnect();
$stmt = self::$dbc->prepare('UPDATE users SET name = :name, email = :email, password = :password WHERE id =:id');
foreach ($this->attributes as $key=>$value) {
$stmt->bindValue(":$key", $value, PDO::PARAM_STR);
}
$stmt->execute();
// @TODO: You will need to iterate through all the attributes to build the prepared query
}
/**
* Find a single record in the DB based on its id
*
* @param int $id id of the user entry in the database
*
* @return User An instance of the User class with attributes array set to values from the database
*/
public static function find($id)
{
// Get connection to the database
self::dbConnect();
// @TODO: Create select statement using prepared statements
$query = "SELECT * FROM users WHERE id = :id";
$stmt = self::$dbc->prepare($query);
$stmt->bindValue(':id', $id, PDO::PARAM_INT);
$stmt->execute();
$result = $stmt->fetch(PDO::FETCH_ASSOC);
// @TODO: Store the result in a variable named $result
// The following code will set the attributes on the calling object based on the result variable's contents
$instance = null;
if ($result) {
$instance = new static($result);
}
return $instance;
}
/**
* Find all records in a table
*
* @return User[] Array of instances of the User class with attributes set to values from database
*/
public static function all()
{
self::dbConnect();
$stmt = self::$dbc->query("SELECT * FROM users");
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
return $results;
// @TODO: Learning from the find method, return all the matching records
}
}