]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - plugins/sql_auth/SQL/user.php
Large cosmetics update
[irc/unrealircd/unrealircd-webpanel.git] / plugins / sql_auth / SQL / user.php
index a05abb7b0cbf1c0332ed95244387bc423d8f046f..fbdd2faaee745104724bc6b0af9ae091fd8db10d 100644 (file)
 <?php
 
+define('SQLPERM_MANAGE_USERS', 'manage_users'); /** Relating to Panel Access: Can add, delete and edit users. Big boss. */
+define('SQLPERM_BAN_USERS', 'ban_users'); /** Relating to Users tab: Can ban users connected to IRC */
+define('SQLPERM_EDIT_USER', 'edit_user'); /** Change properties of a user, i.e. vhost, modes and more */
+define('SQLPERM_EDIT_CHANNEL', 'edit_channel'); /** Change properties of a channel, i.e. topic, modes and more */
+define('SQLPERM_EDIT_CHANNEL_USER', 'edit_channel_user'); /** Change properties of a user on a channel i.e give/remove voice or ops and more */
+define('SQLPERM_SERVER_BAN_ADD', 'tkl_add'); /** Can add manual bans, including G-Lines, Z-Lines and more */
+define('SQLPERM_SERVER_BAN_DEL', 'tkl_del'); /** Can remove set bans, including G-Lines, Z-Lines and more */
+define('SQLPERM_NAME_BAN_ADD', 'nb_add'); /** Can add Name Bans (Q-Lines) */
+define('SQLPERM_NAME_BAN_DEL', 'nb_del'); /** Can delete Name Bans (Q-Lines) */
+define('SQLPERM_BAN_EXCEPTION_ADD', 'be_add'); /** Can add ban exceptions (E-Lines) */
+define('SQLPERM_BAN_EXCEPTION_DEL', 'be_del'); /** Can delete ban exceptions (E-Lines) */
+define('SQLPERM_SPAMFILTER_ADD', 'sf_add'); /** Can add spamfilter entries */
+define('SQLPERM_SPAMFILTER_DEL', 'sf_del'); /** Can delete spamfilter entries */
 /**
  * SQLA_User
  * This is the User class for the SQL_Auth plugin
  */
 class SQLA_User
 {
-    public $id = NULL;
-    public $username = NULL;
-    private $passhash = NULL;
-    public $first_name = NULL;
-    public $last_name = NULL;
-    public $created = NULL;
-    public $user_meta = [];
-    public $bio = NULL;
-
-    /**
-     * Find a user in the database by name or ID
-     * @param string $name
-     * @param mixed $id
-     */
-    function __construct(string $name = NULL, int $id = NULL)
-    {
-        $conn = sqlnew();
-
-        if ($id)
-        {
-            $prep = $conn->prepare("SELECT * FROM " . SQL_PREFIX . "users WHERE user_id = :id LIMIT 1");
-            $prep->execute(["id" => strtolower($id)]);
-        }
-        elseif ($name)
-        {
-            $prep = $conn->prepare("SELECT * FROM " . SQL_PREFIX . "users WHERE LOWER(user_name) = :name LIMIT 1");
-            $prep->execute(["name" => strtolower($name)]);
-        }
-        $data = NULL;
-        if ($prep)
-            $data = $prep->fetchAll();
-        if (isset($data[0]) && $data = $data[0])
-        {
-            $this->id = $data['user_id'];
-            $this->username = $data['user_name'];
-            $this->passhash = $data['user_pass'];
-            $this->first_name = $data['user_fname'] ?? NULL;
-            $this->last_name = $data['user_lname'] ?? NULL;
-            $this->created = $data['created'];
-            $this->bio = $data['user_bio'];
-            $this->user_meta = (new SQLA_User_Meta($this->id))->list;
-        }
-    }
-
-    /**
-     * Verify a user's password
-     * @param string $input
-     * @return bool
-     */
-    function password_verify(string $input) : bool
-    {
-        if (password_verify($input, $this->passhash))
-            return true;
-        return false;
-    }
-
-    /**
-     * Add user meta data
-     * @param string $key
-     * @param string $value
-     * @return bool
-     */
-    function add_meta(string $key, string $value)
-    {
-        if (!$key || !$value)
-            return false;
-
-        $meta = [
-            "id" => $this->id,
-            "key" => $key,
-            "value" => $value
-        ];
-        
-        $conn = sqlnew();
-
-        /* check if it exists first, update it if it does */
-        $query = "SELECT * FROM " . SQL_PREFIX . "user_meta WHERE user_id = :id AND meta_key = :key";
-        $stmt = $conn->prepare($query);
-        $stmt->execute(["id" => $this->id, "key" => $key]);
-        if ($stmt->rowCount()) // it exists, update instead of insert
-        {
-            $query = "UPDATE " . SQL_PREFIX . "user_meta SET meta_value = :value WHERE user_id = :id AND meta_key = :key";
-            $stmt = $conn->prepare($query);
-            $stmt->execute($meta);
-            if ($stmt->rowCount())
-                return true;
-            return false;
-        }
-
-        else
-        {
-            $query = "INSERT INTO " . SQL_PREFIX . "user_meta (user_id, meta_key, meta_value) VALUES (:id, :key, :value)";
-            $stmt = $conn->prepare($query);
-            $stmt->execute($meta);
-            if ($stmt->rowCount())
-                return true;
-            return false;
-        }
-    }
-
-    /**
-     * Delete user meta data by key
-     * @param string $key
-     * @return bool
-     */
-    function delete_meta(string $key)
-    {
-        if (!$key )
-            return false;
-
-        $meta = [
-            "id" => $this->id,
-            "key" => $key,
-        ];
-        
-        $conn = sqlnew();
-        $query = "DELETE FROM " . SQL_PREFIX . "user_meta WHERE user_id = :id AND  meta_key = :key";
-        $stmt = $conn->prepare($query);
-        $stmt->execute($meta);
-        if ($stmt->rowCount())
-            return true;
-        return false;
-
-    }
+       public $id = NULL;
+       public $username = NULL;
+       private $passhash = NULL;
+       public $first_name = NULL;
+       public $last_name = NULL;
+       public $created = NULL;
+       public $user_meta = [];
+       public $bio = NULL;
+
+       /**
+        * Find a user in the database by name or ID
+        * @param string $name
+        * @param mixed $id
+        */
+       function __construct(string $name = NULL, int $id = NULL)
+       {
+               $conn = sqlnew();
+
+               if ($id)
+               {
+                       $prep = $conn->prepare("SELECT * FROM " . SQL_PREFIX . "users WHERE user_id = :id LIMIT 1");
+                       $prep->execute(["id" => strtolower($id)]);
+               }
+               elseif ($name)
+               {
+                       $prep = $conn->prepare("SELECT * FROM " . SQL_PREFIX . "users WHERE LOWER(user_name) = :name LIMIT 1");
+                       $prep->execute(["name" => strtolower($name)]);
+               }
+               $data = NULL;
+               if ($prep)
+                       $data = $prep->fetchAll();
+               if (isset($data[0]) && $data = $data[0])
+               {
+                       $this->id = $data['user_id'];
+                       $this->username = $data['user_name'];
+                       $this->passhash = $data['user_pass'];
+                       $this->first_name = $data['user_fname'] ?? NULL;
+                       $this->last_name = $data['user_lname'] ?? NULL;
+                       $this->created = $data['created'];
+                       $this->bio = $data['user_bio'];
+                       $this->user_meta = (new SQLA_User_Meta($this->id))->list;
+               }
+       }
+
+       /**
+        * Verify a user's password
+        * @param string $input
+        * @return bool
+        */
+       function password_verify(string $input) : bool
+       {
+               if (password_verify($input, $this->passhash))
+                       return true;
+               return false;
+       }
+
+       /**
+        * Add user meta data
+        * @param string $key
+        * @param string $value
+        * @return bool
+        */
+       function add_meta(string $key, string $value)
+       {
+               if (!$key || !$value)
+                       return false;
+
+               $meta = [
+                       "id" => $this->id,
+                       "key" => $key,
+                       "value" => $value
+               ];
+               
+               $conn = sqlnew();
+
+               /* check if it exists first, update it if it does */
+               $query = "SELECT * FROM " . SQL_PREFIX . "user_meta WHERE user_id = :id AND meta_key = :key";
+               $stmt = $conn->prepare($query);
+               $stmt->execute(["id" => $this->id, "key" => $key]);
+               if ($stmt->rowCount()) // it exists, update instead of insert
+               {
+                       $query = "UPDATE " . SQL_PREFIX . "user_meta SET meta_value = :value WHERE user_id = :id AND meta_key = :key";
+                       $stmt = $conn->prepare($query);
+                       $stmt->execute($meta);
+                       if ($stmt->rowCount())
+                               return true;
+                       return false;
+               }
+
+               else
+               {
+                       $query = "INSERT INTO " . SQL_PREFIX . "user_meta (user_id, meta_key, meta_value) VALUES (:id, :key, :value)";
+                       $stmt = $conn->prepare($query);
+                       $stmt->execute($meta);
+                       if ($stmt->rowCount())
+                               return true;
+                       return false;
+               }
+       }
+
+       /**
+        * Delete user meta data by key
+        * @param string $key
+        * @return bool
+        */
+       function delete_meta(string $key)
+       {
+               if (!$key )
+                       return false;
+
+               $meta = [
+                       "id" => $this->id,
+                       "key" => $key,
+               ];
+               
+               $conn = sqlnew();
+               $query = "DELETE FROM " . SQL_PREFIX . "user_meta WHERE user_id = :id AND meta_key = :key";
+               $stmt = $conn->prepare($query);
+               $stmt->execute($meta);
+               if ($stmt->rowCount())
+                       return true;
+               return false;
+
+       }
+
+       /** PERMISSIONS */
+
+       function add_permission($permission)
+       {
+               $meta = (isset($this->user_meta['permissions'])) ? unserialize($this->user_meta['permissions']) : [];
+               if (!in_array($permission,$meta))
+                       $meta[] = $permission;
+               $this->add_meta("permissions", serialize($meta)); // updet de dettabess
+               $this->user_meta['permissions'] = serialize($meta); // put it back in our object in case it still needs to be used
+       }
+       function delete_permission($permission)
+       {
+               $meta = (isset($this->user_meta['permissions'])) ? unserialize($this->user_meta['permissions']) : [];
+               foreach($meta as $key => $value)
+               {
+                       if (!strcmp($permission, $value))
+                               unset($meta[$key]);
+               }
+               $this->add_meta("permissions", serialize($meta));
+               $this->user_meta['permissions'] = serialize($meta);
+       }
+
 }
 
 
