-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.php
More file actions
149 lines (148 loc) · 5.21 KB
/
Copy pathindex.php
File metadata and controls
149 lines (148 loc) · 5.21 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
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
<?php
include 'config.php';
include 'functions.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
if (!isset($_GET['token']) || $_GET['token'] === null) {
// Not authenticated
$error['status'] = '401';
$error['description'] = ' Unauthorized';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(401);
exit();
}
// Authenticated
$token = $mysqli->real_escape_string($_GET['token']);
$sql = "SELECT * FROM tokens WHERE token = '$token'";
if (!$result = $mysqli->query($sql)) {
if ($debug) {
echo "Error: Our query failed to execute and here is why: \n";
echo 'Query: '.$sql."\n";
echo 'Errno: '.$mysqli->errno."\n";
echo 'Error: '.$mysqli->error."\n";
exit();
} else {
$error['status'] = '500';
$error['description'] = ' Internal Server Error';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(500);
exit();
}
}
if ($result->num_rows === 0) {
$error['status'] = '401';
$error['description'] = ' Unauthorized';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(401);
exit();
}
$token = $result->fetch_assoc();
if (!isset($_POST['activityType']) || !isset($_POST['activityTitle']) || !isset($_POST['activityIP']) || !isset($_POST['activityUserAgent'])) {
$error['status'] = '400';
$error['description'] = ' Bad Request';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(400);
exit();
}
$activityType = $mysqli->real_escape_string($_POST['activityType']);
$activityTitle = $mysqli->real_escape_string($_POST['activityTitle']);
$activityIP = $mysqli->real_escape_string($_POST['activityIP']);
$activityUserAgent = $mysqli->real_escape_string($_POST['activityUserAgent']);
updateActivity($activityType, $activityTitle, $token['Website'], $activityIP, $activityUserAgent);
} elseif ($_SERVER['REQUEST_METHOD'] === 'GET') {
if (!isset($_GET['token']) || $_GET['token'] === null) {
// Not authenticated
$error['status'] = '401';
$error['description'] = ' Unauthorized';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(401);
exit();
}
// Authenticated
$token = $mysqli->real_escape_string($_GET['token']);
$sql = "SELECT * FROM tokens WHERE token = '$token'";
if (!$result = $mysqli->query($sql)) {
if ($debug) {
echo "Error: Our query failed to execute and here is why: \n";
echo 'Query: '.$sql."\n";
echo 'Errno: '.$mysqli->errno."\n";
echo 'Error: '.$mysqli->error."\n";
exit();
} else {
$error['status'] = '500';
$error['description'] = ' Internal Server Error';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(500);
exit();
}
}
if ($result->num_rows === 0) {
$error['status'] = '401';
$error['description'] = ' Unauthorized';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(401);
exit();
}
$token = $result->fetch_assoc();
/*if (!isset($_GET['l'])) {
$limitnum = 50;
$startnum = 1;
} elseif (!fmod($_GET['l'], 50) == 0) {
$error['status'] = '400';
$error['description'] = ' Bad Request';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(400);
exit();
} else {
if ($_GET['l'] == 50) {
$limitnum = 50;
$startnum = 1;
} else {
$limitnum = $mysqli->real_escape_string($_GET['l']);
$startnum = $limitnum - 50;
}
}
*/
$sql = 'SELECT * FROM activity';
if (!$result = $mysqli->query($sql)) {
if ($debug) {
echo "Error: Our query failed to execute and here is why: \n";
echo 'Query: '.$sql."\n";
echo 'Errno: '.$mysqli->errno."\n";
echo 'Error: '.$mysqli->error."\n";
exit();
} else {
$error['status'] = '500';
$error['description'] = ' Internal Server Error';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(500);
exit();
}
}
if ($result->num_rows === 0) {
$error['status'] = '404';
$error['description'] = ' Not found';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(404);
exit();
}
$activity = $result->fetch_assoc();
header('Content-Type: application/json');
echo json_encode($activity);
} else {
$error['status'] = '405';
$error['description'] = ' Method Not Allowed';
header('Content-Type: application/json');
echo json_encode($error);
http_response_code(405);
exit();
}