Начало перехода на PHP 8.1

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2022-05-11 04:31:58 +10:00
parent 07ace039c9
commit c7fe3623e7
7 changed files with 38 additions and 30 deletions

View File

@ -21,9 +21,9 @@
"issues": "https://git.hood.su/mirzaev/vk/issues" "issues": "https://git.hood.su/mirzaev/vk/issues"
}, },
"require": { "require": {
"php": "~8.0", "php": "~8.1",
"psr/log": "~1.0", "psr/log": "~1.0",
"mirzaev/accounts": "~0.1.x-dev", "mirzaev/accounts": "~1.2.x-dev",
"monolog/monolog": "~1.6", "monolog/monolog": "~1.6",
"jasny/error-handler": "~0.2", "jasny/error-handler": "~0.2",
"guzzlehttp/guzzle": "~7.2" "guzzlehttp/guzzle": "~7.2"

View File

@ -7,7 +7,8 @@ namespace mirzaev\vk\api;
use Exception; use Exception;
use mirzaev\vk\core, use mirzaev\vk\core,
mirzaev\vk\robots\robot; mirzaev\vk\robots\robot,
mirzaev\vk\robots\group;
/** /**
* LongPoll * LongPoll
@ -59,7 +60,7 @@ final class longpoll
* *
* $robot Робот * $robot Робот
*/ */
public function __construct(private robot $robot) public function __construct(private robot&group $robot)
{ {
// Инициализация // Инициализация
if (empty($robot->id)) throw new Exception('Необходимо указать идентификатор ВКонтакте'); if (empty($robot->id)) throw new Exception('Необходимо указать идентификатор ВКонтакте');

View File

@ -11,6 +11,18 @@ use mirzaev\vk\robots\robot;
use mirzaev\vk\api\data; use mirzaev\vk\api\data;
use mirzaev\vk\robots\group; use mirzaev\vk\robots\group;
/**
* Режимы отправки сообщений
*/
enum mode
{
/** Быстро - случайный идентификатор (умножение на rand()) */
case random;
/** Надёжно - проверка отправки (поиск сообщения через messages.getById) */
case search;
}
/** /**
* Сообщение * Сообщение
* *
@ -27,9 +39,9 @@ use mirzaev\vk\robots\group;
final class messages extends method final class messages extends method
{ {
/** /**
* @var int $mode Режим отправки * @var mode $mode Режим отправки сообщений
*/ */
protected int $mode = 1; protected mode $mode = mode::random;
/** /**
* @var array[int] Сообщения для пересылки * @var array[int] Сообщения для пересылки
@ -119,8 +131,9 @@ final class messages extends method
// Идентификатор // Идентификатор
$random_id = time(); $random_id = time();
if ($this->mode = 1) { if ($this->mode === mode::random) {
// Перемножение (по умолчанию) // Быстрая отправка сообщения
$random_id *= rand(); $random_id *= rand();
} }
@ -130,7 +143,7 @@ final class messages extends method
// Цель отправки // Цель отправки
$this->robot->api->destination($destination); $this->robot->api->destination($destination);
// Инициализация идентификатора (защита от повторных отправок) в настройках API // Инициализация идентификатора сообщения (защита от повторных отправок) в настройках API
$this->robot->api['random_id'] = $random_id; $this->robot->api['random_id'] = $random_id;
// Инициализация текста в настройках API // Инициализация текста в настройках API
@ -165,8 +178,8 @@ final class messages extends method
throw new Exception('Вконтакте: ' . $request->error->error_msg, $request->error->error_code); throw new Exception('Вконтакте: ' . $request->error->error_msg, $request->error->error_code);
} }
if ($this->mode >= 2) { if ($this->mode === mode::search) {
// Если установлен режим 2 (усиленная проверка отправленного сообщения) // Надёжная доставка сообщения
if (!empty($request["response"])) { if (!empty($request["response"])) {
// Ответ получен // Ответ получен
@ -177,7 +190,6 @@ final class messages extends method
// Запрашиваемые сообщения // Запрашиваемые сообщения
$this->robot->api['message_ids'] = $request["response"]; $this->robot->api['message_ids'] = $request["response"];
// Запрос
if ($this->robot->browser->request('POST', 'messages.getById', ['form_params' => $this->robot->api->settings])['response']['count'] === 0) { if ($this->robot->browser->request('POST', 'messages.getById', ['form_params' => $this->robot->api->settings])['response']['count'] === 0) {
// Сообщения не существует // Сообщения не существует
//!!!!!!!!!!!!!!!!!!!!!!!!!!! //!!!!!!!!!!!!!!!!!!!!!!!!!!!

View File

@ -45,22 +45,22 @@ final class core
* *
* Используется в логировании * Используется в логировании
*/ */
private string $timezone; private readonly string $timezone;
/** /**
* Путь до корня проекта * Путь до корня проекта
*/ */
private string $path_root; private readonly string $path_root;
/** /**
* Путь до папки журналов * Путь до папки журналов
*/ */
private string $path_logs; private readonly string $path_logs;
/** /**
* Путь до временной папки * Путь до временной папки
*/ */
private string $path_temp; private readonly string $path_temp;
/** /**
* Запись в журнал * Запись в журнал

View File

@ -38,8 +38,8 @@ final class group extends robot
* @param string|null $key Ключ * @param string|null $key Ключ
*/ */
public function __construct( public function __construct(
protected int|null $id = null, protected readonly int|null $id = null,
protected string|null $key = null protected readonly string|null $key = null
) { ) {
parent::__construct($id, $key); parent::__construct($id, $key);

View File

@ -46,22 +46,17 @@ abstract class robot
/** /**
* Сессия * Сессия
*/ */
protected int $session; protected readonly int $session;
/** /**
* Аккаунт * Аккаунт
*/ */
private account $account; private readonly account $account;
/**
* $messages_mode Режим отправки сообщений
*/
protected int $messages_mode = 1;
/** /**
* @var api API ВКонтакте * @var api API ВКонтакте
*/ */
protected api $api; protected readonly api $api;
/** /**
* Конструктор * Конструктор
@ -70,8 +65,8 @@ abstract class robot
* @param string|null $key Ключ * @param string|null $key Ключ
*/ */
public function __construct( public function __construct(
protected int|null $id = null, protected readonly int|null $id = null,
protected string|null $key = null protected readonly string|null $key = null
) { ) {
// Инициализация ядра // Инициализация ядра
$core = core::init(); $core = core::init();

View File

@ -23,8 +23,8 @@ final class user extends robot
* @param string|null $key Ключ * @param string|null $key Ключ
*/ */
public function __construct( public function __construct(
protected int|null $id = null, protected readonly int|null $id = null,
protected string|null $key = null protected readonly string|null $key = null
) { ) {
parent::__construct($id, $key); parent::__construct($id, $key);