@@ -140,20 +176,20 @@ class SQLA_User
  */
 class SQLA_User_Meta
 {
-    public $list = [];
-    function __construct($id)
-    {
-        $conn = sqlnew();
-        if ($id)
-        {
-            $prep = $conn->prepare("SELECT * FROM " . SQL_PREFIX . "user_meta WHERE user_id = :id");
-            $prep->execute(["id" => $id]);
-        }
-        foreach ($prep->fetchAll() as $row)
-        {
-            $this->list[$row['meta_key']] = $row['meta_value'];
-        }
-    }
+       public $list = [];
+       function __construct($id)
+       {
+               $conn = sqlnew();
+               if ($id)
+               {
+                       $prep = $conn->prepare("SELECT * FROM " . SQL_PREFIX . "user_meta WHERE user_id = :id");
+                       $prep->execute(["id" => $id]);
+               }
+               foreach ($prep->fetchAll() as $row)
+               {
+                       $this->list[$row['meta_key']] = $row['meta_value'];
+               }
+       }
 }
 
 /**
@@ -173,21 +209,21 @@ class SQLA_User_Meta
  */
 function create_new_user(array $user) : bool
 {
-    if (!isset($user['user_name']) || !isset($user['user_pass']))
-        throw new Exception("Attempted to add user without specifying user_name or user_pass");
-
-    $username = $user['user_name'];
-    $password = password_hash($user['user_pass'], PASSWORD_ARGON2ID);
-    $first_name = (isset($user['fname'])) ? $user['fname'] : NULL;
-    $last_name = (isset($user['lname'])) ? $user['lname'] : NULL;
-    $user_bio = (isset($user['user_bio'])) ? $user['user_bio'] : NULL;
-    
-
-    $conn = sqlnew();
-    $prep = $conn->prepare("INSERT INTO " . SQL_PREFIX . "users (user_name, user_pass, user_fname, user_lname, user_bio, created) VALUES (:name, :pass, :fname, :lname, :user_bio, :created)");
-    $prep->execute(["name" => $username, "pass" => $password, "fname" => $first_name, "lname" => $last_name, "user_bio" => $user_bio, "created" => date("Y-m-d H:i:s")]);
-    
-    return true;
+       if (!isset($user['user_name']) || !isset($user['user_pass']))
+               throw new Exception("Attempted to add user without specifying user_name or user_pass");
+
+       $username = $user['user_name'];
+       $password = password_hash($user['user_pass'], PASSWORD_ARGON2ID);
+       $first_name = (isset($user['fname'])) ? $user['fname'] : NULL;
+       $last_name = (isset($user['lname'])) ? $user['lname'] : NULL;
+       $user_bio = (isset($user['user_bio'])) ? $user['user_bio'] : NULL;
+       
+
+       $conn = sqlnew();
+       $prep = $conn->prepare("INSERT INTO " . SQL_PREFIX . "users (user_name, user_pass, user_fname, user_lname, user_bio, created) VALUES (:name, :pass, :fname, :lname, :user_bio, :created)");
+       $prep->execute(["name" => $username, "pass" => $password, "fname" => $first_name, "lname" => $last_name, "user_bio" => $user_bio, "created" => date("Y-m-d H:i:s")]);
+       
+       return true;
 }
 
 /**
@@ -196,14 +232,14 @@ function create_new_user(array $user) : bool
  */
 function unreal_get_current_user() : SQLA_User|bool
 {
-    session_start();
-    if (isset($_SESSION['id']))
-    {
-        $user = new SQLA_User(NULL, $_SESSION['id']);
-        if ($user->id)
-            return $user;
-    }
-    return false;
+       session_start();
+       if (isset($_SESSION['id']))
+       {
+               $user = new SQLA_User(NULL, $_SESSION['id']);
+               if ($user->id)
+                       return $user;
+       }
+       return false;
 }
 
 /**
@@ -211,16 +247,27 @@ function unreal_get_current_user() : SQLA_User|bool
  * @param string $permission
  * @return bool
  */
