Files
kiri-core/HttpServer/Abstracts/Callback.php
T

129 lines
4.2 KiB
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 01:27:08 +08:00
2020-09-04 01:05:33 +08:00
namespace HttpServer\Abstracts;
2020-08-31 01:27:08 +08:00
2021-03-02 18:33:12 +08:00
use Database\Connection;
2020-08-31 01:27:08 +08:00
use Exception;
2020-09-02 17:33:48 +08:00
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
2020-09-04 01:05:33 +08:00
use Snowflake\Abstracts\Config;
2021-03-02 19:16:20 +08:00
use Snowflake\Core\Json;
2021-03-02 19:24:00 +08:00
use Snowflake\Error\LoggerProcess;
2020-08-31 01:27:08 +08:00
use Snowflake\Event;
2021-03-02 18:33:12 +08:00
use Snowflake\Exception\ComponentException;
2020-09-02 19:09:32 +08:00
use Snowflake\Exception\ConfigException;
2020-08-31 01:27:08 +08:00
use Snowflake\Snowflake;
2021-03-02 19:16:20 +08:00
use Swoole\Process;
use Swoole\Server;
2020-08-31 01:27:08 +08:00
2021-02-20 15:23:43 +08:00
/**
* Class Callback
* @package HttpServer\Abstracts
*/
2021-02-20 17:33:28 +08:00
abstract class Callback extends HttpService
2020-08-31 01:27:08 +08:00
{
2021-04-04 03:01:12 +08:00
const EVENT_ERROR = 'WORKER:ERROR';
const EVENT_STOP = 'WORKER:STOP';
const EVENT_EXIT = 'WORKER:EXIT';
private array $_MESSAGE = [
self::EVENT_ERROR => 'The server error. at No.',
self::EVENT_STOP => 'The server stop. at No.',
self::EVENT_EXIT => 'The server exit. at No.',
];
/**
* @return PHPMailer
* @throws \PHPMailer\PHPMailer\Exception
* @throws ConfigException
*/
private function createEmail(): PHPMailer
{
$mail = new PHPMailer(true);
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = Config::get('email.host'); // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Debugoutput = false; // Enable SMTP authentication
$mail->CharSet = "UTF8"; // Enable SMTP authentication
$mail->Username = Config::get('email.username'); // SMTP username
$mail->Password = Config::get('email.password'); // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
$mail->Port = Config::get('email.port'); // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
$mail->setFrom(Config::get('email.send.address'), Config::get('email.send.nickname'));
return $mail;
}
/**
* @param $message
* @throws
*/
protected function system_mail($message)
{
try {
if (!Config::get('email.enable', false)) {
return;
}
$mail = $this->createEmail();
$receives = Config::get('email.receive');
if (empty($receives) || !is_array($receives)) {
throw new Exception('接收人信息错误');
}
foreach ($receives as $receive) {
$mail->addAddress($receive['address'], $receive['nickname']); // Add a recipient
}
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'service error';
$mail->Body = $message;
$mail->AltBody = $message;
$mail->send();
} catch (\Throwable $e) {
$this->addError($e, 'email');
}
}
/**
* @throws ConfigException
* @throws Exception
*/
protected function clearMysqlClient()
{
$databases = Config::get('databases', []);
if (empty($databases)) {
return;
}
$application = Snowflake::app();
foreach ($databases as $name => $database) {
/** @var Connection $connection */
$connection = $application->get('databases.' . $name, false);
if (empty($connection)) {
continue;
}
$connection->disconnect();
}
}
/**
* @throws ConfigException
* @throws Exception
*/
protected function clearRedisClient()
{
$redis = Snowflake::app()->getRedis();
$redis->destroy();
}
2021-03-02 18:33:12 +08:00
2020-08-31 01:27:08 +08:00
}