-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.php
More file actions
86 lines (63 loc) · 2.86 KB
/
User.php
File metadata and controls
86 lines (63 loc) · 2.86 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
<?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()
{
$stmt = self::$dbc->prepare('INSERT INTO Users (first_name, last_name, email, password) VALUES (:first_name, :last_name, :email, :password)');
$stmt->bindValue(':first_name', $this->attributes['first_name'], PDO::PARAM_STR);
$stmt->bindValue(':last_name', $this->attributes['last_name'], PDO::PARAM_STR);
$stmt->bindValue(':email', $this->attributes['email'], PDO::PARAM_STR);
$stmt->bindValue(':password', $this->attributes['password'], PDO::PARAM_STR);
$stmt->execute();
$this->attributes['id'] = self::$dbc->lastInsertId();
}
/** Update existing entry in the database */
protected function update()
{
$stmt = self::$dbc->prepare('UPDATE Users SET first_name = :first_name, last_name = :last_name, email = :email, password = :password WHERE id = :id');
$stmt->bindValue(':first_name', $this->attributes['first_name'], PDO::PARAM_STR);
$stmt->bindValue(':last_name', $this->attributes['last_name'], PDO::PARAM_STR);
$stmt->bindValue(':email', $this->attributes['email'], PDO::PARAM_STR);
$stmt->bindValue(':password', $this->attributes['password'], PDO::PARAM_STR);
$stmt->bindValue(':id', $this->attributes['id'], PDO::PARAM_INT);
$stmt->execute();
}
/**
* 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 --- why?
// self::dbConnect();
$stmt = self::$dbc->prepare('SELECT * FROM Users WHERE id = :id');
$stmt->bindValue(':id', $id, PDO::PARAM_INT);
$stmt->execute();
$result = $stmt->fetch(PDO::FETCH_ASSOC);
// 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');
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
return $result;
}
}