This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/core/userclass.php

235 lines
6.7 KiB
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
2023-02-07 13:21:37 +00:00
use GQLA\Type;
use GQLA\Field;
use GQLA\Query;
/**
2015-08-02 19:39:41 +00:00
* @global UserClass[] $_shm_user_classes
*/
2015-08-02 19:39:41 +00:00
global $_shm_user_classes;
$_shm_user_classes = [];
2012-02-14 21:11:23 +00:00
2014-04-29 05:33:03 +00:00
/**
* Class UserClass
*/
2023-02-07 13:21:37 +00:00
#[Type(name: "UserClass")]
class UserClass
{
2023-02-07 13:21:37 +00:00
#[Field]
public ?string $name = null;
public ?UserClass $parent = null;
public array $abilities = [];
2020-03-18 22:15:25 +00:00
public function __construct(string $name, string $parent = null, array $abilities = [])
{
global $_shm_user_classes;
$this->name = $name;
$this->abilities = $abilities;
if (!is_null($parent)) {
$this->parent = $_shm_user_classes[$parent];
}
$_shm_user_classes[$name] = $this;
}
2023-02-15 22:26:34 +00:00
#[Field(type: "[Permission!]!")]
2023-02-07 13:21:37 +00:00
public function permissions(): array
{
global $_all_false;
$perms = [];
foreach ((new \ReflectionClass('\Shimmie2\Permissions'))->getConstants() as $k => $v) {
if ($this->can($v)) {
$perms[] = $v;
}
}
return $perms;
}
/**
* Determine if this class of user can perform an action or has ability.
*
* @throws SCoreException
*/
public function can(string $ability): bool
{
if (array_key_exists($ability, $this->abilities)) {
2020-01-26 13:19:35 +00:00
return $this->abilities[$ability];
} elseif (!is_null($this->parent)) {
return $this->parent->can($ability);
} else {
global $_shm_user_classes;
$min_dist = 9999;
$min_ability = null;
foreach ($_shm_user_classes['base']->abilities as $a => $cando) {
$v = levenshtein($ability, $a);
if ($v < $min_dist) {
$min_dist = $v;
$min_ability = $a;
}
}
throw new SCoreException("Unknown ability '$ability'. Did the developer mean '$min_ability'?");
}
}
2012-02-14 21:11:23 +00:00
}
$_all_false = [];
foreach ((new \ReflectionClass('\Shimmie2\Permissions'))->getConstants() as $k => $v) {
$_all_false[$v] = false;
}
new UserClass("base", null, $_all_false);
unset($_all_false);
2019-11-28 17:20:23 +00:00
// Ghost users can't do anything
new UserClass("ghost", "base", [
Permissions::READ_PM => true,
2019-11-28 17:20:23 +00:00
]);
// Anonymous users can't do anything by default, but
// the admin might grant them some permissions
new UserClass("anonymous", "base", [
Permissions::CREATE_USER => true,
]);
new UserClass("user", "base", [
2019-07-09 14:10:21 +00:00
Permissions::BIG_SEARCH => true,
Permissions::CREATE_IMAGE => true,
Permissions::CREATE_COMMENT => true,
Permissions::EDIT_IMAGE_TAG => true,
Permissions::EDIT_IMAGE_SOURCE => true,
Permissions::EDIT_IMAGE_TITLE => true,
Permissions::EDIT_IMAGE_RELATIONSHIPS => true,
Permissions::EDIT_IMAGE_ARTIST => true,
2019-07-09 14:10:21 +00:00
Permissions::CREATE_IMAGE_REPORT => true,
Permissions::EDIT_IMAGE_RATING => true,
Permissions::EDIT_FAVOURITES => true,
2023-02-24 05:32:23 +00:00
Permissions::CREATE_VOTE => true,
Permissions::SEND_PM => true,
Permissions::READ_PM => true,
2020-06-02 23:08:24 +00:00
Permissions::SET_PRIVATE_IMAGE => true,
2022-07-09 22:37:43 +00:00
Permissions::PERFORM_BULK_ACTIONS => true,
2020-06-22 00:17:58 +00:00
Permissions::BULK_DOWNLOAD => true,
Permissions::CHANGE_USER_SETTING => true
]);
new UserClass("hellbanned", "user", [
Permissions::HELLBANNED => true,
]);
2020-03-18 22:15:25 +00:00
new UserClass("admin", "base", [
Permissions::CHANGE_SETTING => true,
Permissions::CHANGE_USER_SETTING => true,
Permissions::CHANGE_OTHER_USER_SETTING => true,
2020-03-18 22:15:25 +00:00
Permissions::OVERRIDE_CONFIG => true,
Permissions::BIG_SEARCH => true,
2020-03-18 22:06:55 +00:00
Permissions::MANAGE_EXTENSION_LIST => true,
Permissions::MANAGE_ALIAS_LIST => true,
Permissions::MANAGE_AUTO_TAG => true,
Permissions::MASS_TAG_EDIT => true,
2020-03-18 22:15:25 +00:00
Permissions::VIEW_IP => true,
2019-07-09 14:10:21 +00:00
Permissions::BAN_IP => true,
2020-03-18 22:06:55 +00:00
Permissions::CREATE_USER => true,
2020-05-19 18:33:51 +00:00
Permissions::CREATE_OTHER_USER => true,
2019-07-09 14:10:21 +00:00
Permissions::EDIT_USER_NAME => true,
Permissions::EDIT_USER_PASSWORD => true,
2020-03-18 22:15:25 +00:00
Permissions::EDIT_USER_INFO => true,
2019-07-09 14:10:21 +00:00
Permissions::EDIT_USER_CLASS => true,
Permissions::DELETE_USER => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::CREATE_COMMENT => true,
Permissions::DELETE_COMMENT => true,
2020-03-18 22:15:25 +00:00
Permissions::BYPASS_COMMENT_CHECKS => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::REPLACE_IMAGE => true,
2020-03-18 22:06:55 +00:00
Permissions::CREATE_IMAGE => true,
2019-07-09 14:10:21 +00:00
Permissions::EDIT_IMAGE_TAG => true,
Permissions::EDIT_IMAGE_SOURCE => true,
Permissions::EDIT_IMAGE_OWNER => true,
2020-03-18 22:06:55 +00:00
Permissions::EDIT_IMAGE_LOCK => true,
Permissions::EDIT_IMAGE_TITLE => true,
2020-03-18 22:06:55 +00:00
Permissions::EDIT_IMAGE_RELATIONSHIPS => true,
Permissions::EDIT_IMAGE_ARTIST => true,
2019-07-09 14:10:21 +00:00
Permissions::BULK_EDIT_IMAGE_TAG => true,
Permissions::BULK_EDIT_IMAGE_SOURCE => true,
2020-03-18 22:06:55 +00:00
Permissions::DELETE_IMAGE => true,
Permissions::BAN_IMAGE => true,
Permissions::VIEW_EVENTLOG => true,
Permissions::IGNORE_DOWNTIME => true,
Permissions::VIEW_REGISTRATIONS => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::CREATE_IMAGE_REPORT => true,
2020-03-18 22:15:25 +00:00
Permissions::VIEW_IMAGE_REPORT => true,
2020-03-18 22:06:55 +00:00
2019-09-29 18:00:51 +00:00
Permissions::WIKI_ADMIN => true,
2019-07-09 14:10:21 +00:00
Permissions::EDIT_WIKI_PAGE => true,
Permissions::DELETE_WIKI_PAGE => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::MANAGE_BLOCKS => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::MANAGE_ADMINTOOLS => true,
2020-03-18 22:06:55 +00:00
Permissions::SEND_PM => true,
Permissions::READ_PM => true,
2020-03-18 22:06:55 +00:00
Permissions::VIEW_OTHER_PMS => true, # hm
2019-07-09 14:10:21 +00:00
Permissions::EDIT_FEATURE => true,
Permissions::BULK_EDIT_VOTE => true,
Permissions::EDIT_OTHER_VOTE => true,
2023-02-28 23:17:00 +00:00
Permissions::CREATE_VOTE => true,
2019-07-09 14:10:21 +00:00
Permissions::VIEW_SYSINTO => true,
2020-03-18 22:06:55 +00:00
Permissions::HELLBANNED => false,
2019-07-09 14:10:21 +00:00
Permissions::VIEW_HELLBANNED => true,
2020-03-18 22:06:55 +00:00
2020-03-18 22:15:25 +00:00
Permissions::PROTECTED => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::EDIT_IMAGE_RATING => true,
Permissions::BULK_EDIT_IMAGE_RATING => true,
2020-03-18 22:06:55 +00:00
2019-07-09 14:10:21 +00:00
Permissions::VIEW_TRASH => true,
2020-03-18 22:06:55 +00:00
2019-07-13 22:39:27 +00:00
Permissions::PERFORM_BULK_ACTIONS => true,
2020-03-18 22:06:55 +00:00
2019-09-29 18:00:51 +00:00
Permissions::BULK_ADD => true,
Permissions::EDIT_FILES => true,
Permissions::EDIT_TAG_CATEGORIES => true,
Permissions::RESCAN_MEDIA => true,
Permissions::SEE_IMAGE_VIEW_COUNTS => true,
2020-03-18 22:06:55 +00:00
Permissions::EDIT_FAVOURITES => true,
2019-09-29 18:00:51 +00:00
Permissions::ARTISTS_ADMIN => true,
Permissions::BLOTTER_ADMIN => true,
Permissions::FORUM_ADMIN => true,
Permissions::NOTES_ADMIN => true,
Permissions::POOLS_ADMIN => true,
Permissions::TIPS_ADMIN => true,
2019-10-17 19:22:33 +00:00
Permissions::CRON_ADMIN => true,
2020-03-18 22:06:55 +00:00
2019-10-14 18:43:49 +00:00
Permissions::APPROVE_IMAGE => true,
Permissions::APPROVE_COMMENT => true,
2023-06-14 07:48:38 +00:00
Permissions::BYPASS_IMAGE_APPROVAL => true,
2020-06-02 23:05:09 +00:00
2023-11-11 21:49:12 +00:00
Permissions::CRON_RUN => true,
2023-11-11 21:49:12 +00:00
Permissions::BULK_IMPORT => true,
Permissions::BULK_EXPORT => true,
2020-06-22 00:17:58 +00:00
Permissions::BULK_DOWNLOAD => true,
2023-03-30 19:37:06 +00:00
Permissions::BULK_PARENT_CHILD => true,
2020-06-02 23:08:24 +00:00
Permissions::SET_PRIVATE_IMAGE => true,
Permissions::SET_OTHERS_PRIVATE_IMAGES => true,
]);
@include_once "data/config/user-classes.conf.php";