mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 09:56:06 +00:00
Fixed wrong paths
This commit is contained in:
166
src/pocketmine/permission/BanList.php
Normal file
166
src/pocketmine/permission/BanList.php
Normal file
@ -0,0 +1,166 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
*
|
||||
* ____ _ _ __ __ _ __ __ ____
|
||||
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
||||
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
||||
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
||||
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* @author PocketMine Team
|
||||
* @link http://www.pocketmine.net/
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
namespace pocketmine\permission;
|
||||
|
||||
use pocketmine\Server;
|
||||
|
||||
class BanList{
|
||||
|
||||
/** @var BanEntry[] */
|
||||
private $list = array();
|
||||
|
||||
/** @var string */
|
||||
private $file;
|
||||
|
||||
/** @var bool */
|
||||
private $enabled = true;
|
||||
|
||||
/**
|
||||
* @param string $file
|
||||
*/
|
||||
public function __construct($file){
|
||||
$this->file = $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function isEnabled(){
|
||||
return $this->enabled === true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param bool $flag
|
||||
*/
|
||||
public function setEnabled($flag){
|
||||
$this->enabled = (bool) $flag;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BanEntry[]
|
||||
*/
|
||||
public function getEntries(){
|
||||
$this->removeExpired();
|
||||
|
||||
return $this->list;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isBanned($name){
|
||||
$name = strtolower($name);
|
||||
if(!$this->isEnabled()){
|
||||
return false;
|
||||
}else{
|
||||
$this->removeExpired();
|
||||
|
||||
return isset($this->list[$name]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param BanEntry $entry
|
||||
*/
|
||||
public function add(BanEntry $entry){
|
||||
$this->list[$entry->getName()] = $entry;
|
||||
$this->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $target
|
||||
* @param string $reason
|
||||
* @param \DateTime $expires
|
||||
* @param string $source
|
||||
*
|
||||
* @return BanEntry
|
||||
*/
|
||||
public function addBan($target, $reason = null, $expires = null, $source = null){
|
||||
$entry = new BanEntry($target);
|
||||
$entry->setSource($source != null ? $source : $entry->getSource());
|
||||
$entry->setExpires($expires);
|
||||
$entry->setReason($reason != null ? $reason : $entry->getReason());
|
||||
|
||||
$this->list[$entry->getName()] = $entry;
|
||||
$this->save();
|
||||
|
||||
return $entry;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
*/
|
||||
public function remove($name){
|
||||
$name = strtolower($name);
|
||||
if(isset($this->list[$name])){
|
||||
unset($this->list[$name]);
|
||||
$this->save();
|
||||
}
|
||||
}
|
||||
|
||||
public function removeExpired(){
|
||||
foreach($this->list as $name => $entry){
|
||||
if($entry->hasExpired()){
|
||||
unset($this->list[$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function load(){
|
||||
$this->list = array();
|
||||
$fp = @fopen($this->file, "r");
|
||||
if(is_resource($fp)){
|
||||
while(($line = fgets($fp)) !== false){
|
||||
if($line{0} !== "#"){
|
||||
$entry = BanEntry::fromString($line);
|
||||
if($entry instanceof BanEntry){
|
||||
$this->list[$entry->getName()] = $entry;
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose($fp);
|
||||
}else{
|
||||
console("[ERROR] Could not load ban list");
|
||||
}
|
||||
}
|
||||
|
||||
public function save($flag = true){
|
||||
$this->removeExpired();
|
||||
$fp = @fopen($this->file, "w");
|
||||
if(is_resource($fp)){
|
||||
if($flag === true){
|
||||
fwrite($fp, "# Updated " . strftime("%x %H:%M", time()) . " by " . Server::getInstance()->getName() . " " . Server::getInstance()->getPocketMineVersion() . "\n");
|
||||
fwrite($fp, "# victim name | ban date | banned by | banned until | reason\n\n");
|
||||
}
|
||||
|
||||
foreach($this->list as $entry){
|
||||
fwrite($fp, $entry->getString() . "\n");
|
||||
}
|
||||
fclose($fp);
|
||||
}else{
|
||||
console("[ERROR] Could not save ban list");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user