-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.php
251 lines (205 loc) · 6.25 KB
/
database.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
<?php
function init_db(){
$server = 'localhost';
$username = 'root';
$password = 'password';
$database = 'ProjectHub';
$con=mysqli_connect($server, $username, $password);
mysqli_select_db($con, $database);
return $con;
}
function get_project_count($cat_id){
$con = init_db();
$sql = "SELECT id
FROM Project
WHERE category = '$cat_id'";
$result = mysqli_query($con, $sql);
if(!$result)
{
echo 'ERROR: ' . mysqli_error($con);
}
else
{
return mysqli_num_rows($result);
}
}
function get_comment_count($proj_id){
$con = init_db();
$sql = "SELECT id
FROM Comment
WHERE project = '$proj_id'
ORDER BY created_at";
$result = mysqli_query($con, $sql);
if(!$result)
{
echo 'ERROR: ' . mysqli_error($con);
}
else
{
return mysqli_num_rows($result);
}
}
function get_projects($para=array()){
$con = init_db();
$single = false;
$sql = "SELECT Project.id as project_id,
Project.created_at as created_at,
Project.title as title,
Project.video as video,
Project.thumbnail thumbnail,
Project.content as content,
Project.rating as rating,
Project.price as price,
User.id as user_id,
User.user_name as user_name,
User.bio as bio
FROM Project
INNER JOIN Category ON Project.category = Category.id
INNER JOIN User ON Project.author = User.id";
if (isset($para['category_id']) && !is_null($para['category_id']))
{
$sql .= " WHERE Project.category = " . mysqli_real_escape_string($con, $para['category_id']);
}
else if (isset($para['project_id']) && !is_null($para['project_id']))
{
$sql .= " WHERE Project.id = " . mysqli_real_escape_string($con, $para['project_id']);
$single = true;
}
$sql .= " ORDER BY created_at DESC ";
if (isset($para['limit']) && !is_null($para['limit'])){
$sql .= "LIMIT ".$para['limit'];
}
$result = mysqli_query($con, $sql);
if(!$result)
{
echo 'The topics could not be displayed, please try again later.' . mysqli_error($con);
}
else
{
$projects = array();
while($row = mysqli_fetch_assoc($result))
{
$row['created_at'] = date('d-m-Y', strtotime($row['created_at']));
$row['video_url'] = "https://www.youtube.com/watch?v=" . $row['video'];
$row['video_thumbnail'] = "https://img.youtube.com/vi/" . $row['video'] . "/hqdefault.jpg";
$projects[] = $row;
if($single)
return $row;
}
return $projects;
}
}
function get_recent_projects($cat_id=null){
$con = init_db();
$sql = "SELECT Project.id as project_id,
Project.created_at as created_at,
Project.title as title,
Project.video as video,
Project.thumbnail thumbnail,
Project.title as title,
Project.content as content,
Project.rating as rating,
User.id as user_id,
User.user_name as user_name,
User.bio as bio
FROM Project
INNER JOIN Category ON Project.category = Category.id
INNER JOIN User ON Project.author = User.id
ORDER BY Project.created_at DESC
LIMIT 5";
if (!is_null($cat_id))
$sql .= " WHERE category = '$cat_id'";
$result = mysqli_query($con, $sql);
if(!$result)
{
echo 'The topics could not be displayed, please try again later.' . mysqli_error($con);
}
else
{
$projects = array();
while($row = mysqli_fetch_assoc($result))
{
$row['created_at'] = date('d-m-Y', strtotime($row['created_at']));
$row['video_url'] = "https://www.youtube.com/watch?v=" . $row['video'];
$row['video_thumbnail'] = "https://img.youtube.com/vi/" . $row['video'] . "/hqdefault.jpg";
$projects[] = $row;
}
return $projects;
}
}
function get_category_list($cat_id=null){
$con = init_db();
$sql = "SELECT * FROM Category";
if (!is_null($cat_id))
$sql .= " WHERE id = '$cat_id'";
$result = mysqli_query($con, $sql);
if(!$result)
{
echo 'The topics could not be displayed, please try again later.' . mysqli_error($con);
}
else
{
if(mysqli_num_rows($result) == 0)
{
echo 'There are no topics in this category yet.';
}
else
{
$categories = array();
while($row = mysqli_fetch_assoc($result))
{
$categories[] = $row;
}
return $categories;
}
}
}
function get_comments($proj_id){
$con = init_db();
$sql = "SELECT Comment.content as content,
Comment.created_at as created_at,
User.user_name as username
FROM Comment
INNER JOIN Project ON Comment.project = Project.id
LEFT JOIN User ON Comment.user = User.id
WHERE Project.id = $proj_id";
$result = mysqli_query($con, $sql);
if(!$result)
{
echo 'The topics could not be displayed, please try again later.' . mysqli_error($con);
}
else
{
$categories = array();
while($row = mysqli_fetch_assoc($result))
{
$row['created_at'] = date('M d, Y', strtotime($row['created_at']));
$categories[] = $row;
}
return $categories;
}
}
function get_val($index)
{
if (isset($_SESSION[$index]))
return $_SESSION[$index];
else
return "";
}
if (isset($_GET['like']))
{
$con = init_db();
$sql = "SELECT rating
FROM Project
WHERE id = " . $_GET['like'];
$result = mysqli_query($con, $sql);
$orig_likes = mysqli_fetch_assoc($result)['rating'];
$orig_likes++;
$sql = "UPDATE Project
SET rating = " . $orig_likes . "
WHERE id = " . $_GET['like'];
$result = mysqli_query($con, $sql);
$referer = $_SERVER['HTTP_REFERER'];
header("Location: $referer");
}
?>