This commit is contained in:
2020-09-02 17:33:48 +08:00
parent f64942424b
commit 5fa97ded93
10 changed files with 147 additions and 68 deletions
+43 -1
View File
@@ -6,6 +6,8 @@ namespace HttpServer\Events\Abstracts;
use Exception; use Exception;
use HttpServer\Application; use HttpServer\Application;
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use Snowflake\Error\Logger; use Snowflake\Error\Logger;
use Snowflake\Event; use Snowflake\Event;
use Snowflake\Snowflake; use Snowflake\Snowflake;
@@ -38,7 +40,6 @@ abstract class Callback extends Application
} }
const EVENT_ERROR = 'WORKER:ERROR'; const EVENT_ERROR = 'WORKER:ERROR';
const EVENT_STOP = 'WORKER:STOP'; const EVENT_STOP = 'WORKER:STOP';
const EVENT_EXIT = 'WORKER:EXIT'; const EVENT_EXIT = 'WORKER:EXIT';
@@ -78,4 +79,45 @@ abstract class Callback extends Application
} }
} }
/**
* @param $email
* @param $nickname
* @param $message
* @throws
*/
protected function system_mail($email, $nickname, $message)
{
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'smtp1.example.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
$mail->Port = 587; // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
//Recipients
$mail->setFrom('system@example.com', '系统管理员');
$mail->addAddress($email, $nickname); // Add a recipient
// Attachments
// $mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
// $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = $message;
$mail->AltBody = $message;
$mail->send();
} catch (Exception $e) {
$this->addError($e->getMessage(),'email');
}
}
} }
+20 -2
View File
@@ -4,15 +4,33 @@
namespace HttpServer\Events; namespace HttpServer\Events;
use Exception;
use HttpServer\Events\Abstracts\Callback; use HttpServer\Events\Abstracts\Callback;
use Snowflake\Event;
use Snowflake\Exception\ComponentException;
use Snowflake\Snowflake;
use Swoole\Server;
/**
* Class OnAfterReload
* @package HttpServer\Events
*/
class OnAfterReload extends Callback class OnAfterReload extends Callback
{ {
public function onHandler() /**
* @param Server $server
* @throws ComponentException
* @throws Exception
*/
public function onHandler(Server $server)
{ {
// TODO: Implement onHandler() method. $event = Snowflake::get()->getEvent();
if (!$event->exists(Event::SERVER_AFTER_RELOAD)) {
return;
}
$event->trigger(Event::SERVER_AFTER_RELOAD, [$server]);
} }
} }
+18 -2
View File
@@ -4,14 +4,30 @@
namespace HttpServer\Events; namespace HttpServer\Events;
use Exception;
use HttpServer\Events\Abstracts\Callback; use HttpServer\Events\Abstracts\Callback;
use Snowflake\Event;
use Snowflake\Snowflake;
use Swoole\Server;
/**
* Class OnBeforeReload
* @package HttpServer\Events
*/
class OnBeforeReload extends Callback class OnBeforeReload extends Callback
{ {
public function onHandler() /**
* @param Server $server
* @throws Exception
*/
public function onHandler(Server $server)
{ {
// TODO: Implement onHandler() method. $event = Snowflake::get()->getEvent();
if (!$event->exists(Event::SERVER_BEFORE_RELOAD)) {
return;
}
$event->trigger(Event::SERVER_BEFORE_RELOAD, [$server]);
} }
} }
+9 -45
View File
@@ -12,6 +12,7 @@ use Snowflake\Config;
use Snowflake\Core\JSON; use Snowflake\Core\JSON;
use Snowflake\Error\Logger; use Snowflake\Error\Logger;
use Snowflake\Event; use Snowflake\Event;
use Snowflake\Exception\ComponentException;
use Snowflake\Exception\ConfigException; use Snowflake\Exception\ConfigException;
use Snowflake\Snowflake; use Snowflake\Snowflake;
use Swoole\Server; use Swoole\Server;
@@ -26,55 +27,18 @@ class OnShutdown extends Callback
/** /**
* @param Server $server * @param Server $server
* @throws ConfigException * @throws ConfigException|ComponentException
* @throws Exception
*/ */
public function onHandler(Server $server) public function onHandler(Server $server)
{ {
$email = Config::get('email'); $this->system_mail(Config::get('email'), Config::get('nickname'), 'server shutdown~');
$nickname = Config::get('nickname');
$this->system_mail($email, $nickname); $event = Snowflake::get()->getEvent();
if (!$event->exists(Event::SERVER_SHUTDOWN)) {
return;
}
$event->trigger(Event::SERVER_SHUTDOWN);
} }
/**
* @param $email
* @param $nickname
*/
protected function system_mail($email, $nickname)
{
try {
$mail = new PHPMailer(true);
//Server settings
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'smtp1.example.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
$mail->Port = 587; // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
//Recipients
$mail->setFrom('system@example.com', '系统管理员');
$mail->addAddress($email, $nickname); // Add a recipient
// Attachments
// $mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
// $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
// Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
}
} }
+22 -4
View File
@@ -4,19 +4,37 @@
namespace HttpServer\Events; namespace HttpServer\Events;
use Exception;
use HttpServer\Events\Abstracts\Callback; use HttpServer\Events\Abstracts\Callback;
use Snowflake\Config;
use Snowflake\Exception\ConfigException;
use Swoole\Server;
class OnWorkerError extends Callback class OnWorkerError extends Callback
{ {
/** /**
* @param $server * @param Server $server
* @param $worker_id * @param int $worker_id
* @throws \Exception * @param int $worker_pid
* @param int $exit_code
* @param int $signal
* @throws ConfigException
*/ */
public function onHandler($server, $worker_id) public function onHandler(Server $server, int $worker_id, int $worker_pid, int $exit_code, int $signal)
{ {
$this->clear($server, $worker_id, self::EVENT_ERROR); $this->clear($server, $worker_id, self::EVENT_ERROR);
if (!Config::has('email')) {
return;
}
$email = Config::get('email');
$name = Config::get('nickname', false, 'Admin');
$this->system_mail($email, $name, print_r([
'$worker_pid' => $worker_pid,
'$worker_id' => $worker_id,
'$exit_code' => $exit_code,
'$signal' => $signal,
], true));
} }
} }
+6 -1
View File
@@ -4,15 +4,20 @@
namespace HttpServer\Events; namespace HttpServer\Events;
use Exception;
use HttpServer\Events\Abstracts\Callback; use HttpServer\Events\Abstracts\Callback;
/**
* Class OnWorkerExit
* @package HttpServer\Events
*/
class OnWorkerExit extends Callback class OnWorkerExit extends Callback
{ {
/** /**
* @param $server * @param $server
* @param $worker_id * @param $worker_id
* @throws \Exception * @throws Exception
*/ */
public function onHandler($server, $worker_id) public function onHandler($server, $worker_id)
{ {
+22 -7
View File
@@ -175,8 +175,8 @@ class Server extends Application
} }
} else { } else {
$newListener = $this->baseServer->addlistener($config['host'], $config['port'], $config['mode']); $newListener = $this->baseServer->addlistener($config['host'], $config['port'], $config['mode']);
if (!empty($settings)) { if (isset($config['settings']) && is_array($config['settings'])) {
$newListener->set($settings); $newListener->set($config['settings']);
} }
$this->onListenerBind($config, $this->baseServer, $event); $this->onListenerBind($config, $this->baseServer, $event);
} }
@@ -196,15 +196,15 @@ class Server extends Application
{ {
$this->debug(sprintf('Listener %s::%d', $config['host'], $config['port'])); $this->debug(sprintf('Listener %s::%d', $config['host'], $config['port']));
if ($config['type'] == self::HTTP) { if ($config['type'] == self::HTTP) {
$newListener->on('request', [Snowflake::createObject(OnRequest::class), 'onHandler']); $this->onBind($newListener, 'request', [Snowflake::createObject(OnRequest::class), 'onHandler']);
if (!$event->exists(Event::SERVER_WORKER_START, [$this, 'onLoadHttpHandler'])) { if (!$event->exists(Event::SERVER_WORKER_START, [$this, 'onLoadHttpHandler'])) {
$event->on(Event::SERVER_WORKER_START, [$this, 'onLoadHttpHandler']); $event->on(Event::SERVER_WORKER_START, [$this, 'onLoadHttpHandler']);
} }
} else if ($config['type'] == self::TCP || $config['type'] == self::PACKAGE) { } else if ($config['type'] == self::TCP || $config['type'] == self::PACKAGE) {
$newListener->on('connect', [Snowflake::createObject(OnConnect::class), 'onHandler']); $this->onBind($newListener, 'connect', [Snowflake::createObject(OnConnect::class), 'onHandler']);
$newListener->on('close', [Snowflake::createObject(OnClose::class), 'onHandler']); $this->onBind($newListener, 'close', [Snowflake::createObject(OnClose::class), 'onHandler']);
$newListener->on('packet', [Snowflake::createObject(OnPacket::class), 'onHandler']); $this->onBind($newListener, 'packet', [Snowflake::createObject(OnPacket::class), 'onHandler']);
$newListener->on('receive', [Snowflake::createObject(OnReceive::class), 'onHandler']); $this->onBind($newListener, 'receive', [Snowflake::createObject(OnReceive::class), 'onHandler']);
} else if ($config['type'] == self::WEBSOCKET) { } else if ($config['type'] == self::WEBSOCKET) {
throw new Exception('Base server must instanceof \Swoole\WebSocket\Server::class.'); throw new Exception('Base server must instanceof \Swoole\WebSocket\Server::class.');
} else { } else {
@@ -213,6 +213,21 @@ class Server extends Application
} }
/**
* @param $server
* @param $name
* @param $callback
*/
private function onBind($server, $name, $callback)
{
if (in_array($name, $this->listening)) {
return;
}
$this->listening[] = $name;
$server->on($name, $callback);
}
/** /**
* Load router handler * Load router handler
*/ */
+4 -3
View File
@@ -49,14 +49,15 @@ trait Server
*/ */
public function onHandlerListener() public function onHandlerListener()
{ {
$this->on('start', $this->createHandler('start'));
$this->on('shutdown', $this->createHandler('shutdown'));
$this->on('workerStop', $this->createHandler('workerStop')); $this->on('workerStop', $this->createHandler('workerStop'));
$this->on('workerExit', $this->createHandler('workerExit')); $this->on('workerExit', $this->createHandler('workerExit'));
$this->on('workerStart', $this->createHandler('workerStart')); $this->on('workerStart', $this->createHandler('workerStart'));
$this->on('workerError', $this->createHandler('workerError')); $this->on('workerError', $this->createHandler('workerError'));
$this->on('managerStop', $this->createHandler('managerStop'));
$this->on('managerStart', $this->createHandler('managerStart')); $this->on('managerStart', $this->createHandler('managerStart'));
$this->on('managerStop', $this->createHandler('managerStop'));
$this->on('pipeMessage', $this->createHandler('pipeMessage'));
$this->on('shutdown', $this->createHandler('shutdown'));
$this->on('start', $this->createHandler('start'));
$this->addTask(); $this->addTask();
} }
-4
View File
@@ -4,13 +4,9 @@
namespace HttpServer\Service; namespace HttpServer\Service;
use Exception;
use HttpServer\Service\Abstracts\Tcp; use HttpServer\Service\Abstracts\Tcp;
use ReflectionException; use ReflectionException;
use Snowflake\Event;
use Snowflake\Exception\NotFindClassException; use Snowflake\Exception\NotFindClassException;
use Snowflake\Snowflake;
use Swoole\Server;
/** /**
* Class Receive * Class Receive
+4
View File
@@ -33,6 +33,9 @@ class Event extends BaseObject
const RELEASE_ALL = 'SERVER:RELEASE:ALL'; const RELEASE_ALL = 'SERVER:RELEASE:ALL';
const SERVER_AFTER_RELOAD = 'SERVER:AFTER:RELOAD';
const SERVER_BEFORE_RELOAD = 'SERVER:BEFORE:RELOAD';
const SERVER_EVENT_START = 'SERVER:EVENT:START'; const SERVER_EVENT_START = 'SERVER:EVENT:START';
const SERVER_MANAGER_START = 'SERVER:EVENT:MANAGER:START'; const SERVER_MANAGER_START = 'SERVER:EVENT:MANAGER:START';
const SERVER_MANAGER_STOP = 'SERVER:EVENT:MANAGER:START'; const SERVER_MANAGER_STOP = 'SERVER:EVENT:MANAGER:START';
@@ -40,6 +43,7 @@ class Event extends BaseObject
const SERVER_WORKER_START = 'SERVER:EVENT:WORKER:START'; const SERVER_WORKER_START = 'SERVER:EVENT:WORKER:START';
const SERVER_WORKER_EXIT = 'SERVER:EVENT:WORKER:EXIT'; const SERVER_WORKER_EXIT = 'SERVER:EVENT:WORKER:EXIT';
const SERVER_WORKER_ERROR = 'SERVER:EVENT:WORKER:ERROR'; const SERVER_WORKER_ERROR = 'SERVER:EVENT:WORKER:ERROR';
const SERVER_SHUTDOWN = 'SERVER:EVENT:SHUTDOWN';
const SERVER_HANDSHAKE = 'on handshake'; const SERVER_HANDSHAKE = 'on handshake';
const SERVER_MESSAGE = 'on message'; const SERVER_MESSAGE = 'on message';