forked from Hostname47/PHP-CHAT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
396 lines (361 loc) · 19 KB
/
settings.php
File metadata and controls
396 lines (361 loc) · 19 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
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
<?php
require_once "vendor/autoload.php";
require_once "core/init.php";
use classes\{DB, Validation, Common, Session, Token, Redirect, Hash};
error_reporting();
// DONT'T FORGET $user OBJECT IS DECLARED WITHIN INIT.PHP (REALLY IMPORTANT TO SEE TO SEE [IMPORTANT#4]
// Here we check if the user is not logged in and we redirect him to login page
if(!$user->getPropertyValue("isLoggedIn")) {
Redirect::to("login/login.php");
}
$welcomeMessage = '';
if(Session::exists("register_success") && $user->getPropertyValue("username") == Session::get("new_username")) {
$welcomeMessage = Session::flash("new_username") . ", " . Session::flash("register_success");
}
$profile_selected = 'selected-button';
$fullname = $user->getPropertyValue("firstname") . " " . $user->getPropertyValue("lastname");
$username = $user->getPropertyValue("username");
$bio = $user->getPropertyValue("bio");
$picture = $root . (empty($user->getPropertyValue("picture")) ? "public/assets/images/logos/logo512.png" : $user->getPropertyValue("picture"));
$cover = $root . $user->getPropertyValue("cover");
$profile = $root . "profile.php?username=" . $user->getPropertyValue("username");
$private = $user->getPropertyValue("private");
$user_metadata = array(
array(
"label"=>"",
"content"=>""
),
array(
"label"=>"",
"content"=>""
),
array(
"label"=>"",
"content"=>""
),
array(
"label"=>"",
"content"=>""
),
array(
"label"=>"",
"content"=>""
),
array(
"label"=>"",
"content"=>""
),
);
$metadata = $user->get_metadata();
$count = 0;
foreach($metadata as $mdata) {
$user_metadata[$count]["label"] = $mdata->label;
$user_metadata[$count]["content"] = $mdata->content;
$count++;
}
include_once 'functions/sanitize_text.php';
if(isset($_POST["save-changes"])) {
if(Token::check(Common::getInput($_POST, "token_save_changes"), "saveEdits")) {
// Think to add middle name
// First we get the new first and last names
$fn = sanitize_text($_POST["full-name"]);
$fn = explode(" ", $fn);
if(count($fn) > 1) {
$new_firstname = $fn[0];
/* IF you add middle name, first name will take the first one, middle the second one, and then lastname will take all the remaining
$middlename = $fullname[1]; please add middle name .. o.- lol
*/
$new_lastname = $fn[1];
} else {
$new_firstname = $fn[0];
$new_lastname = "";
}
$new_bio = sanitize_text($_POST["bio"]);
$new_username = sanitize_text($_POST["username"]);
$new_private = is_numeric($_POST["private"])
&& ($_POST["private"] == '1' || $_POST["private"] == '-1')
? $_POST["private"]
: $user->getPropertyValue("private");
$validator = new Validation();
// Validate bio
$validator->check($_POST, array(
"bio"=>array(
"name"=>"Bio",
"max"=>799
)
));
if($new_username != $username) {
$validator->check($_POST, array(
"username"=>array(
"name"=>"Username",
"required"=>true,
"unique"=>true,
"max"=>255,
"min"=>6,
)
));
}
if(file_exists($_FILES['cover']['tmp_name']) && is_uploaded_file($_FILES['cover']['tmp_name'])) {
$validator->check($_FILES, array(
"cover"=>array(
"name"=>"Cover",
"image"=>"image"
)
));
}
if(file_exists($_FILES['avatar']['tmp_name']) && is_uploaded_file($_FILES['avatar']['tmp_name'])) {
$validator->check($_FILES, array(
"avatar"=>array(
"name"=>"Avatar",
"image"=>"image"
)
));
}
if($validator->passed()) {
$user->setPropertyValue("username", $new_username);
$user->setPropertyValue("firstname", $new_firstname);
$user->setPropertyValue("lastname", $new_lastname);
$user->setPropertyValue("bio", $new_bio);
$user->setPropertyValue("private", $new_private);
/*
IMPORTANT: notice when we change the username in th database we need also to change it in data folder where the user
images and posts and covers are stored so after storing the assets and change the database we have to change the folder
name as well !!!
IMPORTANT: If the user change the cover or picture or both but not username, we don't have to rename the directory !
Notice here, if the user has already a picture, its path is stored with the older username, so we use $username not $new_username
*/
$profilePicturesDir = 'data/users/' . $username . "/media/pictures/";
$coversDir = 'data/users/' . $username . "/media/covers/";
// Here we check if the user change the cover again; if so it is valide because we already check it using validator
if(file_exists($_FILES['cover']['tmp_name']) && is_uploaded_file($_FILES['cover']['tmp_name'])) {
// we generate a unique hash to name the image
$generatedName = Hash::unique();
$generatedName = trim(htmlspecialchars($generatedName));
// Then we fetch the image type t o concatenate it with the generated name
$file = $_FILES["cover"]["name"];
$original_extension = (false === $pos = strrpos($file, '.')) ? '' : substr($file, $pos);
$targetFile = $coversDir . $generatedName . $original_extension;
if (move_uploaded_file($_FILES["cover"]["tmp_name"], $targetFile)) {
/*
Here we don't have to store the path with the older username, but we need to change the username in the path
to the new username so that we can access it later successfully, otherwise we'll get errors while fetcheing
Notice we'll change the folder name just after moving the image to the folder
*/
$new_target = 'data/users/' . $new_username . "/media/covers/" . $generatedName . $original_extension;
$user->setPropertyValue("cover", $new_target);
} else {
$validator->addError("Sorry, there was an error while uploading your cover picture.");
}
}
if(file_exists($_FILES['avatar']['tmp_name']) && is_uploaded_file($_FILES['avatar']['tmp_name'])) {
// we generate a unique hash to name the image
$generatedName = Hash::unique();
$generatedName = trim(htmlspecialchars($generatedName));
// Then we fetch the image type t o concatenate it with the generated name
$file = $_FILES["avatar"]["name"];
$original_extension = (false === $pos = strrpos($file, '.')) ? '' : substr($file, $pos);
$targetFile = $profilePicturesDir . $generatedName . $original_extension;
if (move_uploaded_file($_FILES["avatar"]["tmp_name"], $targetFile)) {
/*
Here we don't have to store the path with the older username, but we need to change the username in the path
to the new username so that we can access it later successfully, otherwise we'll get errors while fetcheing
Notice we'll change the folder name just after moving the image to the folder
*/
$new_target = 'data/users/' . $new_username . "/media/pictures/" . $generatedName . $original_extension;
$user->setPropertyValue("picture", $new_target);
} else {
$validator->addError("Sorry, there was an error while uploading your avatar picture.");
}
}
if($new_username != $username) {
// Here we need to give recursive function the directory of the data folder
$old_user_data_dir = __DIR__ . '/data/users/' . $username;
$new_user_data_dir = __DIR__ . '/data/users/' . $new_username;
recurse_copy($old_user_data_dir, $new_user_data_dir);
deleteDir($old_user_data_dir);
$user->setPropertyValue("username", $new_username);
}
// Get the new version labels along with their contents
$new_user_metadata = array(
array(
"label"=>sanitize_text($_POST["label1"]),
"content"=>sanitize_text($_POST["content1"])
),
array(
"label"=>sanitize_text($_POST["label2"]),
"content"=>sanitize_text($_POST["content2"])
),
array(
"label"=>sanitize_text($_POST["label3"]),
"content"=>sanitize_text($_POST["content3"])
),
array(
"label"=>sanitize_text($_POST["label4"]),
"content"=>sanitize_text($_POST["content4"])
),
array(
"label"=>sanitize_text($_POST["label5"]),
"content"=>sanitize_text($_POST["content5"])
),
array(
"label"=>sanitize_text($_POST["label6"]),
"content"=>sanitize_text($_POST["content6"])
),
);
$user->set_metadata($new_user_metadata);
$user->update();
$fullname = $new_firstname . (empty($new_lastname) ? "" : " " . $new_lastname);
$username = $new_username;
$bio = $new_bio;
$picture = $root . $user->getPropertyValue("picture");
$cover = $root . $user->getPropertyValue("cover");
$profile = $root . "profile.php?username=" . $new_username;
$private = $new_private;
$user_metadata = $new_user_metadata;
} else {
foreach($validator->errors() as $error) {
echo $error . "<br>";
}
}
}
}
function deleteDir($dirPath) {
if (! is_dir($dirPath)) {
throw new InvalidArgumentException("$dirPath must be a directory");
}
if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
$dirPath .= '/';
}
$files = glob($dirPath . '*', GLOB_MARK);
foreach ($files as $file) {
if (is_dir($file)) {
deleteDir($file);
} else {
unlink($file);
}
}
rmdir($dirPath);
}
function recurse_copy($src,$dst) {
$dir = opendir($src);
@mkdir($dst);
while(false !== ( $file = readdir($dir)) ) {
if (( $file != '.' ) && ( $file != '..' )) {
if ( is_dir($src . '/' . $file) ) {
recurse_copy($src . '/' . $file,$dst . '/' . $file);
}
else {
copy($src . '/' . $file,$dst . '/' . $file);
}
}
}
closedir($dir);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>V01D47</title>
<link rel='shortcut icon' type='image/x-icon' href='public/assets/images/favicons/favicon.ico' />
<link rel="stylesheet" href="public/css/global.css">
<link rel="stylesheet" href="public/css/settings.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="public/javascript/config.js" defer></script>
<script src="public/javascript/settings.js" defer></script>
</head>
<body>
<main>
<?php require_once "page_parts/settings/left-panel.php" ?>
<div id="global-container">
<div id="setting-master-container">
<h1 class="no-margin">Edit profile</h1>
<div class="setting-block-line-separator"></div>
<div>
<div class="flex-column">
<label for="username" class="setting-label1">Username</label>
<input type="text" form="save-form" class="setting-input-text-style" value="<?php echo $username; ?>" name="username" id="username">
</div>
<div class="flex-column">
<label for="fullname" class="setting-label1">Display name</label>
<input type="text" form="save-form" class="setting-input-text-style" value="<?php echo $fullname; ?>" name="full-name" id="fullname">
</div>
<div class="flex-column">
<label for="bio" class="setting-label1">Bio</label>
<textarea form="save-form" spellcheck="false" name="bio" id="bio" class="setting-input-text-style textarea-style"><?php echo $bio; ?></textarea>
</div>
<div id="profile-asset-wrapper" class="flex">
<a href="<?php echo $profile; ?>" id="assets-wrapper">
<div id="setting-cover-container">
<img src="<?php echo $cover; ?>" class="setting-cover" alt="">
</div>
<div class="flex padding16">
<div id="setting-picture-container" style="margin-right: 10px">
<img src="<?php echo $picture; ?>" alt="avatar" id="setting-picture">
</div>
<div>
<h3 class="no-margin"><?php echo $fullname; ?></h3>
<p class="no-margin">@<?php echo $username; ?></p>
</div>
</div>
</a>
<div id="setting-file-inputs-container">
<div>
<label for="cover-input" class="setting-label" style="font-size: 16px; margin-bottom: 5px">Cover</label>
<input type="file" form="save-form" name="cover" class="block" id="cover-input">
<p class="no-margin input-hint">PNG, JPG, JPEG, or GIF. At most 2 MB. Will be downscaled to 1500x500px</p>
</div>
<div style="margin-top: 10px">
<label for="avatar-input" class="setting-label" style="font-size: 16px; margin-bottom: 5px">Avatar</label>
<input type="file" form="save-form" name="avatar" class="block" id="avatar-input">
<p class="no-margin input-hint">PNG, JPG, JPEG, or GIF. At most 5 MB. Will be downscaled to 400x400px</p>
</div>
<div style="margin-top: 10px">
<label for="avatar-input" class="setting-label" style="font-size: 16px; margin-bottom: 5px">Private account</label>
<div class="flex">
<div class="toggle-button-style-2" id="private-account-button"></div>
<div id="private-account-status">(OFF)</div>
</div>
<input name="private" form="save-form" value="<?php echo $private; ?>" id="private-account-state" type="hidden">
</div>
</div>
</div>
<div style="margin-top: 26px">
<label for="fullname" class="setting-label1">Profile metadata</label>
<p class="input-hint">You can have up to 6 items displayed as a table on your profile</p>
<div class="flex">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[0]["label"] ?>" placeholder="Label" name="label1" id="label1">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[0]["content"] ?>" placeholder="Content" name="content1" id="content1">
</div>
<div class="flex">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[1]["label"] ?>" placeholder="Label" name="label2" id="label2">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[1]["content"] ?>" placeholder="Content" name="content2" id="content2">
</div>
<div class="flex">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[2]["label"] ?>" placeholder="Label" name="label3" id="label3">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[2]["content"] ?>" placeholder="Content" name="content3" id="content3">
</div>
<div class="flex">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[3]["label"] ?>" placeholder="Label" name="label4" id="label4">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[3]["content"] ?>" placeholder="Content" name="content4" id="content4">
</div>
<div class="flex">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[4]["label"] ?>" placeholder="Label" name="label5" id="label5">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[4]["content"] ?>" placeholder="Content" name="content5" id="content5">
</div>
<div class="flex">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[5]["label"] ?>" placeholder="Label" name="label6" id="label6">
<input type="text" form="save-form" class="setting-input-text-style meta-data-input" value="<?php echo $user_metadata[5]["content"] ?>" placeholder="Content" name="content6" id="content6">
</div>
</div>
<form action="" method="POST" id="save-form" enctype="multipart/form-data">
<input type="hidden" name="token_save_changes" value="<?php echo Token::generate("saveEdits"); ?>">
<input type="submit" value="SAVE CHANGES" name="save-changes" id="save-button">
</form>
</div>
</div>
</div>
</main>
</body>
</html>