Ejemplo n.º 1
0
<?php

$type = $this->tokens[2];
$room_name = $this->tokens[3];
$last_message_id = (int) $this->tokens[4];
$name = $_POST['name'];
$status = (int) $_POST['status'];
$room = Chat::getRoomByName($room_name);
if (!$room) {
    $this->error = 'Invalid room name';
    return;
}
Chat::putMessages($room['room_id'], $name, $_POST['messages']);
Chat::updateUserInRoom($room['room_id'], $name, $status);
$messages = Chat::getMessagesSinceId($room['room_id'], $last_message_id);
$users = Chat::getUsersByRoomId($room['room_id']);
$this->json->commands = Chat::getCommands();
$this->json->last_message_id = Chat::$last_message_id;
$this->json->messages = $messages;
$this->json->users = $users;
Ejemplo n.º 2
0
array_shift($dates);
array_shift($dates);
array_shift($dates);
$date = implode('/', $dates);
if (!$this->room_name) {
    return 'error';
}
$this->room = Chat::getRoomByName($this->room_name);
if ($this->room) {
    if ($history) {
        $this->page_title = $this->room['name'] . ' history';
        if ($date) {
            $this->messages = Chat::getMessagesByRoomIdAndDate($this->room['room_id'], $date);
        } else {
            $this->dates = Chat::getDatesByRoomId($this->room['room_id']);
        }
        return 'history';
    }
} else {
    $this->room = Chat::putRoom($this->room_name);
    if (is_string($this->room)) {
        $this->error_message = $this->room;
        return 'error';
    }
    $this->message = 'Room created! The code is <strong>' . $this->room['code'] . '</strong>. Keep it secret, keep it safe. Type <code>/help</code> for more info.';
}
$this->page_title = $this->room['name'];
$this->users = Chat::getUsersByRoomId($this->room['room_id']);
$this->messages = Chat::getMessagesByRoomId($this->room['room_id']);
$this->num_messages = Chat::getNumMessagesByRoomId($this->room['room_id']);
return 'room';