scraftia-web/docs/chat.php

33 lines
865 B
PHP
Raw Normal View History

2025-02-08 00:52:59 -05:00
<?php
require(__DIR__ . "/../libs/header.php");
page_header();
2025-02-08 19:36:16 -05:00
$msgs = json_decode(file_get_contents('https://mcp.dervland.net/messages'), true);
2025-02-08 00:58:52 -05:00
?>
<h2>Scraftia (<a href='/' class='link'>Home</a>)</h2>
<?php
2025-02-08 00:52:59 -05:00
foreach ($msgs as $msg) {
2025-02-09 19:23:40 -05:00
$sys = ($msg['username'] == ':system');
$classes = '';
if ($sys && str_contains($msg['content'],'joined ')) $classes = 'joiner';
if ($sys && str_contains($msg['content'],'left ')) $classes = 'leaver';
2025-02-08 19:36:16 -05:00
?>
2025-02-09 19:23:40 -05:00
<div class="comment <?php echo $classes ?>">
2025-02-08 00:52:59 -05:00
<div class="avatar">
<div>
<div><b>
2025-02-09 19:23:40 -05:00
<?php echo htmlspecialchars($sys ? 'System User' : $msg['username']); ?>
2025-02-08 00:52:59 -05:00
</b></div>
<div><b>
<?php echo date(DATE_RFC2822, $msg['date'] * 0.001); ?>
</b></div>
</div>
</div>
<?php echo htmlspecialchars($msg['content']); ?>
</div>
<?php
}
2025-02-08 19:36:16 -05:00
2025-02-08 00:52:59 -05:00
page_footer();
?>