2015-07-08 13:09:57 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Ban management
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Sakura;
|
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
class Bans
|
|
|
|
{
|
2015-07-30 01:12:53 +00:00
|
|
|
// Check if a user is banned
|
2015-09-14 20:51:23 +00:00
|
|
|
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
|
2015-09-14 20:51:23 +00:00
|
|
|
$bans = Database::fetch('bans', true, ['uid' => [$uid, '=']]);
|
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
|
2015-09-14 20:51:23 +00:00
|
|
|
foreach ($bans as $ban) {
|
2015-07-30 17:07:23 +00:00
|
|
|
// Check if it hasn't expired
|
2015-09-14 20:51:23 +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
|
2015-09-14 20:51:23 +00:00
|
|
|
Database::delete('bans', ['id' => [$ban['uid'], '=']]);
|
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 [
|
2015-07-30 17:07:23 +00:00
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'user' => $ban['uid'],
|
|
|
|
'issuer' => $ban['mod_uid'],
|
|
|
|
'issued' => $ban['ban_begin'],
|
|
|
|
'expires' => $ban['ban_end'],
|
|
|
|
'reason' => $ban['ban_reason'],
|
2015-07-30 17:07:23 +00:00
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
];
|
2015-07-30 17:07:23 +00:00
|
|
|
|
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
|
|
|
}
|