Я не помню что там делал

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2022-11-06 09:04:01 +10:00
parent 4963f62103
commit 4fc8e011d0
4 changed files with 4061 additions and 2054 deletions

View File

@ -5,25 +5,24 @@
"keywords": [ "keywords": [
"accounts" "accounts"
], ],
"homepage": "https://git.hood.su/mirzaev/accounts", "homepage": "https://git.mirzaev.sexy/mirzaev/accounts",
"license": "WTFPL", "license": "WTFPL",
"authors": [ "authors": [
{ {
"name": "Arsen Mirzaev", "name": "Arsen Mirzaev",
"email": "red@hood.su", "email": "arsen@mirzaev.sexy",
"homepage": "https://hood.su/sex", "homepage": "https://hood.su/sex",
"role": "Programmer" "role": "Programmer"
} }
], ],
"support": { "support": {
"docs": "https://git.hood.su/mirzaev/accounts/manual", "docs": "https://git.mirzaev.sexy/mirzaev/accounts/manual",
"issues": "https://git.hood.su/mirzaev/accounts/issues", "issues": "https://git.mirzaev.sexy/mirzaev/accounts/issues"
"chat": "https://vk.me/darkweb228"
}, },
"require": { "require": {
"php": "~8.0", "php": "~8.1",
"ext-dom": "20031129", "ext-dom": "20031129",
"ext-libxml": "^7.4", "ext-libxml": "~8.0",
"guzzlehttp/guzzle": "^7.2" "guzzlehttp/guzzle": "^7.2"
}, },
"require-dev": { "require-dev": {

5938
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,161 @@
<?php
declare(strict_types=1);
namespace hood\accounts;
use GuzzleHttp\Client as guzzle;
use GuzzleHttp\Cookie\FileCookieJar;
use Exception;
/**
* Аккаунт
*
* @package hood\accounts
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
*/
abstract class account
{
/**
* @var guzzle $browser Браузер
*/
protected guzzle $browser;
/**
* @var bool $ssl SSL-протокол
*/
protected bool $ssl = true;
/**
* Конструктор
*
* @var int $id Идентификатор
* @var string $path Корневой каталог аккаунтов
*/
public function __construct(
protected int $id,
protected string $path = __DIR__ . DIRECTORY_SEPARATOR . 'accounts'
) {
// Инициализация
$this->path($path . DIRECTORY_SEPARATOR . $id);
$this->browser();
}
/**
* Деструктор
*
* @todo Разработать
*/
public function __destruct()
{
// Деаутентификация
// $this->deauth();
}
/**
* Инициализация браузера
*/
protected function browser(): guzzle
{
return isset($this->path, $this->ssl) ? $this->browser = new guzzle([
'verify' => $this->ssl,
'cookies' => (new FileCookieJar($this->path . DIRECTORY_SEPARATOR . 'cookie.txt'))
]) : throw new Exception('Не удалось записать браузер');
}
/**
* Инициализация директории пользователя
*
* @param string $path Путь к директории
*/
protected function path(string $path): string
{
// Инициализация директории
if (file_exists($this->path = $path) || mkdir($this->path, 0775, true)) {
return $this->path;
}
throw new Exception('Не удалось записать путь к директории');
}
/**
* Запись свойства
*
* @param string $name Название
* @param mixed $value Значение
*/
public function __set(string $name, mixed $value): void
{
match ($name) {
'id' => match (false) {
isset($this->id) => $this->id = $value,
default => throw new Exception('Запрещено перезаписывать идентификатор')
},
'browser' => match (false) {
isset($this->browser) => $this->browser = $value,
default => throw new Exception('Запрещено перезаписывать браузер')
},
'path' => match (false) {
isset($this->path) => $this->path($value),
default => throw new Exception('Запрещено перезаписывать путь к директории')
},
'ssl' => $this->ssl = $value,
default => throw new Exception('Не найдено: ' . $name, 404)
};
}
/**
* Чтение свойства
*
* @param string $name Название
*/
public function __get(string $name): mixed
{
return match ($name) {
'id' => $this->id,
'browser' => $this->browser,
'path' => $this->path,
'ssl' => $this->ssl,
default => throw new Exception('Не найдено: ' . $name, 404)
};
}
/**
* Проверка инициализации
*
* @param mixed $name Название
*/
public function __isset(string $name): bool
{
return match ($name) {
'id' => isset($this->id),
'browser' => isset($this->browser),
'path' => isset($this->path),
'ssl' => isset($this->ssl),
default => false
};
}
/**
* Удаление свойства
*
* @param mixed $name Название
*/
public function __unset(string $name): void
{
match ($name) {
'id' => throw new Exception('Запрещено деинициализировать идентификатор'),
'browser' => function () {
unset($this->browser);
},
'path' => function () {
unset($this->path);
},
'ssl' => function () {
unset($this->ssl);
},
default => null
};
}
}

View File

@ -10,7 +10,7 @@ use GuzzleHttp\Client as browser;
* Аккаунт * Аккаунт
* *
* @package mirzaev\accounts * @package mirzaev\accounts
* @author Arsen Mirzaev Tatyano-Muradovich <red@hood.su> * @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
*/ */
class account class account
{ {
@ -29,7 +29,6 @@ class account
*/ */
protected string $path; protected string $path;
/** /**
* Конструктор * Конструктор
* *