Files
breadcrumb-the-shire/lib/Repository/Access/UserRoleRepository.php

110 lines
3.1 KiB
PHP
Raw Normal View History

2026-02-04 23:31:53 +01:00
<?php
2026-02-11 19:28:12 +01:00
namespace MintyPHP\Repository\Access;
2026-02-04 23:31:53 +01:00
use MintyPHP\DB;
use MintyPHP\Repository\Support\RepositoryArrayHelper;
2026-02-04 23:31:53 +01:00
2026-03-05 08:26:51 +01:00
class UserRoleRepository implements UserRoleRepositoryInterface
2026-02-04 23:31:53 +01:00
{
2026-02-23 12:58:19 +01:00
public function listRoleIdsByUserId(int $userId): array
2026-02-04 23:31:53 +01:00
{
$rows = DB::select('select role_id from user_roles where user_id = ?', (string) $userId);
return RepositoryArrayHelper::extractIds($rows, 'user_roles', 'role_id');
2026-02-04 23:31:53 +01:00
}
2026-02-23 12:58:19 +01:00
public function replaceForUser(int $userId, array $roleIds): bool
2026-02-04 23:31:53 +01:00
{
DB::delete('delete from user_roles where user_id = ?', (string) $userId);
if (!$roleIds) {
return true;
}
foreach ($roleIds as $roleId) {
DB::insert(
'insert into user_roles (user_id, role_id, created) values (?,?,NOW())',
(string) $userId,
(string) $roleId
);
}
return true;
}
2026-03-04 15:56:58 +01:00
public function listUserIdsByRoleIds(array $roleIds): array
{
$ids = RepositoryArrayHelper::sanitizePositiveIds($roleIds);
2026-03-04 15:56:58 +01:00
if (!$ids) {
return [];
}
$rows = DB::select(
'select distinct user_id from user_roles where role_id in (???)',
array_map('strval', $ids)
);
return RepositoryArrayHelper::sanitizePositiveIds(
RepositoryArrayHelper::extractIds($rows, 'user_roles', 'user_id')
);
2026-03-04 15:56:58 +01:00
}
2026-02-23 12:58:19 +01:00
public function countUsersByRoleIds(array $roleIds): array
{
2026-02-23 12:58:19 +01:00
return $this->countByRoleIds($roleIds, false);
}
2026-02-23 12:58:19 +01:00
public function countActiveUsersByRoleIds(array $roleIds): array
{
2026-02-23 12:58:19 +01:00
return $this->countByRoleIds($roleIds, true);
}
2026-02-23 12:58:19 +01:00
private function countByRoleIds(array $roleIds, bool $activeOnly): array
{
$roleIds = RepositoryArrayHelper::sanitizePositiveIds($roleIds);
if (!$roleIds) {
return [];
}
$placeholders = implode(',', array_fill(0, count($roleIds), '?'));
$joinUsersSql = $activeOnly ? ' join users u on u.id = ur.user_id and u.active = 1' : '';
$rows = DB::select(
'select ur.role_id, count(distinct ur.user_id) as user_count from user_roles ur' .
$joinUsersSql .
' where ur.role_id in (' . $placeholders . ') group by ur.role_id',
...array_map('strval', $roleIds)
);
if (!is_array($rows)) {
return [];
}
$result = [];
foreach ($rows as $row) {
2026-02-23 12:58:19 +01:00
$roleId = $this->extractIntField($row, 'role_id');
if ($roleId <= 0) {
continue;
}
2026-02-23 12:58:19 +01:00
$result[$roleId] = $this->extractIntField($row, 'user_count');
}
return $result;
}
2026-02-23 12:58:19 +01:00
private function extractIntField(array $row, string $field): int
{
foreach ($row as $value) {
if (!is_array($value)) {
continue;
}
if (array_key_exists($field, $value)) {
return (int) $value[$field];
}
}
if (array_key_exists($field, $row)) {
return (int) $row[$field];
}
return 0;
}
2026-02-04 23:31:53 +01:00
}