-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
270 lines (228 loc) · 6.41 KB
/
functions.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
<?php
function get_clean_form_data($key)
{
return clean_user_data(post_data($key));
}
function clean_user_data($data)
{
$data = trim($data);
$data = stripslashes($data);
return htmlspecialchars($data);
}
function get_array_value($haystack, $key, $default = '')
{
return (isset($haystack[$key])) ? $haystack[$key] : $default;
}
function render_validation_errors($haystack)
{
if ($haystack) { ?>
<div class="alert-danger alert">
<?php
foreach ($haystack as $field => $errors) {
foreach ($errors as $error) {
$name = str_replace("_", " ", $field);
$name = strtoupper($name);
?>
<span class="help-block"><?= $name . ": " . $error ?></span>
<?php }
} ?>
</div>
<?php
}
}
function is_valid_email($email)
{
return filter_var($email, FILTER_VALIDATE_EMAIL);
}
function redirect($page)
{
header("Location:" . path($page), TRUE, 301);
// Stop rendering the rest of the pagesss
exit();
}
function is_post()
{
return $_SERVER["REQUEST_METHOD"] == "POST";
}
function is_get()
{
return $_SERVER["REQUEST_METHOD"] == "GET";
}
function post_data($key)
{
return get_array_value($_POST, $key);
}
function get_data($key)
{
return get_array_value($_GET, $key);
}
function is_authenticated()
{
return isset($_SESSION['user']);
}
function logout()
{
unset($_SESSION['cart']);
unset($_SESSION['roles']);
unset($_SESSION['user']);
session_destroy();
}
function get_session_data($key, $default = "")
{
return get_array_value($_SESSION, $key, $default);
}
function is_base()
{
$querystring = explode("?", $_SERVER['REQUEST_URI']);
$urls = $querystring[0];
if (substr($urls, strlen($urls) - 1) === "/") {
$urls = rtrim($urls, "/");
}
return $_SERVER['SCRIPT_NAME'] === $urls || !$urls;
}
function render_content($default = "default.php")
{
$querystring = explode("?", $_SERVER['REQUEST_URI']);
$urls = $querystring[0];
$page = str_replace($_SERVER['SCRIPT_NAME'] . "/", "", $urls);
if (substr($page, strlen($page) - 1) === "/") {
return;
}
require sprintf("%s/%s", UI_DIR, $page);
}
function path($url, $params = [])
{
$querystring = [];
foreach ($params as $key => $param) {
$querystring[] = $key . "=" . $param;
}
if ($querystring) {
$querystring = implode("&", $querystring);
$querystring = "?" . $querystring;
} else {
$querystring = "";
}
return sprintf("%s/%s%s", $_SERVER['SCRIPT_NAME'], $url, $querystring);
}
function secured_page()
{
if (false === is_authenticated()) {
redirect('login');
}
}
function has_role($role)
{
return in_array($role, get_session_data("roles", []));
}
function load_init_data($status = false)
{
if ($status) {
foreach ([ROLE_ADMIN, ROLE_SUPPLIER, ROLE_CUSTOMER] as $role) {
$stmt = Database::get_connection()->prepare("insert into role(name)VALUES(:name)");
$stmt->bindParam(':name', $role);
$stmt->execute();
}
$name = "admin";
$email = "admin@admin.com";
$stmt = Database::get_connection()->prepare("insert into user(email, first_name, last_name, password) " .
"VALUES(:email, :fname, :lname, :password)");
$stmt->bindParam(':fname', $name);
$stmt->bindParam(':lname', $name);
$stmt->bindParam(':email', $email);
$stmt->bindParam(':password', md5($name));
$stmt->execute();
$id = 1;
$stmt = Database::get_connection()
->prepare("insert into user_role (user_id,role_id) values(:user_id, :role_id)");
$stmt->bindParam(':role_id', $id);
$stmt->bindParam(':user_id', $id);
$stmt->execute();
$id = 2;
$i = 2;
foreach (["sup" => "sup@sup.com", "sup2" => "sup2@sup.com"] as $name => $email) {
$stmt = Database::get_connection()->prepare("insert into user(email, first_name, last_name, password) " .
"VALUES(:email, :fname, :lname, :password)");
$stmt->bindParam(':fname', $name);
$stmt->bindParam(':lname', $name);
$stmt->bindParam(':email', $email);
$stmt->bindParam(':password', md5($name));
$stmt->execute();
$stmt = Database::get_connection()
->prepare("insert into user_role (user_id,role_id) values(:user_id, :role_id)");
$stmt->bindParam(':role_id', $id);
$stmt->bindParam(':user_id', $i);
$stmt->execute();
$i++;
}
}
}
function pretty_dump($array)
{
echo "<pre>";
print_r($array);
echo "</pre>";
}
function get_cart()
{
if (!isset($_SESSION['cart'])) {
$_SESSION['cart']['total_amount'] = 0;
$_SESSION['cart']['item_count'] = 0;
$_SESSION['cart']['items'] = [];
}
return $_SESSION['cart'];
}
function clear_cart()
{
unset($_SESSION['cart']);
}
function set_cart($data)
{
return $_SESSION['cart'] = $data;
}
function get_clean_form_image($name, &$errors)
{
return upload($name, $errors);
}
function upload($name, &$errors)
{
if ($_FILES[$name]['error'] > 0) {
$errors[$name][] = 'An error ocurred when uploading.';
return '';
}
if ($_FILES[$name]['size'] > 500000) {
$errors[$name][] = 'File uploaded exceeds maximum upload size.';
return '';
}
$ext = pathinfo($_FILES[$name]['name'], PATHINFO_EXTENSION);
$newfilename = substr(md5(mt_rand()), 0, 7) . "." . $ext;
$path = 'upload/' . $newfilename;
if (file_exists($path)) {
$errors[$name][] = 'File with that name already exists.';
return '';
}
if (!move_uploaded_file($_FILES[$name]['tmp_name'], $path)) {
$errors[$name][] = 'Error uploading file - check destination is writeable.';
return '';
}
return $path;
}
function asset($asset)
{
$base = BASE_DIR;
$d = explode("/", $_SERVER['DOCUMENT_ROOT']);
if (BASE_DIR === end($d)) {
$base = '';
} else {
$base = '/' . $base;
}
return sprintf("%s/%s", $base, $asset);
}
function base_url()
{
if (isset($_SERVER['HTTPS'])) {
$protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
} else {
$protocol = 'http';
}
return $protocol . "://" . $_SERVER['HTTP_HOST'];
}