battles/chat.php

70 lines
2.4 KiB
PHP
Raw Normal View History

2018-03-01 23:21:53 +00:00
<?php
/**
* Copyright (c) 2018.
* Author: Igor Barkov <lopar.4ever@gmail.com>
* Project name: Battles-Game
*/
session_start();
if ($_SESSION['uid'] == null) {
header("Location: index.php");
}
include_once "config.php";
2018-03-22 19:32:48 +00:00
//include_once "functions.php";
2018-03-01 23:21:53 +00:00
2018-03-23 22:04:55 +00:00
$msg = filter_input(INPUT_POST,'msg');
$uid = $_SESSION['uid'];
2020-06-23 10:49:12 +00:00
if ($msg) {
2020-06-23 11:36:33 +00:00
try {
db::c()->query('INSERT INTO `chat` (`uid`, `msg`) VALUES (?i, "?s")', $uid, $msg);
} catch (\Krugozor\Database\Mysql\Exception $e) {
echo "<div class='private'>DB Error: ". $e->getMessage() . "<br> File: " . $e->getFile() . " (".$e->getLine().")</div>";
}
2020-06-23 10:49:12 +00:00
}
2018-03-02 09:29:28 +00:00
2020-06-23 11:36:33 +00:00
function show_messages()
{
try {
$chat = db::c()->query('
SELECT
`msg`,
`msgdate`,
(SELECT `login` FROM `users` WHERE `users`.`id` = `uid`) AS `from`,
`type`
FROM `chat` ORDER BY `id` LIMIT 50');
} catch (\Krugozor\Database\Mysql\Exception $e) {
echo "<div class='private'>DB Error: ". $e->getMessage() . "<br> File: " . $e->getFile() . " (".$e->getLine().")</div>";
}
2018-11-05 20:54:18 +00:00
2018-03-22 18:32:37 +00:00
while ($message = $chat->fetch_assoc()) {
$d = new DateTime($message['msgdate']);
$m = htmlspecialchars($message['msg']);
2019-02-12 14:40:53 +00:00
if ($message['type'] == 'sys') { /* Системка */
2020-06-23 11:15:23 +00:00
echo sprintf("<span style='color:maroon;background:#faa;'>%s %s</span>", $d->format('H:i'),$m).PHP_EOL;
2019-02-12 14:40:53 +00:00
} elseif ($message['type'] == 'sms') { /* Телеграмма */
2020-06-23 11:15:23 +00:00
echo sprintf("<span style='color:darkgreen;background:#afa;'>[Телеграмма]: %s %s</span>", $d->format('H:i'),$m).PHP_EOL;
2020-06-23 10:49:12 +00:00
} else {echo sprintf('%s [%s]: %s', $d->format('H:i'),$message['from'],$m).PHP_EOL;}
2018-03-22 18:32:37 +00:00
}
2018-03-01 23:21:53 +00:00
}
2018-03-23 23:08:05 +00:00
show_messages();
2018-03-01 23:21:53 +00:00
?>
2018-03-23 23:08:05 +00:00
<!--<!doctype html>-->
<!--<html>-->
<!--<head>-->
<!-- <meta charset="utf-8">-->
<!-- <link rel="stylesheet" href="css/main.css">-->
<!-- <style>-->
<!-- form { padding: 3px; position: fixed; bottom: 0; width: 100%; }-->
<!-- form input { border: 0; padding: 10px; width: 80%; margin-right: .5%; }-->
<!-- form input[type="submit"] { width: 15%; border: none; padding: 10px; }-->
<!-- </style>-->
<!--</head>-->
<!--<body>-->
<!--<div>-->
<?php ?>
<!--</div>-->
2018-11-05 20:54:18 +00:00
<!--<form action="chat.php" method="post">-->
<!-- <input id="msg" name="msg" size="100" placeholder="Введите сообщение...">-->
<!-- <input type="submit" value="Отправить">-->
<!--</form>-->
2018-03-23 23:08:05 +00:00
<!--</body>-->