-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass.farmer.php
executable file
·429 lines (326 loc) · 10.1 KB
/
class.farmer.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<?php
require_once 'dbconfig.php';
class FARMER
{
private $conn;
public function __construct()
{
$database = new Database();
$db = $database->dbConnection();
$this->conn = $db;
}
public function runQuery($sql)
{
$stmt = $this->conn->prepare($sql);
return $stmt;
}
public function register($uname,$email,$phone,$upass)
{
try
{
$password = md5($upass);
$stmt = $this->conn->prepare("INSERT INTO tbl_farmers(name,email,phone,pass)
VALUES(:user_name, :user_mail, :user_phone, :user_pass)");
$stmt->bindparam(":user_name",$uname);
$stmt->bindparam(":user_mail",$email);
$stmt->bindparam(":user_phone",$phone);
$stmt->bindparam(":user_pass",$password);
$stmt->execute();
return $stmt;
}
catch(PDOException $ex)
{
echo $ex->getMessage();
}
}
public function reset_pass($email,$phone,$upass)
{
try
{
$password = md5($upass);
$stmt = $this->conn->prepare("UPDATE tbl_farmers SET pass = :user_pass WHERE
email=:user_email ");
$stmt->bindparam(":user_pass",$password);
$stmt->bindparam(":user_email",$email);
$stmt->execute();
return $stmt;
}
catch(PDOException $ex)
{
echo $ex->getMessage();
}
}
public function login($email,$upass)
{
try
{
$stmt = $this->conn->prepare("SELECT * FROM tbl_farmers WHERE email=:email_id");
$stmt->execute(array(":email_id"=>$email));
$userRow=$stmt->fetch(PDO::FETCH_ASSOC);
if($stmt->rowCount() == 1)
{
if ($userRow['hidden']==1) {
header("Location: farmer_signin.php?error1");
exit;
} else {
if($userRow['pass']==md5($upass))
{
unset($_SESSION['consultantSession']);
$_SESSION['farmerSession'] = $userRow['email'];
return true;
}
else
{
header("Location: farmer_signin.php?error");
exit;
}
}
}
else
{
header("Location: farmer_signin.php?error");
exit;
}
}
catch(PDOException $ex)
{
echo $ex->getMessage();
}
}
public function is_logged_in()
{
if(isset($_SESSION['farmerSession']))
{
return true;
}
}
public function redirect($url)
{
header("Location: $url");
}
public function logout()
{
session_destroy();
$_SESSION['farmerSession'] = false;
}
public function delete_post($pid)
{
try
{
$stmt = $this->conn->prepare("SELECT photo FROM farmer_posts WHERE ID=:pid");
$stmt->execute(array(':pid'=>$pid));
$imgRow=$stmt->fetch(PDO::FETCH_ASSOC);
unlink("post_images/".$imgRow['photo']);
$stmt = $this->conn->prepare("DELETE FROM farmer_posts WHERE ID=:pid");
$stmt->execute(array(':pid'=>$pid));
$stmt->execute();
return $stmt;
}
catch(PDOException $ex)
{
echo $ex->getMessage();
}
}
public function farmer_post($title,$price,$phone,$location,$description,$cartegory,$userpic,$email,$piced,$userID)
{
try {
$stmt = $this->conn->prepare("INSERT INTO farmer_posts(title,price,phone,location,description,cartegory,photo,email,userpic,userID)
VALUES(:user_name, :user_mail, :user_phone, :user_loc, :user_desc, :user_cart, :user_pic, :user_email, :user_img, :userID)");
$stmt->bindparam(":user_name",$title);
$stmt->bindparam(":user_mail",$price);
$stmt->bindparam(":user_phone",$phone);
$stmt->bindparam(":user_loc",$location);
$stmt->bindparam(":user_desc",$description);
$stmt->bindparam(":user_cart",$cartegory);
$stmt->bindparam(":user_pic",$userpic);
$stmt->bindparam(":user_email",$email);
$stmt->bindparam(":user_img",$piced);
$stmt->bindparam(":userID",$userID);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function farmer_edit_post($id,$title,$price,$phone,$location,$description,$cartegory,$email,$piced,$userID)
{
try {
$stmt = $this->conn->prepare("UPDATE farmer_posts SET title = :title, price= :price, phone = :user_phone,
location = :loc , description = :descript , cartegory = :cart , email = :email ,
userpic = :user_pic ,userID = :userID WHERE ID = :id ");
$stmt->bindparam(":title",$title);
$stmt->bindparam(":price",$price);
$stmt->bindparam(":user_phone",$phone);
$stmt->bindparam(":loc",$location);
$stmt->bindparam(":descript",$description);
$stmt->bindparam(":cart",$cartegory);
$stmt->bindparam(":email",$email);
$stmt->bindparam(":user_pic",$piced);
$stmt->bindparam(":userID",$userID);
$stmt->bindparam(":id",$id);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function farmer_profile($phone,$userpic)
{
try {
$stmt = $this->conn->prepare("UPDATE tbl_farmers SET phone = :user_phone, photo = :user_pic WHERE email='$_SESSION[farmerSession]' ");
$stmt->bindparam(":user_phone",$phone);
$stmt->bindparam(":user_pic",$userpic);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function comment_post($comment,$id,$email,$piced)
{
try {
$stmt = $this->conn->prepare("INSERT INTO comment_posts(postID,comment,email,userpic)
VALUES(:user_ID, :user_comment, :user_mail, :user_img)");
$stmt->bindparam(":user_ID",$id);
$stmt->bindparam(":user_comment",$comment);
$stmt->bindparam(":user_mail",$email);
$stmt->bindparam(":user_img",$piced);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function message_fav($fav_mess,$email,$favourite)
{
try {
$stmt = $this->conn->prepare("INSERT INTO message_fav(postID,email,favourite)
VALUES(:user_ID, :user_mail, :user_fav)");
$stmt->bindparam(":user_ID",$fav_mess);
$stmt->bindparam(":user_mail",$email);
$stmt->bindparam(":user_fav",$favourite);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function message_favno($fav_mess,$email,$fav_no)
{
try {
$stmt = $this->conn->prepare("UPDATE message_fav SET favourite =:user_fav WHERE email = '$email' AND postID = '$fav_mess' ");
//$stmt->bindparam(":user_ID",$fav_mess);
//$stmt->bindparam(":user_mail",$email);
$stmt->bindparam(":user_fav",$fav_no);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function product_fav($fav_mess,$email,$favourite)
{
try {
$stmt = $this->conn->prepare("INSERT INTO product_fav(postID,email,favourite)
VALUES(:user_ID, :user_mail, :user_fav)");
$stmt->bindparam(":user_ID",$fav_mess);
$stmt->bindparam(":user_mail",$email);
$stmt->bindparam(":user_fav",$favourite);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function product_favno($fav_mess,$email,$fav_no)
{
try {
$stmt = $this->conn->prepare("UPDATE product_fav SET favourite =:user_fav WHERE email = '$email' AND postID = '$fav_mess' ");
//$stmt->bindparam(":user_ID",$fav_mess);
//$stmt->bindparam(":user_mail",$email);
$stmt->bindparam(":user_fav",$fav_no);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function hide_post($hide_id,$hide)
{
try {
$stmt = $this->conn->prepare("UPDATE farmer_posts SET hidden =:user_hide WHERE ID = :hide_id");
$stmt->bindparam(":user_hide",$hide);
$stmt->bindparam(":hide_id",$hide_id);
$stmt->execute();
return $stmt;
} catch (PDOException $ex) {
echo $ex->getMessage();
}
}
public function send_message($name,$senderEmail,$phone,$message,$postID,$receiverEmail)
{
try{
$status = 'unread';
$stmt = $this->conn->prepare("INSERT INTO sent_messages(name,senderEmail,phone,message,postID,receiverEmail,status) VALUES(:name, :sender, :phone, :message, :post, :receive, :status)");
$stmt->bindParam(":name", $name);
$stmt->bindParam(":sender", $senderEmail);
$stmt->bindParam(":phone", $phone);
$stmt->bindParam(":message", $message);
$stmt->bindParam(":post", $postID);
$stmt->bindParam(":receive", $receiverEmail);
$stmt->bindParam(":status", $status);
$stmt->execute();
return $stmt;
}
catch(PDOException $ex){
echo $ex->getMessage();
}
}
public function send_message_cons($name,$senderEmail,$phone,$message,$postID,$receiverEmail)
{
try{
$status = 'unread';
$stmt = $this->conn->prepare("INSERT INTO sent_messages_cons(name,senderEmail,phone,message,postID,receiverEmail,status) VALUES(:name, :sender, :phone, :message, :post, :receive, :status)");
$stmt->bindParam(":name", $name);
$stmt->bindParam(":sender", $senderEmail);
$stmt->bindParam(":phone", $phone);
$stmt->bindParam(":message", $message);
$stmt->bindParam(":post", $postID);
$stmt->bindParam(":receive", $receiverEmail);
$stmt->bindParam(":status", $status);
$stmt->execute();
return $stmt;
}
catch(PDOException $ex){
echo $ex->getMessage();
}
}
public function farmer_read_message($unread,$messg)
{
try{
$stmt = $this->conn->prepare("UPDATE sent_messages SET status = :user_pass WHERE
ID=:user_ID ");
$stmt->bindparam(":user_pass",$unread);
$stmt->bindparam(":user_ID",$messg);
$stmt->execute();
return $stmt;
}
catch(PDOException $ex){
echo $ex->getMessage();
}
}
public function consultant_read_message($unread,$messg)
{
try{
$stmt = $this->conn->prepare("UPDATE sent_messages_cons SET status = :user_pass WHERE
ID=:user_ID ");
$stmt->bindparam(":user_pass",$unread);
$stmt->bindparam(":user_ID",$messg);
$stmt->execute();
return $stmt;
}
catch(PDOException $ex){
echo $ex->getMessage();
}
}
}