51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Shikiryu\Bot\Bot;
|
|
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
error_reporting(E_ALL);
|
|
ini_set('log_errors', 1);
|
|
|
|
$config = include 'config.php';
|
|
|
|
$bot = new Bot($config);
|
|
|
|
$signature = $_SERVER['HTTP_X_NEXTCLOUD_TALK_SIGNATURE'] ?? '';
|
|
$random = $_SERVER['HTTP_X_NEXTCLOUD_TALK_RANDOM'] ?? '';
|
|
$server = $_SERVER['HTTP_X_NEXTCLOUD_TALK_BACKEND'] ?? '';
|
|
|
|
$delivery = $_SERVER['HTTP_X_H1_DELIVERY'] ?? '';
|
|
$event = $_SERVER['HTTP_X_H1_EVENT'] ?? '';
|
|
$signature = $_SERVER['HTTP_X_H1_SIGNATURE'] ?? '';
|
|
|
|
// Give the bot something to listen for.
|
|
foreach ($bot->listCommands() as $command) {
|
|
$bot->hears(call_user_func([$command, 'getPattern']), $command);
|
|
}
|
|
|
|
$bot->hears('(hello|hi|bonjour|salut)', function (Bot $bot) {
|
|
$bot->replyPolitely('Bonjour');
|
|
});
|
|
|
|
$body = file_get_contents('php://input');
|
|
try {
|
|
$data = json_decode($body, true, 512, JSON_THROW_ON_ERROR);
|
|
} catch (JsonException $e) {
|
|
$data = [];
|
|
}
|
|
|
|
// Only on message, not on event or whatever
|
|
if ($data['type'] !== 'Create' || $data['object']['name'] !== 'message') {
|
|
return ;
|
|
}
|
|
|
|
try {
|
|
$message = json_decode($data['object']['content'], true, 512, JSON_THROW_ON_ERROR)['message'];
|
|
} catch (JsonException $e) {
|
|
return;
|
|
}
|
|
|
|
$bot->listen($message);
|