-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_class.php
269 lines (256 loc) · 7.96 KB
/
admin_class.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
<?php
session_start();
ini_set('display_errors', 1);
Class Action {
private $db;
public function __construct() {
ob_start();
include 'conn_db.php';
$this->db = $conn;
}
function __destruct() {
$this->db->close();
ob_end_flush();
}
function login(){
extract($_POST);
$qry = $this->db->query("SELECT * FROM users where username = '".$username."' and password = '".md5($password)."' ");
if($qry->num_rows > 0){
foreach ($qry->fetch_array() as $key => $value) {
if($key != 'passwors' && !is_numeric($key))
$_SESSION['login_'.$key] = $value;
}
return 1;
}else{
return 3;
}
}
function logout(){
session_destroy();
foreach ($_SESSION as $key => $value) {
unset($_SESSION[$key]);
}
header("location:login.php");
}
function logout2(){
session_destroy();
foreach ($_SESSION as $key => $value) {
unset($_SESSION[$key]);
}
header("location:../index.php");
}
function save_user(){
extract($_POST);
$data = " name = '$name' ";
$data .= ", username = '$username' ";
if(!empty($password))
$data .= ", password = '".md5($password)."' ";
$data .= ", type = '$type' ";
$chk = $this->db->query("Select * from users where username = '$username' and id !='$id' ")->num_rows;
if($chk > 0){
return 2;
exit;
}
if(empty($id)){
$save = $this->db->query("INSERT INTO users set ".$data);
}else{
$save = $this->db->query("UPDATE users set ".$data." where id = ".$id);
}
if($save){
return 1;
}
}
function delete_user(){
extract($_POST);
$delete = $this->db->query("DELETE FROM users where id = ".$id);
if($delete)
return 1;
}
function signup(){
extract($_POST);
$data = " name = '".$firstname.' '.$lastname."' ";
$data .= ", username = '$email' ";
$data .= ", password = '".md5($password)."' ";
$chk = $this->db->query("SELECT * FROM users where username = '$email' ")->num_rows;
if($chk > 0){
return 2;
exit;
}
$save = $this->db->query("INSERT INTO users set ".$data);
if($save){
$uid = $this->db->insert_id;
$data = '';
foreach($_POST as $k => $v){
if($k =='password')
continue;
if(empty($data) && !is_numeric($k) )
$data = " $k = '$v' ";
else
$data .= ", $k = '$v' ";
}
if($_FILES['img']['tmp_name'] != ''){
$fname = strtotime(date('y-m-d H:i')).'_'.$_FILES['img']['name'];
$move = move_uploaded_file($_FILES['img']['tmp_name'],'assets/uploads/'. $fname);
$data .= ", avatar = '$fname' ";
}
$save_alumni = $this->db->query("INSERT INTO alumnus_bio set $data ");
if($data){
$aid = $this->db->insert_id;
$this->db->query("UPDATE users set alumnus_id = $aid where id = $uid ");
$login = $this->login2();
if($login)
return 1;
}
}
}
function update_account(){
extract($_POST);
$data = " name = '".$firstname.' '.$lastname."' ";
$data .= ", username = '$email' ";
if(!empty($password))
$data .= ", password = '".md5($password)."' ";
$chk = $this->db->query("SELECT * FROM users where username = '$email' and id != '{$_SESSION['login_id']}' ")->num_rows;
if($chk > 0){
return 2;
exit;
}
$save = $this->db->query("UPDATE users set $data where id = '{$_SESSION['login_id']}' ");
if($save){
$data = '';
foreach($_POST as $k => $v){
if($k =='password')
continue;
if(empty($data) && !is_numeric($k) )
$data = " $k = '$v' ";
else
$data .= ", $k = '$v' ";
}
if($_FILES['img']['tmp_name'] != ''){
$fname = strtotime(date('y-m-d H:i')).'_'.$_FILES['img']['name'];
$move = move_uploaded_file($_FILES['img']['tmp_name'],'assets/uploads/'. $fname);
$data .= ", avatar = '$fname' ";
}
$save_alumni = $this->db->query("UPDATE alumnus_bio set $data where id = '{$_SESSION['bio']['id']}' ");
if($data){
foreach ($_SESSION as $key => $value) {
unset($_SESSION[$key]);
}
$login = $this->login2();
if($login)
return 1;
}
}
}
function save_category(){
extract($_POST);
$data = " name = '$name' ";
$data .= ", description = '$description' ";
if(empty($id)){
$save = $this->db->query("INSERT INTO categories set $data");
}else{
$save = $this->db->query("UPDATE categories set $data where id = $id");
}
if($save)
return 1;
}
function delete_category(){
extract($_POST);
$delete = $this->db->query("DELETE FROM categories where id = ".$id);
if($delete){
return 1;
}
}
function save_topic(){
extract($_POST);
$data = " title = '$title' ";
$data .= ", category_ids = '".(implode(",",$category_ids))."' ";
$data .= ", content = '".htmlentities(str_replace("'","’",$content))."' ";
if(empty($id)){
$data .= ", user_id = '{$_SESSION['id']}' ";
$save = $this->db->query("INSERT INTO topics set ".$data);
}else{
$save = $this->db->query("UPDATE topics set ".$data." where id=".$id);
}
if($save)
return 1;
}
function delete_topic(){
extract($_POST);
$delete = $this->db->query("DELETE FROM topics where id = ".$id);
if($delete){
return 1;
}
}
function save_comment(){
extract($_POST);
$data = " comment = '".htmlentities(str_replace("'","’",$comment))."' ";
if(empty($id)){
$data .= ", topic_id = '$topic_id' ";
$data .= ", user_id = '{$_SESSION['id']}' ";
$save = $this->db->query("INSERT INTO comments set ".$data);
}else{
$save = $this->db->query("UPDATE comments set ".$data." where id=".$id);
}
if($save)
return 1;
}
function delete_comment(){
extract($_POST);
$delete = $this->db->query("DELETE FROM comments where id = ".$id);
if($delete){
return 1;
}
}
function save_reply(){
extract($_POST);
$data = " reply = '".htmlentities(str_replace("'","’",$reply))."' ";
if(empty($id)){
$data .= ", comment_id = '$comment_id' ";
$data .= ", user_id = '{$_SESSION['id']}' ";
$save = $this->db->query("INSERT INTO replies set ".$data);
}else{
$save = $this->db->query("UPDATE replies set ".$data." where id=".$id);
}
if($save)
return 1;
}
function delete_reply(){
extract($_POST);
$delete = $this->db->query("DELETE FROM replies where id = ".$id);
if($delete){
return 1;
}
}
function search(){
extract($_POST);
$data = array();
$tag = $this->db->query("SELECT * FROM categories order by name asc");
while($row= $tag->fetch_assoc()):
$tags[$row['id']] = $row['name'];
endwhile;
$ts = $this->db->query("SELECT * FROM categories where name like '%{$keyword}%' ");
$tsearch = '';
while($row= $ts->fetch_assoc()):
$tsearch .=" or concat('[',REPLACE(t.category_ids,',','],['),']') like '%[{$row['id']}]%' ";
endwhile;
// echo "SELECT t.*,u.name FROM topics t inner join users u on u.id = t.user_id where t.title LIKE '%{$keyword}%' or content LIKE '%{$keyword}%' $tsearch order by unix_timestamp(t.date_created) desc";
$topic = $this->db->query("SELECT t.*,m.name FROM topics t inner join member m on m.id = t.user_id where t.title LIKE '%{$keyword}%' or content LIKE '%{$keyword}%' $tsearch order by unix_timestamp(t.date_created) desc");
while($row= $topic->fetch_assoc()):
$trans = get_html_translation_table(HTML_ENTITIES,ENT_QUOTES);
unset($trans["\""], $trans["<"], $trans[">"], $trans["<h2"]);
$desc = strtr(html_entity_decode($row['content']),$trans);
$row['desc']=strip_tags(str_replace(array("<li>","</li>"), array("",","), $desc));
$row['view'] = $this->db->query("SELECT * FROM forum_views where topic_id=".$row['id'])->num_rows;
$row['comments'] = $this->db->query("SELECT * FROM comments where topic_id=".$row['id'])->num_rows;
$row['replies'] = $this->db->query("SELECT * FROM replies where comment_id in (SELECT id FROM comments where topic_id=".$row['id'].")")->num_rows;
$row['tags'] = array();
foreach(explode(",",$row['category_ids']) as $cat):
$row['tags'][]= $tags[$cat];
endforeach;
$row['created'] = date('M d, Y h:i A',strtotime($row['date_created']));
$row['posted'] = ucwords($row['name']);
$data[]= $row;
endwhile;
return json_encode($data);
}
}