2016-10-28 00:05:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-10-28 00:05:29 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-01-25 00:15:03 +00:00
|
|
|
namespace Pterodactyl\Observers;
|
2016-10-28 00:05:29 +00:00
|
|
|
|
2017-02-17 23:19:53 +00:00
|
|
|
use Cache;
|
2017-01-25 00:15:03 +00:00
|
|
|
use Pterodactyl\Events;
|
|
|
|
use Pterodactyl\Models\Server;
|
2017-01-25 21:37:01 +00:00
|
|
|
use Pterodactyl\Notifications\ServerCreated;
|
2016-10-28 00:05:29 +00:00
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
|
|
|
2017-01-25 00:15:03 +00:00
|
|
|
class ServerObserver
|
2016-10-28 00:05:29 +00:00
|
|
|
{
|
|
|
|
use DispatchesJobs;
|
|
|
|
|
|
|
|
/**
|
2017-02-16 18:56:28 +00:00
|
|
|
* Listen to the Server creating event.
|
2016-10-28 00:05:29 +00:00
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2016-10-28 00:05:29 +00:00
|
|
|
*/
|
2017-01-25 00:15:03 +00:00
|
|
|
public function creating(Server $server)
|
2016-10-28 00:05:29 +00:00
|
|
|
{
|
2017-01-25 00:15:03 +00:00
|
|
|
event(new Events\Server\Creating($server));
|
2016-10-28 00:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-16 18:56:28 +00:00
|
|
|
* Listen to the Server created event.
|
2016-10-28 00:05:29 +00:00
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2016-10-28 00:05:29 +00:00
|
|
|
*/
|
2017-01-25 00:15:03 +00:00
|
|
|
public function created(Server $server)
|
2016-10-28 00:05:29 +00:00
|
|
|
{
|
2017-01-25 00:15:03 +00:00
|
|
|
event(new Events\Server\Created($server));
|
2017-01-25 21:37:01 +00:00
|
|
|
|
|
|
|
// Queue Notification Email
|
2017-02-12 21:26:55 +00:00
|
|
|
$server->user->notify((new ServerCreated([
|
2017-01-25 21:37:01 +00:00
|
|
|
'name' => $server->name,
|
|
|
|
'memory' => $server->memory,
|
2017-02-12 21:26:55 +00:00
|
|
|
'node' => $server->node->name,
|
|
|
|
'service' => $server->service->name,
|
2017-02-16 18:56:28 +00:00
|
|
|
'option' => $server->option->name,
|
2017-01-25 21:37:01 +00:00
|
|
|
'uuidShort' => $server->uuidShort,
|
|
|
|
])));
|
2017-01-25 00:15:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-16 18:56:28 +00:00
|
|
|
* Listen to the Server deleting event.
|
2017-01-25 00:15:03 +00:00
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2017-01-25 00:15:03 +00:00
|
|
|
*/
|
|
|
|
public function deleting(Server $server)
|
|
|
|
{
|
|
|
|
event(new Events\Server\Deleting($server));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listen to the Server deleted event.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2017-01-25 00:15:03 +00:00
|
|
|
*/
|
|
|
|
public function deleted(Server $server)
|
|
|
|
{
|
|
|
|
event(new Events\Server\Deleted($server));
|
2016-10-28 00:05:29 +00:00
|
|
|
}
|
2017-02-17 23:19:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Listen to the Server saving event.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2017-02-17 23:19:53 +00:00
|
|
|
*/
|
|
|
|
public function saving(Server $server)
|
|
|
|
{
|
|
|
|
event(new Events\Server\Saving($server));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listen to the Server saved event.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2017-02-17 23:19:53 +00:00
|
|
|
*/
|
|
|
|
public function saved(Server $server)
|
|
|
|
{
|
|
|
|
event(new Events\Server\Saved($server));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-05 00:03:49 +00:00
|
|
|
* Listen to the Server updating event.
|
2017-02-17 23:19:53 +00:00
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2017-02-17 23:19:53 +00:00
|
|
|
*/
|
|
|
|
public function updating(Server $server)
|
|
|
|
{
|
|
|
|
event(new Events\Server\Updating($server));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listen to the Server saved event.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2017-03-05 00:03:49 +00:00
|
|
|
* @return void
|
2017-02-17 23:19:53 +00:00
|
|
|
*/
|
|
|
|
public function updated(Server $server)
|
|
|
|
{
|
2017-03-05 00:28:23 +00:00
|
|
|
/*
|
2017-03-05 00:24:46 +00:00
|
|
|
* The cached byUuid model calls are tagged with Model:Server:byUuid:<uuid>
|
|
|
|
* so that they can be accessed regardless of if there is an Auth::user()
|
|
|
|
* defined or not.
|
|
|
|
*
|
|
|
|
* We can also delete all cached byUuid items using the Model:Server tag.
|
|
|
|
*/
|
|
|
|
Cache::tags('Model:Server:byUuid:' . $server->uuid)->flush();
|
|
|
|
Cache::tags('Model:Server:byUuid:' . $server->uuidShort)->flush();
|
2017-05-01 18:21:18 +00:00
|
|
|
Cache::tags('Downloads:Server:' . $server->uuid)->flush();
|
2017-02-17 23:19:53 +00:00
|
|
|
|
|
|
|
event(new Events\Server\Updated($server));
|
|
|
|
}
|
2016-10-28 00:05:29 +00:00
|
|
|
}
|