summaryrefslogtreecommitdiff
path: root/includes/functions_user.php
diff options
context:
space:
mode:
authorcflip <36554078+cflip@users.noreply.github.com>2021-06-05 11:18:10 -0600
committercflip <36554078+cflip@users.noreply.github.com>2021-06-05 11:18:10 -0600
commit24efe49bc2b545e3a3e46d7d6f2bd1166163e52b (patch)
treec1852447d06c062052def6fc89be2e2dece17c78 /includes/functions_user.php
parent45acfc48b3dd80b945a1501edea9ad4faa700c0f (diff)
Move object related functions into their classes.
Some of the pages are still broken from this commit, but I plan to either rewrite or ignore them.
Diffstat (limited to 'includes/functions_user.php')
-rw-r--r--includes/functions_user.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/includes/functions_user.php b/includes/functions_user.php
deleted file mode 100644
index 690350a..0000000
--- a/includes/functions_user.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-function username_exists(string $username): bool
-{
- $sql = "SELECT * FROM users WHERE user_name = ?;";
- $result = Database::get()->query($sql, "s", $username);
-
- return !empty($result);
-}
-
-function register_user(string $username, string $pass_hash)
-{
- $sql = "INSERT INTO users(user_name, user_pass, user_date, user_level) VALUES(?, ?, NOW(), 0);";
- Database::get()->query($sql, "ss", $username, $pass_hash);
-}
-
-function change_password(User $user, string $pass_hash)
-{
- if (!Session::get()->is_signed_in()) {
- trigger_error('You are not signed in.');
- return;
- }
-
- if (Session::get()->get_current_user()->id != $user->id) {
- trigger_error("You can't change another user's password.");
- return;
- }
-
- $sql = "UPDATE users SET user_pass = ? WHERE user_id = ?;";
- Database::get()->query($sql, "si", $pass_hash, $user->id);
-} \ No newline at end of file