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
|
<?php
include_once "../../src/alert.php";
include "../../src/accounts.php";
include "../../src/partials.php";
include_once "../../src/config.php";
include_once "../../src/utils.php";
include_once "../../src/images.php";
authorize_user();
if (!isset($_SESSION["user_id"], $_SESSION["user_name"])) {
header("Location: /account/login");
exit;
}
$db = new PDO(DB_URL, DB_USER, DB_PASS);
if ($_SERVER['REQUEST_METHOD'] == "POST") {
$username = str_safe($_POST["username"] ?? "", ACCOUNT_USERNAME_LENGTH[1]);
if (!empty($username) && $username != $_SESSION["user_name"]) {
if (!preg_match(ACCOUNT_USERNAME_REGEX, $username)) {
generate_alert("/account", "Bad username");
exit;
}
$stmt = $db->prepare("SELECT id FROM users WHERE username = ?");
$stmt->execute([$username]);
if ($stmt->rowCount() == 0) {
$stmt = $db->prepare("UPDATE users SET username = ? WHERE id = ?");
$stmt->execute([$username, $_SESSION["user_id"]]);
} else {
generate_alert("/account", "The username has already taken");
exit;
}
}
if (isset($_FILES["pfp"]) && !empty($_FILES["pfp"]["tmp_name"])) {
$pfp = $_FILES["pfp"];
if (!is_dir("../static/userdata/avatars")) {
mkdir("../static/userdata/avatars", 0777, true);
}
if (
$err = resize_image(
$pfp["tmp_name"],
$_SERVER["DOCUMENT_ROOT"] . "/static/userdata/avatars/" . $_SESSION["user_id"],
ACCOUNT_PFP_MAX_SIZE[0],
ACCOUNT_PFP_MAX_SIZE[1],
false,
true
)
) {
generate_alert("/account", sprintf("Error occurred while processing the profile picture (%d)", $err));
exit;
}
}
if (isset($_FILES["banner"]) && !empty($_FILES["banner"]["tmp_name"])) {
$banner = $_FILES["banner"];
if (!is_dir("../static/userdata/banners")) {
mkdir("../static/userdata/banners", 0777, true);
}
if (
$err = resize_image(
$banner["tmp_name"],
$_SERVER["DOCUMENT_ROOT"] . "/static/userdata/banners/" . $_SESSION["user_id"],
ACCOUNT_BANNER_MAX_SIZE[0],
ACCOUNT_BANNER_MAX_SIZE[1],
false,
true
)
) {
generate_alert("/account", sprintf("Error occurred while processing the profile banner (%d)", $err));
exit;
}
}
$db = null;
generate_alert("/account", "Your changes have been applied!", 200);
exit;
}
?>
<html>
<head>
<title>Account management - <?php echo INSTANCE_NAME ?></title>
<link rel="stylesheet" href="/static/style.css">
<link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="wrapper">
<?php html_navigation_bar() ?>
<section class="content">
<?php display_alert() ?>
<section class="box accman">
<h1>Account management</h1>
<form action="/account" method="POST" enctype="multipart/form-data">
<h2>Profile</h2>
<h3>Profile picture</h3>
<?php
if (is_file("../static/userdata/avatars/" . $_SESSION["user_id"])) {
echo '<img src="/static/userdata/avatars/' . $_SESSION["user_id"] . '" id="pfp" width="64" height="64">';
} else {
echo "<p>You don't have profile picture</p>";
}
?>
<input type="file" name="pfp">
<h3>Profile banner</h3>
<?php
if (is_file("../static/userdata/banners/" . $_SESSION["user_id"])) {
echo '<img src="/static/userdata/banners/' . $_SESSION["user_id"] . '" id="banner" width="192" height="108">';
} else {
echo "<p>You don't have profile banner</p>";
}
?>
<input type="file" name="banner">
<h3>Username</h3>
<input type="text" name="username" id="username" value="<?php echo $_SESSION["user_name"] ?>">
<button type="submit">Save</button>
</form>
<hr>
<form action="/account/security.php" method="post">
<h2>Security & Privacy</h2>
<div>
<label for="password-current">Current password:</label>
<input type="password" name="password-current" id="form-password-current">
<label for="password-new">New password:</label>
<input type="password" name="password-new" id="form-password-new">
</div>
<div>
<input type="checkbox" name="hide-actions" value="1" id="form-hide-actions" <?php
$stmt = $db->prepare("SELECT hide_actions FROM user_preferences WHERE id = ?");
$stmt->execute([$_SESSION["user_id"]]);
if (intval($stmt->fetch()[0]) == 1) {
echo 'checked';
}
?>>
<label for="hide-actions" class="inline">Hide actions</label>
</div>
<div>
<input type="checkbox" name="signout-everywhere" value="1" id="form-signout-everywhere">
<label for="signout-everywhere" class="inline">Sign out everywhere</label>
</div>
<button type="submit">Apply</button>
</form>
<form action="/account/delete.php">
<button class="red" type="submit">Delete me</button>
</form>
</section>
</section>
</div>
</div>
</body>
<script>
const username = document.getElementById("username");
let validUsername = "";
username.addEventListener("input", (e) => {
const regex = <?php echo ACCOUNT_USERNAME_REGEX ?>;
if (regex.test(e.target.value) && e.target.value.length <= <?php echo ACCOUNT_USERNAME_LENGTH[1] ?>) {
validUsername = e.target.value;
} else {
e.target.value = validUsername;
}
});
</script>
</html>
|