mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-12 13:34:47 +01:00
d296724755
Added Support for standalone webchat by reading a json file Fix for jsonfile-interval in code Added working php script with spam prevention, for webchat
32 lines
991 B
PHP
32 lines
991 B
PHP
<?php
|
|
$msginterval = 5; //In seconds - add this to dynmap web config??
|
|
|
|
session_start();
|
|
if($_SERVER['REQUEST_METHOD'] == 'POST' && $_SESSION['lastchat'] < time())
|
|
{
|
|
$config = json_decode(file_get_contents('dynmap_config.json'), true);
|
|
$micro = explode(' ', microtime());
|
|
$timestamp = $micro[1].round($micro[0]*1000);
|
|
|
|
$data = json_decode(trim(file_get_contents('php://input')));
|
|
$data->timestamp = $timestamp;
|
|
$old_messages = json_decode(file_get_contents('dynmap_webchat.json'), true);
|
|
if(!empty($old_messages))
|
|
{
|
|
foreach($old_messages as $message)
|
|
{
|
|
if(($timestamp - $config['updaterate'] - 10000) < $message['timestamp'])
|
|
$new_messages[] = $message;
|
|
}
|
|
}
|
|
$new_messages[] = $data;
|
|
file_put_contents('dynmap_webchat.json', json_encode($new_messages));
|
|
$_SESSION['lastchat'] = time()+$msginterval;
|
|
}
|
|
elseif($_SERVER['REQUEST_METHOD'] == 'POST' && $_SESSION['lastchat'] > time())
|
|
{
|
|
echo json_encode('You may only chat once every '.$msginterval.' seconds.');
|
|
}
|
|
|
|
|
|
?>
|