2015-12-06 18:58:49 +00:00
< ? php
2016-01-20 00:10:39 +00:00
/**
2016-01-20 21:05:16 +00:00
* Pterodactyl - Panel
2017-01-24 22:57:08 +00:00
* Copyright ( c ) 2015 - 2017 Dane Everitt < dane @ daneeveritt . com >.
2016-01-20 00:10:39 +00:00
*
2016-01-20 20:56:40 +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 :
2016-01-20 00:10:39 +00:00
*
2016-01-20 20:56:40 +00:00
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software .
2016-01-20 00:10:39 +00:00
*
2016-01-20 20:56:40 +00:00
* 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-01-20 00:10:39 +00:00
*/
2016-12-07 22:46:38 +00:00
2015-12-06 18:58:49 +00:00
namespace Pterodactyl\Http\Controllers\Admin ;
2016-01-02 23:04:18 +00:00
use Log ;
2016-12-07 22:46:38 +00:00
use Alert ;
2017-02-24 23:19:03 +00:00
use Javascript ;
2015-12-15 20:08:41 +00:00
use Pterodactyl\Models ;
2016-12-07 22:46:38 +00:00
use Illuminate\Http\Request ;
use Pterodactyl\Exceptions\DisplayException ;
use Pterodactyl\Http\Controllers\Controller ;
2015-12-14 03:22:16 +00:00
use Pterodactyl\Repositories\ServerRepository ;
2016-02-08 23:03:02 +00:00
use Pterodactyl\Repositories\DatabaseRepository ;
2016-09-14 19:19:16 +00:00
use Pterodactyl\Exceptions\DisplayValidationException ;
2015-12-06 18:58:49 +00:00
class ServersController extends Controller
{
/**
2016-12-07 22:46:38 +00:00
* Controller Constructor .
2015-12-06 18:58:49 +00:00
*/
public function __construct ()
{
2016-01-04 21:09:39 +00:00
//
2015-12-06 18:58:49 +00:00
}
public function getIndex ( Request $request )
{
2017-02-19 00:31:44 +00:00
$servers = Models\Server :: withTrashed () -> with (
'node' , 'user' , 'allocation'
);
if ( ! is_null ( $request -> input ( 'query' ))) {
$servers -> search ( $request -> input ( 'query' ));
}
2016-10-12 21:12:27 +00:00
return view ( 'admin.servers.index' , [
2017-02-19 00:31:44 +00:00
'servers' => $servers -> paginate ( 25 ),
2015-12-06 18:58:49 +00:00
]);
}
public function getNew ( Request $request )
{
2017-02-24 23:19:03 +00:00
$services = Models\Service :: with ( 'options.packs' , 'options.variables' ) -> get ();
Javascript :: put ([
'services' => $services -> map ( function ( $item ) {
return array_merge ( $item -> toArray (), [
'options' => $item -> options -> keyBy ( 'id' ) -> toArray (),
]);
}) -> keyBy ( 'id' ),
]);
2015-12-07 05:47:19 +00:00
return view ( 'admin.servers.new' , [
2015-12-15 20:08:41 +00:00
'locations' => Models\Location :: all (),
2017-02-24 23:19:03 +00:00
'services' => $services ,
2015-12-07 05:47:19 +00:00
]);
2015-12-06 18:58:49 +00:00
}
public function getView ( Request $request , $id )
{
2017-02-09 22:43:54 +00:00
$server = Models\Server :: withTrashed () -> with (
'user' , 'option.variables' , 'variables' ,
'node.allocations' , 'databases.host'
) -> findOrFail ( $id );
$server -> option -> variables -> transform ( function ( $item , $key ) use ( $server ) {
$item -> server_value = $server -> variables -> where ( 'variable_id' , $item -> id ) -> pluck ( 'variable_value' ) -> first ();
return $item ;
});
2016-01-04 04:16:03 +00:00
2016-01-02 23:04:18 +00:00
return view ( 'admin.servers.view' , [
2016-01-03 04:21:22 +00:00
'server' => $server ,
2017-02-09 22:43:54 +00:00
'assigned' => $server -> node -> allocations -> where ( 'server_id' , $server -> id ) -> sortBy ( 'port' ) -> sortBy ( 'ip' ),
'unassigned' => $server -> node -> allocations -> where ( 'server_id' , null ) -> sortBy ( 'port' ) -> sortBy ( 'ip' ),
2016-12-07 22:46:38 +00:00
'db_servers' => Models\DatabaseServer :: all (),
2016-01-02 23:04:18 +00:00
]);
2015-12-06 18:58:49 +00:00
}
2015-12-10 23:30:47 +00:00
public function postNewServer ( Request $request )
{
2015-12-12 04:28:58 +00:00
try {
2015-12-14 03:22:16 +00:00
$server = new ServerRepository ;
2017-02-11 01:26:38 +00:00
$response = $server -> create ( $request -> except ( '_token' ));
return redirect () -> route ( 'admin.servers.view' , [ 'id' => $response -> id ]);
2016-09-07 20:12:06 +00:00
} catch ( DisplayValidationException $ex ) {
return redirect () -> route ( 'admin.servers.new' ) -> withErrors ( json_decode ( $ex -> getMessage ())) -> withInput ();
} catch ( DisplayException $ex ) {
Alert :: danger ( $ex -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
2016-09-07 20:12:06 +00:00
return redirect () -> route ( 'admin.servers.new' ) -> withInput ();
} catch ( \Exception $ex ) {
Log :: error ( $ex );
Alert :: danger ( 'An unhandled exception occured while attemping to add this server. Please try again.' ) -> flash ();
2016-12-07 22:46:38 +00:00
2015-12-15 20:08:41 +00:00
return redirect () -> route ( 'admin.servers.new' ) -> withInput ();
}
2015-12-10 23:30:47 +00:00
}
/**
* Returns a JSON tree of all avaliable nodes in a given location .
*
* @ param \Illuminate\Http\Request $request
* @ return \Illuminate\Contracts\View\View
*/
public function postNewServerGetNodes ( Request $request )
{
2017-02-19 00:31:44 +00:00
$nodes = Models\Node :: with ( 'allocations' ) -> where ( 'location_id' , $request -> input ( 'location' )) -> get ();
2017-02-24 23:23:03 +00:00
2017-02-19 00:31:44 +00:00
return $nodes -> map ( function ( $item ) {
2017-02-24 23:23:03 +00:00
$filtered = $item -> allocations -> where ( 'server_id' , null ) -> map ( function ( $map ) {
2017-02-24 03:52:05 +00:00
return collect ( $map ) -> only ([ 'id' , 'ip' , 'port' ]);
2017-02-19 00:31:44 +00:00
});
2017-02-24 03:52:05 +00:00
$item -> ports = $filtered -> map ( function ( $map ) use ( $item ) {
2017-02-19 00:31:44 +00:00
return [
2017-02-24 03:52:05 +00:00
'id' => $map [ 'id' ],
'text' => $map [ 'ip' ] . ':' . $map [ 'port' ],
2017-02-19 00:31:44 +00:00
];
}) -> values ();
return [
'id' => $item -> id ,
'text' => $item -> name ,
'allocations' => $item -> ports ,
];
}) -> values ();
2015-12-10 23:30:47 +00:00
}
2016-01-02 23:04:18 +00:00
public function postUpdateServerDetails ( Request $request , $id )
{
try {
$server = new ServerRepository ;
2017-02-25 05:48:12 +00:00
$server -> updateDetails ( $id , $request -> intersect ([
2017-03-04 04:38:21 +00:00
'owner_id' , 'name' , 'reset_token' ,
2017-02-25 05:48:12 +00:00
]));
2016-01-02 23:04:18 +00:00
Alert :: success ( 'Server details were successfully updated.' ) -> flash ();
2016-09-18 00:14:36 +00:00
} catch ( DisplayValidationException $ex ) {
2016-01-02 23:04:18 +00:00
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_details' ,
2016-09-18 00:14:36 +00:00
]) -> withErrors ( json_decode ( $ex -> getMessage ())) -> withInput ();
} catch ( DisplayException $ex ) {
Alert :: danger ( $ex -> getMessage ()) -> flash ();
} catch ( \Exception $ex ) {
Log :: error ( $ex );
Alert :: danger ( 'An unhandled exception occured while attemping to update this server. Please try again.' ) -> flash ();
}
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_details' ,
2016-09-18 00:14:36 +00:00
]) -> withInput ();
}
2016-12-07 22:46:38 +00:00
public function postUpdateContainerDetails ( Request $request , $id )
{
2016-09-18 00:14:36 +00:00
try {
$server = new ServerRepository ;
2017-02-25 05:48:12 +00:00
$server -> updateContainer ( $id , $request -> intersect ( 'docker_image' ));
2016-09-18 00:14:36 +00:00
Alert :: success ( 'Successfully updated this server\'s docker image.' ) -> flash ();
2016-09-07 20:12:06 +00:00
} catch ( DisplayValidationException $ex ) {
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_details' ,
2016-09-07 20:12:06 +00:00
]) -> withErrors ( json_decode ( $ex -> getMessage ())) -> withInput ();
} catch ( DisplayException $ex ) {
Alert :: danger ( $ex -> getMessage ()) -> flash ();
} catch ( \Exception $ex ) {
Log :: error ( $ex );
2016-09-18 00:14:36 +00:00
Alert :: danger ( 'An unhandled exception occured while attemping to update this server\'s docker image. Please try again.' ) -> flash ();
2016-01-02 23:04:18 +00:00
}
2016-09-07 20:12:06 +00:00
2016-09-18 00:14:36 +00:00
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_details' ,
2016-09-18 00:14:36 +00:00
]);
2016-01-02 23:04:18 +00:00
}
2016-12-07 22:46:38 +00:00
public function postUpdateServerToggleBuild ( Request $request , $id )
{
2017-02-09 22:43:54 +00:00
$server = Models\Server :: with ( 'node' ) -> findOrFail ( $id );
2016-01-03 04:21:22 +00:00
try {
2017-02-09 22:43:54 +00:00
$res = $server -> node -> guzzleClient ([
'X-Access-Server' => $server -> uuid ,
2017-02-19 03:33:15 +00:00
'X-Access-Token' => $server -> node -> daemonSecret ,
2017-02-09 22:43:54 +00:00
]) -> request ( 'POST' , '/server/rebuild' );
2016-01-03 04:21:22 +00:00
Alert :: success ( 'A rebuild has been queued successfully. It will run the next time this server is booted.' ) -> flash ();
} catch ( \GuzzleHttp\Exception\TransferException $ex ) {
Log :: warning ( $ex );
2016-08-16 23:20:58 +00:00
Alert :: danger ( 'An error occured while attempting to toggle a rebuild.' ) -> flash ();
2016-01-03 04:21:22 +00:00
}
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_manage' ,
2016-01-03 04:21:22 +00:00
]);
}
public function postUpdateServerUpdateBuild ( Request $request , $id )
{
try {
$server = new ServerRepository ;
2017-02-25 05:48:12 +00:00
$server -> changeBuild ( $id , $request -> intersect ([
'allocation_id' , 'add_allocations' ,
'remove_allocations' , 'memory' ,
2017-02-10 22:18:46 +00:00
'swap' , 'io' , 'cpu' ,
2017-02-09 22:43:54 +00:00
]));
2016-01-03 04:21:22 +00:00
Alert :: success ( 'Server details were successfully updated.' ) -> flash ();
2016-09-07 20:12:06 +00:00
} catch ( DisplayValidationException $ex ) {
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_build' ,
2016-09-07 20:12:06 +00:00
]) -> withErrors ( json_decode ( $ex -> getMessage ())) -> withInput ();
} catch ( DisplayException $ex ) {
Alert :: danger ( $ex -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
2016-09-07 20:12:06 +00:00
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_build' ,
2016-09-07 20:12:06 +00:00
]);
} catch ( \Exception $ex ) {
Log :: error ( $ex );
Alert :: danger ( 'An unhandled exception occured while attemping to add this server. Please try again.' ) -> flash ();
2016-01-03 04:21:22 +00:00
}
2016-09-07 20:12:06 +00:00
2016-01-03 04:21:22 +00:00
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_build' ,
2016-01-03 04:21:22 +00:00
]);
}
2016-01-04 04:16:03 +00:00
public function deleteServer ( Request $request , $id , $force = null )
{
try {
$server = new ServerRepository ;
$server -> deleteServer ( $id , $force );
2016-10-28 00:05:29 +00:00
Alert :: success ( 'Server has been marked for deletion on the system.' ) -> flash ();
2016-12-07 22:46:38 +00:00
2016-01-04 04:16:03 +00:00
return redirect () -> route ( 'admin.servers' );
2016-09-07 20:12:06 +00:00
} catch ( DisplayException $ex ) {
Alert :: danger ( $ex -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
} catch ( \Exception $ex ) {
2016-09-07 20:12:06 +00:00
Log :: error ( $ex );
Alert :: danger ( 'An unhandled exception occured while attemping to delete this server. Please try again.' ) -> flash ();
2016-01-04 04:16:03 +00:00
}
2016-12-07 22:46:38 +00:00
2016-09-14 22:35:33 +00:00
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_delete' ,
2016-09-14 22:35:33 +00:00
]);
2016-01-04 04:16:03 +00:00
}
2016-01-04 21:09:22 +00:00
public function postToggleInstall ( Request $request , $id )
{
try {
$server = new ServerRepository ;
$server -> toggleInstall ( $id );
Alert :: success ( 'Server status was successfully toggled.' ) -> flash ();
2016-09-07 20:12:06 +00:00
} catch ( DisplayException $ex ) {
2016-01-23 01:39:16 +00:00
Alert :: danger ( $ex -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
} catch ( \Exception $ex ) {
2016-01-23 01:39:16 +00:00
Log :: error ( $ex );
2016-01-04 21:09:22 +00:00
Alert :: danger ( 'An unhandled exception occured while attemping to toggle this servers status.' ) -> flash ();
} finally {
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_manage' ,
2016-01-04 21:09:22 +00:00
]);
}
}
2016-01-10 23:57:22 +00:00
public function postUpdateServerStartup ( Request $request , $id )
{
try {
$server = new ServerRepository ;
$server -> updateStartup ( $id , $request -> except ([
2016-12-07 22:46:38 +00:00
'_token' ,
2016-02-13 22:36:03 +00:00
]), true );
2016-01-10 23:57:22 +00:00
Alert :: success ( 'Server startup variables were successfully updated.' ) -> flash ();
} catch ( \Pterodactyl\Exceptions\DisplayException $e ) {
Alert :: danger ( $e -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
} catch ( \Exception $e ) {
2016-01-10 23:57:22 +00:00
Log :: error ( $e );
Alert :: danger ( 'An unhandled exception occured while attemping to update startup variables for this server. Please try again.' ) -> flash ();
} finally {
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_startup' ,
2016-01-10 23:57:22 +00:00
]) -> withInput ();
}
}
2016-02-08 23:03:02 +00:00
public function postDatabase ( Request $request , $id )
{
try {
$repo = new DatabaseRepository ;
2017-02-09 22:43:54 +00:00
$repo -> create ( $id , $request -> only ([
2017-02-10 22:18:46 +00:00
'db_server' , 'database' , 'remote' ,
2016-02-08 23:03:02 +00:00
]));
Alert :: success ( 'Added new database to this server.' ) -> flash ();
2016-09-07 20:12:06 +00:00
} catch ( DisplayValidationException $ex ) {
2016-02-08 23:03:02 +00:00
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_database' ,
2016-02-08 23:03:02 +00:00
]) -> withInput () -> withErrors ( json_decode ( $ex -> getMessage ())) -> withInput ();
} catch ( \Exception $ex ) {
Log :: error ( $ex );
Alert :: danger ( 'An exception occured while attempting to add a new database for this server.' ) -> flash ();
}
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_database' ,
2016-02-08 23:03:02 +00:00
]) -> withInput ();
}
2016-09-02 01:16:38 +00:00
public function postSuspendServer ( Request $request , $id )
{
try {
$repo = new ServerRepository ;
$repo -> suspend ( $id );
Alert :: success ( 'Server has been suspended on the system. All running processes have been stopped and will not be startable until it is un-suspended.' );
2016-09-07 20:12:06 +00:00
} catch ( DisplayException $e ) {
2016-09-02 01:16:38 +00:00
Alert :: danger ( $e -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
} catch ( \Exception $e ) {
2016-09-02 01:16:38 +00:00
Log :: error ( $e );
Alert :: danger ( 'An unhandled exception occured while attemping to suspend this server. Please try again.' ) -> flash ();
} finally {
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_manage' ,
2016-09-02 01:16:38 +00:00
]);
}
}
public function postUnsuspendServer ( Request $request , $id )
{
try {
$repo = new ServerRepository ;
$repo -> unsuspend ( $id );
Alert :: success ( 'Server has been unsuspended on the system. Access has been re-enabled.' );
2016-09-07 20:12:06 +00:00
} catch ( DisplayException $e ) {
2016-09-02 01:16:38 +00:00
Alert :: danger ( $e -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
} catch ( \Exception $e ) {
2016-09-02 01:16:38 +00:00
Log :: error ( $e );
Alert :: danger ( 'An unhandled exception occured while attemping to unsuspend this server. Please try again.' ) -> flash ();
} finally {
return redirect () -> route ( 'admin.servers.view' , [
'id' => $id ,
2016-12-07 22:46:38 +00:00
'tab' => 'tab_manage' ,
2016-09-02 01:16:38 +00:00
]);
}
}
2016-10-28 00:05:29 +00:00
public function postQueuedDeletionHandler ( Request $request , $id )
{
try {
$repo = new ServerRepository ;
2016-12-07 22:46:38 +00:00
if ( ! is_null ( $request -> input ( 'cancel' ))) {
2016-10-28 00:05:29 +00:00
$repo -> cancelDeletion ( $id );
Alert :: success ( 'Server deletion has been cancelled. This server will remain suspended until you unsuspend it.' ) -> flash ();
2016-12-07 22:46:38 +00:00
2016-10-28 00:05:29 +00:00
return redirect () -> route ( 'admin.servers.view' , $id );
2016-12-07 22:46:38 +00:00
} elseif ( ! is_null ( $request -> input ( 'delete' ))) {
2016-10-28 00:05:29 +00:00
$repo -> deleteNow ( $id );
Alert :: success ( 'Server was successfully deleted from the system.' ) -> flash ();
2016-12-07 22:46:38 +00:00
2016-10-28 00:05:29 +00:00
return redirect () -> route ( 'admin.servers' );
2016-12-07 22:46:38 +00:00
} elseif ( ! is_null ( $request -> input ( 'force_delete' ))) {
2016-10-28 00:05:29 +00:00
$repo -> deleteNow ( $id , true );
Alert :: success ( 'Server was successfully force deleted from the system.' ) -> flash ();
2016-12-07 22:46:38 +00:00
2016-10-28 00:05:29 +00:00
return redirect () -> route ( 'admin.servers' );
}
} catch ( DisplayException $ex ) {
Alert :: danger ( $ex -> getMessage ()) -> flash ();
2016-12-07 22:46:38 +00:00
2016-10-28 00:05:29 +00:00
return redirect () -> route ( 'admin.servers.view' , $id );
} catch ( \Exception $ex ) {
Log :: error ( $ex );
Alert :: danger ( 'An unhandled error occured while attempting to perform this action.' ) -> flash ();
2016-12-07 22:46:38 +00:00
2016-10-28 00:05:29 +00:00
return redirect () -> route ( 'admin.servers.view' , $id );
}
}
2015-12-06 18:58:49 +00:00
}