This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/Rank.php

215 lines
4.7 KiB
PHP
Raw Normal View History

<?php
2016-02-03 22:22:56 +00:00
/**
* Holds the rank object class.
2016-02-05 11:20:33 +00:00
*
2016-02-03 22:22:56 +00:00
* @package Sakura
*/
namespace Sakura;
2015-12-29 21:52:19 +00:00
use Sakura\Perms;
use Sakura\Perms\Site;
/**
2016-02-02 21:04:15 +00:00
* Serves Rank data.
2016-02-05 11:20:33 +00:00
*
* @package Sakura
2016-02-02 21:04:15 +00:00
* @author Julian van de Groep <me@flash.moe>
*/
class Rank
{
2016-02-02 21:04:15 +00:00
/**
* ID of the rank.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var int
*/
2016-01-17 01:58:31 +00:00
public $id = 0;
2016-02-02 21:04:15 +00:00
/**
* Name of the rank.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var string
*/
2016-01-17 01:58:31 +00:00
public $name = 'Rank';
2016-02-02 21:04:15 +00:00
/**
* Global hierarchy of the rank.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var int
*/
2016-01-17 01:58:31 +00:00
public $hierarchy = 0;
2016-02-02 21:04:15 +00:00
/**
* Text that should be append to the name to make it address multiple.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var string
*/
2016-01-17 01:58:31 +00:00
public $multiple = '';
2016-02-02 21:04:15 +00:00
/**
* The rank's username colour.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var string
*/
2016-01-17 01:58:31 +00:00
public $colour = 'inherit';
2016-02-02 21:04:15 +00:00
/**
* Description of the rank.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var string
*/
2016-01-17 01:58:31 +00:00
public $description = '';
2016-02-02 21:04:15 +00:00
/**
* User title of the rank.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var string
*/
2016-01-17 01:58:31 +00:00
public $title = '';
2016-02-02 21:04:15 +00:00
/**
* Indicates if this rank should be hidden.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var bool
*/
2016-01-17 01:58:31 +00:00
private $hidden = true;
2016-02-02 21:04:15 +00:00
/**
* Permission container.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var Perms
*/
2015-12-29 21:52:19 +00:00
private $permissions;
2016-02-02 21:04:15 +00:00
/**
* Instance cache container.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @var array
*/
2015-12-29 21:52:19 +00:00
protected static $_rankCache = [];
2016-02-05 11:20:33 +00:00
2016-02-02 21:04:15 +00:00
/**
* Cached constructor.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @param int $rid ID of the rank.
* @param bool $forceRefresh Force a cache refresh.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @return Rank The requested rank object.
*/
public static function construct($rid, $forceRefresh = false)
{
2015-12-29 21:52:19 +00:00
// Check if a rank object isn't present in cache
if ($forceRefresh || !array_key_exists($rid, self::$_rankCache)) {
// If not create a new object and cache it
self::$_rankCache[$rid] = new Rank($rid);
}
// Return the cached object
return self::$_rankCache[$rid];
}
2016-02-02 21:04:15 +00:00
/**
* Constructor.
2016-02-05 11:20:33 +00:00
*
2016-02-25 16:06:29 +00:00
* @param int $rankId ID of the rank that should be constructed.
2016-02-02 21:04:15 +00:00
*/
2016-02-25 16:06:29 +00:00
private function __construct($rankId)
{
// Get the rank database row
2016-02-25 16:06:29 +00:00
$rankRow = DB::table('ranks')
->where('rank_id', $rankId)
->get();
// Check if the rank actually exists
2016-01-17 01:58:31 +00:00
if ($rankRow) {
2016-02-25 16:06:29 +00:00
$rankRow = $rankRow[0];
2016-02-18 23:28:44 +00:00
$this->id = $rankRow->rank_id;
$this->name = $rankRow->rank_name;
$this->hierarchy = $rankRow->rank_hierarchy;
$this->multiple = $rankRow->rank_multiple;
$this->hidden = (bool) $rankRow->rank_hidden;
$this->colour = $rankRow->rank_colour;
$this->description = $rankRow->rank_description;
$this->title = $rankRow->rank_title;
}
2015-12-29 21:52:19 +00:00
// Init the permissions
$this->permissions = new Perms(Perms::SITE);
}
2016-02-02 21:04:15 +00:00
/**
* Get the name of the rank.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @param bool $multi Should the multiple sense be appended?
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @return string The rank's name.
*/
public function name($multi = false)
{
2016-01-17 01:58:31 +00:00
return $this->name . ($multi ? $this->multiple : null);
}
2016-02-02 21:04:15 +00:00
/**
* Indicates if the rank is hidden.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @return bool Hidden status.
*/
public function hidden()
{
2016-01-17 01:58:31 +00:00
return $this->hidden || $this->permission(Site::DEACTIVATED) || $this->permission(Site::RESTRICTED);
}
2016-02-02 21:04:15 +00:00
/**
* Check permissions.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @param int $flag Permission flag that should be checked.
2016-02-05 11:20:33 +00:00
*
2016-02-02 21:04:15 +00:00
* @return bool Success indicator.
*/
2015-12-29 21:52:19 +00:00
public function permission($flag)
{
2015-12-29 21:52:19 +00:00
// Set default permission value
$perm = 0;
// Bitwise OR it with the permissions for this forum
2016-01-17 01:58:31 +00:00
$perm = $perm | $this->permissions->rank($this->id);
2016-02-05 11:20:33 +00:00
2015-12-29 21:52:19 +00:00
return $this->permissions->check($flag, $perm);
}
2016-02-05 11:20:33 +00:00
/**
* Returns all users that are part of this rank.
*
* @param bool $justIds Makes this function only return the user ids when set to a positive value.
*
* @return array Either just the user IDs of the users or with objects.
*/
public function users($justIds = false)
{
// Fetch all users part of this rank
$get = DB::table('user_ranks')
->where('rank_id', $this->id)
->get(['user_id']);
// Filter the user ids into one array
$userIds = array_column($get, 'user_id');
2016-02-05 11:20:33 +00:00
// Just return that if we were asked for just the ids
if ($justIds) {
return $userIds;
}
// Create the storage array
$users = [];
// Create User objects and store
foreach ($userIds as $id) {
$users[$id] = User::construct($id);
}
// Return the array
return $users;
}
}