diff options
author | valentineus <valentineus@gmail.com> | 2016-09-14 00:30:05 +0300 |
---|---|---|
committer | valentineus <valentineus@gmail.com> | 2016-09-14 00:30:05 +0300 |
commit | 288980ceb35d5ace51284cfdf176e9acb5f7bb39 (patch) | |
tree | 97b9f6779fae3a630a42951e1a85b7eeced93375 /src/bot.php | |
parent | 4d0e9148a3551e0af6fa7476021c9ef052149c71 (diff) | |
download | iii-module-288980ceb35d5ace51284cfdf176e9acb5f7bb39.tar.xz iii-module-288980ceb35d5ace51284cfdf176e9acb5f7bb39.zip |
Alpha version
Diffstat (limited to 'src/bot.php')
-rw-r--r-- | src/bot.php | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/bot.php b/src/bot.php new file mode 100644 index 0000000..c04bb1c --- /dev/null +++ b/src/bot.php @@ -0,0 +1,82 @@ +<?php
+ class Bot {
+ protected $key = null;
+ protected $session = null;
+ private $salt = 'some very-very long string without any non-latin characters due to different string representations inside of variable programming languages';
+
+ /**
+ * @param $key - Ключ из урла после создания инфа
+ */
+ public function __construct($key) {
+ $this->key = $key;
+ }
+
+ /**
+ * @param null $session - Идентификатор сессии существующей, если нет то создается новая
+ * @return string Идентификатор текущей сессии
+ */
+ public function session($session = null) {
+ if ($session === null) {
+ $response = file_get_contents('http://iii.ru/api/2.0/json/Chat.init/'.$this->key.'/');
+ $this->session = $this->decode($response)->result->cuid;
+ } else {
+ $this->session = $session;
+ }
+
+ return $this->session;
+ }
+
+ /**
+ * ОТправить сообщение боту
+ * @param string $message Сообщение
+ * @return string Ответ
+ */
+ public function say($message) {
+ $request = '["'.$this->session.'","'.$message.'"]';
+ $myCurl = curl_init();
+ curl_setopt_array($myCurl, array(
+ CURLOPT_URL => 'http://iii.ru/api/2.0/json/Chat.request',
+ CURLOPT_RETURNTRANSFER => true,
+ CURLOPT_POST => true,
+ CURLOPT_POSTFIELDS => $this->encode($request)
+ ));
+ $response = curl_exec($myCurl);
+ curl_close($myCurl);
+
+ return $this->decode($response)->result->text->tts;
+ }
+
+ /**
+ * Кодирование сообщения
+ * @param $message
+ * @return string
+ */
+ private function encode($message) {
+ $message = base64_encode($message);
+ $ml = strlen($message);
+ $kl = strlen($this->salt);
+ $encoded = "";
+ for ($i = 0; $i < $ml; $i++) {
+ $encoded = $encoded . ($message[$i] ^ $this->salt[$i % $kl]);
+ }
+
+ return base64_encode($encoded);
+ }
+
+ /**
+ * Декодирование сообщения
+ * @param $message
+ * @return mixed|null
+ */
+ private function decode($message) {
+ $msg = base64_decode($message);
+ $ml = strlen($msg);
+ $kl = strlen($this->salt);
+ $decoded = "";
+ for ($i = 0; $i < $ml; $i++) {
+ $decoded.= ($msg[$i] ^ $this->salt[$i % $kl]);
+ }
+
+ return json_decode(base64_decode($decoded));
+ }
+ }
|