-function current_user_can() : bool
+function current_user_can($permission) : bool
 {
-    
-    return false;
+       $user = unreal_get_current_user();
+       if (!$user)
+               return false;
+
+       if (isset($user->user_meta['permissions']))
+       {
+               $perms = unserialize($user->user_meta['permissions']);
+               if (in_array($permission, $perms))
+               {
+                       return true;
+               }
+       }
+       return false;
 }
 
 /**
  * Delete a user and related meta
  * @param int $id The ID of the user in the SQL database.
- * @param array $info Optional: This will fill with a response.
+ * @param array $info This will fill with a response.
  * @return int
  * 
  * Return values:
@@ -230,23 +277,22 @@ function current_user_can() : bool
  */
 function delete_user(int $id, &$info = []) : int
 {
-    $user = new SQLA_User(NULL, $id);
-    if (!$user->id) {
-        $info[] = "Could not find user";
-        var_dump("return 1");
-        return 0;
-    }
-    $query = "DELETE FROM " . SQL_PREFIX . "users WHERE user_id = :id";
-    $conn = sqlnew();
-    $stmt = $conn->prepare($query);
-    $stmt->execute(["id" => $user->id]);
-    $deleted = $stmt->rowCount();
-    if ($user->id)
-    {
-        $info[] = "Successfully deleted user \"$user->username\"";
-        return 1;
-    }
-    $info[] = "Unknown error";
-    return 0;
+       $user = new SQLA_User(NULL, $id);
+       if (!$user->id) {
+               $info[] = "Could not find user";
+               return 0;
+       }
+       $query = "DELETE FROM " . SQL_PREFIX . "users WHERE user_id = :id";
+       $conn = sqlnew();
+       $stmt = $conn->prepare($query);
+       $stmt->execute(["id" => $user->id]);
+       $deleted = $stmt->rowCount();
+       if ($user->id)
+       {
+               $info[] = "Successfully deleted user \"$user->username\"";
+               return 1;
+       }
+       $info[] = "Unknown error";
+       return 0;
 }