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

178 lines
3.7 KiB
PHP
Raw Normal View History

<?php
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.
*
* @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.
*
* @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.
*
* @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.
*
* @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.
*
* @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.
*
* @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.
*
* @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.
*
* @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.
*
* @var bool
*/
2016-01-17 01:58:31 +00:00
private $hidden = true;
2016-02-02 21:04:15 +00:00
/**
* Permission container.
*
* @var Perms
*/
2015-12-29 21:52:19 +00:00
private $permissions;
2016-02-02 21:04:15 +00:00
/**
* Instance cache container.
*
* @var array
*/
2015-12-29 21:52:19 +00:00
protected static $_rankCache = [];
2016-02-02 21:04:15 +00:00
/**
* Cached constructor.
*
* @param int $rid ID of the rank.
* @param bool $forceRefresh Force a cache refresh.
*
* @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.
*
* @param int $rid ID of the rank that should be constructed.
*/
2015-12-29 21:52:19 +00:00
private function __construct($rid)
{
// Get the rank database row
2016-01-17 01:58:31 +00:00
$rankRow = Database::fetch(
'ranks',
false,
[
'rank_id' => [$rid, '=', true],
]
);
// Check if the rank actually exists
2016-01-17 01:58:31 +00:00
if ($rankRow) {
$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.
*
* @param bool $multi Should the multiple sense be appended?
*
* @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.
*
* @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.
*
* @param int $flag Permission flag that should be checked.
*
* @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);
2015-12-29 21:52:19 +00:00
return $this->permissions->check($flag, $perm);
}
}