summaryrefslogtreecommitdiffstats
path: root/examples/class/user.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'examples/class/user.class.php')
-rw-r--r--examples/class/user.class.php121
1 files changed, 0 insertions, 121 deletions
diff --git a/examples/class/user.class.php b/examples/class/user.class.php
index b8143a9..eff5fd0 100644
--- a/examples/class/user.class.php
+++ b/examples/class/user.class.php
@@ -1,129 +1,8 @@
<?php
-/*
- * SCROTT Copyright (C) 2016 Malf Furious
- *
- * Scrott is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published
- * by the Free Software Foundation, either version 3 of the License,
- * or (at your option) any later version.
- *
- * Scrott is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
- * License for more details.
- */
-
-require_once "class/object.class.php";
-require_once "class/group.class.php";
-
-/*
- * Application users
- */
class User extends Object
{
/*
- * Constructor
- */
- function __construct($guid = null)
- {
- $cols = array(
- "guid",
- "key",
- "salt",
- "alias",
- "admin",
- "email",
- "emailConf",
- "emailConfKey"
- );
-
- parent::__construct("user", $cols);
- $this->loadObj($guid);
- }
-
- /*
- * Initialize object by username
- */
- function initByUsername($username)
- {
- $query = "SELECT guid FROM object WHERE type = 'user' AND name = '" . $this->db->esc($username) . "'";
- $result = $this->db->query($query);
-
- if (count($result) == 0)
- return false;
-
- $this->loadObj($result[0]['guid']);
- return true;
- }
-
- /*
- * Get all users -- ordered by name, ascending
- */
- function getAllUsers_orderByName()
- {
- $query = "SELECT guid FROM `object` WHERE `type` = 'user' ORDER BY name";
- $result = $this->db->query($query);
-
- $users = array();
-
- foreach ($result as $u)
- $users[] = new User($u['guid']);
-
- return $users;
- }
-
- /*
- * Get all users -- ordered by admin DESC (admins first), then by name
- */
- function getAllUsers_orderByAdminByName()
- {
- $query = "SELECT o.guid FROM object o JOIN user u ON o.guid = u.guid WHERE o.type = 'user' ORDER BY u.admin DESC, o.name";
- $result = $this->db->query($query);
-
- $users = array();
-
- foreach ($result as $u)
- $users[] = new User($u['guid']);
-
- return $users;
- }
-
- /*
- * Get the number of administrative accounts in the system
- */
- function getNumAdmins()
- {
- $query = "SELECT count(*) as cnt FROM user WHERE admin = 1";
- $results = $this->db->query($query);
- return $results[0]['cnt'];
- }
-
- /*
- * Check whether a given username is currently in use
- */
- function usernameInUse($username)
- {
- $escd_username = $this->db->esc($username);
-
- $query = "SELECT name FROM object WHERE type = 'user' AND name = '" . $escd_username . "'";
- $results = $this->db->query($query);
-
- if (count($results) > 0)
- return true;
-
- return false;
- }
-
- /*
- * Generate a key from a user's password and salt
- */
- function getKey($password, $salt)
- {
- return hash("sha256", $salt . $password);
- }
-
- /*
* Create a new User object with the given username and keyed with the given plain-text password
* This function returns false if $username is already being used
* On success, this object should be initialized as the new user (use only on new User() objects)