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/Bans.php

64 lines
1.6 KiB
PHP
Raw Normal View History

2015-07-08 13:09:57 +00:00
<?php
2016-02-03 22:22:56 +00:00
/**
* Holds the ban manager.
*
* @package Sakura
*/
2015-07-08 13:09:57 +00:00
namespace Sakura;
/**
2016-02-02 21:04:15 +00:00
* User banishment management.
*
* @package Sakura
2016-02-02 21:04:15 +00:00
* @author Julian van de Groep <me@flash.moe>
*/
class Bans
{
2016-02-02 21:04:15 +00:00
/**
* Checks if a user is banned.
*
* @param int $uid The ID of the user that is being checked.
*
* @return array|bool Either false or an array containing information about the ban.
*/
public static function checkBan($uid)
{
2015-07-30 01:12:53 +00:00
2015-07-30 17:07:23 +00:00
// Attempt to get a ban from this user
2016-02-18 23:28:44 +00:00
$bans = DB::prepare('SELECT * FROM `{prefix}bans` WHERE `user_id` = :id');
$bans->execute([
'id' => $uid,
]);
$bans = $bans->fetchAll();
2015-07-30 17:07:23 +00:00
// Reverse the array so new bans are listed first
$bans = array_reverse($bans);
// Go over each ban
foreach ($bans as $ban) {
2015-07-30 17:07:23 +00:00
// Check if it hasn't expired
2016-02-18 23:28:44 +00:00
if ($ban->ban_end != 0 && $ban->ban_end < time()) {
2015-07-30 17:07:23 +00:00
// If it has delete the entry and continue
2016-02-18 23:28:44 +00:00
DB::prepare('DELETE FROM `{prefix}bans` WHERE `ban_id` = :id')
->execute([
'id' => $ban->user_id,
]);
2015-07-30 17:07:23 +00:00
continue;
}
// Return the ban if all checks were passed
2015-07-30 01:12:53 +00:00
return [
2016-02-18 23:28:44 +00:00
'user' => $ban->user_id,
'issuer' => $ban->ban_moderator,
'issued' => $ban->ban_begin,
'expires' => $ban->ban_end,
'reason' => $ban->ban_reason,
2015-07-30 01:12:53 +00:00
];
}
2015-07-30 17:07:23 +00:00
// Else just return false
return false;
2015-07-30 01:12:53 +00:00
}
2015-07-08 13:09:57 +00:00
}