-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.php
161 lines (128 loc) · 4.23 KB
/
user.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
class User {
/*
CREATE TABLE User(
id INT AUTO_INCREMENT,
nick VARCHAR (255) UNIQUE NOT NULL ,
hashed_password VARCHAR (60) not null,
description text,
PRIMARY KEY (id));
*/
//krok 1
private $id;
private $name;
private $desc;
//krok 2
public function __constructor(){
$this->id=-1;
$this->name="";
$this->desc="";
}
public function login(mysqli $conn, $name, $insertedPassword){
$sqlGetUser = "SELECT * FROM User WhERE nick = '".$name."'";
$result = $conn->query($sqlGetUser);
if($result->num_rows===1){
$userData= $result->fetch_assoc();
if(password_verify($insertedPassword,$userData["hashed_password"])){
$this->id=$userData["id"];
$this->name=$userData["nick"];
$this->desc=$userData["description"];
}else{
echo" Wrong name or password";
}
}
else{
echo" Error during logging .. <br>";
echo" Error : ".$conn->error."" ;
}
}
public function showUser(){
echo("User:" .$this->name."<br> Desc: ".$this->desc."<br>");
}
public function generateLinkToMyPage(){
return "<a href=http://localhost/workshop/src/show_user.php?user_id='".$this->id."'>'".$this->name."</a>";
}
public function loadFromDB(mysqli $conn, $idToLoad){
$slqLoadUser = "SELECT * FROM User WHERE id=".$idToLoad;
$result =$conn->query($slqLoadUser);
if ($result->num_rows === 1){
$userData= $result->fetch_assoc();
$this->id = $userData["id"];
$this->name = $userData["nick"];
$this->desc = $userData["description"];
}else{
echo"error during logging..<br>";
echo"error: ".$conn->error."<br>";
}
}
public function register(mysqli $conn, $name, $desc, $password, $password_2){
if($password!= $password_2){
echo("Password does not mach");
return;
}
$options = [
'cost' => 11,
'salt' => mcrypt_create_iv(22, MCRYPT_DEV_URANDOM),
];
$hashedPas = password_hash($password, PASSWORD_BCRYPT, $options);
$sqlInsertUser = "INSERT INTO User(nick, hashed_password, description) VALUES ('".$name."','".$hashedPas."','".$desc."')";
$result = $conn->query($sqlInsertUser);
if($result == TRUE){
$this->id = $conn->insert_id;
$this->name = $name ;
$this->desc = $desc;
}else{
echo("Error : ".$conn->error."<br>");
}
}
public function getId()
{
return $this->id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
public function getAllPost(mysqli $conn, $numberOFPosts){
$sql = "SELECT * FROM Tweets WHERE user_id = '".$this->id."' LIMIT ".$numberOFPosts;
$result = $conn->query($sql);
$retArray = array();
if($result->num_rows>0){
// to do : Stworzyc obiekty klasy tweet i dodac je do tablcy zwracanej z tej funckji.
}
return $retArray;
}
public function saveToDB(mysqli $conn, $newDesc, $newPass, $newPass2) {
if($newPass !== $newPass2) {
echo "Passwords doesn't match";
return;
}
$options = [
'cost' => 11,
'salt' => mcrypt_create_iv(22, MCRYPT_DEV_URANDOM),
];
$hashedPas = password_hash( $newPass, PASSWORD_BCRYPT, $options);
$sqlUpdateUser = "UPDATE Users hashed_password='".$hashedPas."',
description='".$newDesc."'
WHERE id=".$this->id;
$result = $conn->query($sqlUpdateUser);
if($result == TRUE) {
$this->desc = $newDesc;
} else {
echo ("Error: ".$conn->error."<br>");
}
}
public function getDesc()
{
return $this->desc;
}
public function setDesc($desc)
{
$this->desc = $desc;
}
}
?>