2016-11-16 01:20:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-11-16 01:20:32 +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-14 21:56:25 +00:00
|
|
|
|
2016-11-16 01:20:32 +00:00
|
|
|
namespace Pterodactyl\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
use Log;
|
2016-12-14 21:56:25 +00:00
|
|
|
use Alert;
|
2016-11-16 01:20:32 +00:00
|
|
|
use Storage;
|
|
|
|
use Pterodactyl\Models;
|
2016-12-14 21:56:25 +00:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2016-11-16 01:20:32 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
2016-12-14 21:56:25 +00:00
|
|
|
use Pterodactyl\Repositories\ServiceRepository\Pack;
|
2016-11-16 01:20:32 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayValidationException;
|
|
|
|
|
|
|
|
class PackController extends Controller
|
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
2016-11-16 04:12:47 +00:00
|
|
|
public function listAll(Request $request)
|
|
|
|
{
|
2017-02-05 22:58:17 +00:00
|
|
|
return view('admin.services.packs.index', ['services' => Models\Service::all()]);
|
2016-11-16 04:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function listByOption(Request $request, $id)
|
|
|
|
{
|
|
|
|
return view('admin.services.packs.byoption', [
|
2017-02-12 21:02:23 +00:00
|
|
|
'option' => Models\ServiceOption::with('service', 'packs')->findOrFail($id),
|
2016-11-16 04:12:47 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function listByService(Request $request, $id)
|
|
|
|
{
|
|
|
|
return view('admin.services.packs.byservice', [
|
2017-02-05 22:58:17 +00:00
|
|
|
'service' => Models\Service::with('options', 'options.packs')->findOrFail($id),
|
2016-11-16 04:12:47 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function new(Request $request, $opt = null)
|
|
|
|
{
|
2016-11-16 01:20:32 +00:00
|
|
|
return view('admin.services.packs.new', [
|
2017-02-05 22:58:17 +00:00
|
|
|
'services' => Models\Service::with('options')->get(),
|
2016-11-16 01:20:32 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function create(Request $request)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
$repo = new Pack;
|
2017-02-05 22:58:17 +00:00
|
|
|
$pack = $repo->create($request->only([
|
2017-02-10 22:18:46 +00:00
|
|
|
'name', 'version', 'description',
|
|
|
|
'option', 'selectable', 'visible',
|
2017-02-05 22:58:17 +00:00
|
|
|
'file_upload',
|
2016-11-16 01:20:32 +00:00
|
|
|
]));
|
|
|
|
Alert::success('Successfully created new service!')->flash();
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2017-02-05 22:58:17 +00:00
|
|
|
return redirect()->route('admin.services.packs.edit', $pack->id)->withInput();
|
2016-11-16 01:20:32 +00:00
|
|
|
} catch (DisplayValidationException $ex) {
|
|
|
|
return redirect()->route('admin.services.packs.new', $request->input('option'))->withErrors(json_decode($ex->getMessage()))->withInput();
|
|
|
|
} catch (DisplayException $ex) {
|
|
|
|
Alert::danger($ex->getMessage())->flash();
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
Log::error($ex);
|
|
|
|
Alert::danger('An error occured while attempting to add a new service pack.')->flash();
|
|
|
|
}
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-16 01:20:32 +00:00
|
|
|
return redirect()->route('admin.services.packs.new', $request->input('option'))->withInput();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function edit(Request $request, $id)
|
|
|
|
{
|
2017-02-05 22:58:17 +00:00
|
|
|
$pack = Models\ServicePack::with('option.service')->findOrFail($id);
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-16 04:12:47 +00:00
|
|
|
return view('admin.services.packs.edit', [
|
|
|
|
'pack' => $pack,
|
2017-02-05 22:58:17 +00:00
|
|
|
'services' => Models\Service::all()->load('options'),
|
2016-11-16 04:12:47 +00:00
|
|
|
'files' => Storage::files('packs/' . $pack->uuid),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-11-16 21:09:28 +00:00
|
|
|
public function update(Request $request, $id)
|
|
|
|
{
|
2016-12-14 21:56:25 +00:00
|
|
|
if (! is_null($request->input('action_delete'))) {
|
2016-11-18 22:31:57 +00:00
|
|
|
try {
|
|
|
|
$repo = new Pack;
|
|
|
|
$repo->delete($id);
|
|
|
|
Alert::success('The requested service pack has been deleted from the system.')->flash();
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-18 22:31:57 +00:00
|
|
|
return redirect()->route('admin.services.packs');
|
|
|
|
} catch (DisplayException $ex) {
|
|
|
|
Alert::danger($ex->getMessage())->flash();
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
Log::error($ex);
|
|
|
|
Alert::danger('An error occured while attempting to delete this pack.')->flash();
|
|
|
|
}
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-18 22:31:57 +00:00
|
|
|
return redirect()->route('admin.services.packs.edit', $id);
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
$repo = new Pack;
|
2017-02-05 22:58:17 +00:00
|
|
|
$repo->update($id, $request->only([
|
2017-02-10 22:18:46 +00:00
|
|
|
'name', 'version', 'description',
|
|
|
|
'option', 'selectable', 'visible',
|
2016-11-18 22:31:57 +00:00
|
|
|
]));
|
|
|
|
Alert::success('Service pack has been successfully updated.')->flash();
|
|
|
|
} catch (DisplayValidationException $ex) {
|
|
|
|
return redirect()->route('admin.services.packs.edit', $id)->withErrors(json_decode($ex->getMessage()))->withInput();
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
Log::error($ex);
|
|
|
|
Alert::danger('An error occured while attempting to add edit this pack.')->flash();
|
|
|
|
}
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-18 22:31:57 +00:00
|
|
|
return redirect()->route('admin.services.packs.edit', $id);
|
2016-11-16 21:09:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-16 04:12:47 +00:00
|
|
|
public function export(Request $request, $id, $files = false)
|
|
|
|
{
|
|
|
|
$pack = Models\ServicePack::findOrFail($id);
|
|
|
|
$json = [
|
|
|
|
'name' => $pack->name,
|
|
|
|
'version' => $pack->version,
|
|
|
|
'description' => $pack->dscription,
|
|
|
|
'selectable' => (bool) $pack->selectable,
|
|
|
|
'visible' => (bool) $pack->visible,
|
|
|
|
];
|
|
|
|
|
|
|
|
$filename = tempnam(sys_get_temp_dir(), 'pterodactyl_');
|
|
|
|
if ((bool) $files) {
|
|
|
|
$zip = new \ZipArchive;
|
2016-12-14 21:56:25 +00:00
|
|
|
if (! $zip->open($filename, \ZipArchive::CREATE)) {
|
2016-11-16 22:22:22 +00:00
|
|
|
abort(503, 'Unable to open file for writing.');
|
2016-11-16 04:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$files = Storage::files('packs/' . $pack->uuid);
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$zip->addFile(storage_path('app/' . $file), basename(storage_path('app/' . $file)));
|
|
|
|
}
|
|
|
|
|
|
|
|
$zip->addFromString('import.json', json_encode($json, JSON_PRETTY_PRINT));
|
|
|
|
$zip->close();
|
|
|
|
|
|
|
|
return response()->download($filename, 'pack-' . $pack->name . '.zip')->deleteFileAfterSend(true);
|
|
|
|
} else {
|
|
|
|
$fp = fopen($filename, 'a+');
|
|
|
|
fwrite($fp, json_encode($json, JSON_PRETTY_PRINT));
|
|
|
|
fclose($fp);
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-16 04:12:47 +00:00
|
|
|
return response()->download($filename, 'pack-' . $pack->name . '.json', [
|
2016-12-14 21:56:25 +00:00
|
|
|
'Content-Type' => 'application/json',
|
2016-11-16 04:12:47 +00:00
|
|
|
])->deleteFileAfterSend(true);
|
|
|
|
}
|
2016-11-16 01:20:32 +00:00
|
|
|
}
|
2016-11-16 22:22:22 +00:00
|
|
|
|
2016-12-14 21:56:25 +00:00
|
|
|
public function uploadForm(Request $request, $for = null)
|
|
|
|
{
|
2016-11-16 22:22:22 +00:00
|
|
|
return view('admin.services.packs.upload', [
|
2017-02-05 22:58:17 +00:00
|
|
|
'services' => Models\Service::all()->load('options'),
|
2016-11-16 22:22:22 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function postUpload(Request $request)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
$repo = new Pack;
|
2017-02-05 22:58:17 +00:00
|
|
|
$pack = $repo->createWithTemplate($request->only(['option', 'file_upload']));
|
2016-11-16 22:22:22 +00:00
|
|
|
Alert::success('Successfully created new service!')->flash();
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2017-02-05 22:58:17 +00:00
|
|
|
return redirect()->route('admin.services.packs.edit', $pack->id)->withInput();
|
2016-11-16 22:22:22 +00:00
|
|
|
} catch (DisplayValidationException $ex) {
|
|
|
|
return redirect()->back()->withErrors(json_decode($ex->getMessage()))->withInput();
|
|
|
|
} catch (DisplayException $ex) {
|
|
|
|
Alert::danger($ex->getMessage())->flash();
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
Log::error($ex);
|
|
|
|
Alert::danger('An error occured while attempting to add a new service pack.')->flash();
|
|
|
|
}
|
2016-12-14 21:56:25 +00:00
|
|
|
|
2016-11-16 22:22:22 +00:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
2016-11-16 01:20:32 +00:00
|
|
|
}
|