Merge pull request #540 from 1day2die/development

Development
This commit is contained in:
Dennis 2022-08-13 23:24:29 +02:00 committed by GitHub
commit 65e6dd3cfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 8 deletions

View file

@ -105,14 +105,14 @@ class ServerController extends Controller
if (FacadesRequest::has("product")) {
$product = Product::findOrFail(FacadesRequest::input("product"));
// Get node resource allocation info
// Get node resource allocation info
$node = $product->nodes()->findOrFail(FacadesRequest::input('node'));
$nodeName = $node->name;
// Check if node has enough memory and disk space
$checkResponse = Pterodactyl::checkNodeResources($node, $product->memory, $product->disk);
if ($checkResponse == False) return redirect()->route('servers.index')->with('error', __("The node '" . $nodeName . "' doesn't have the required memory or disk left to allocate this product."));
// Min. Credits
if (
Auth::user()->credits <
@ -227,7 +227,9 @@ class ServerController extends Controller
/** Show Server Settings */
public function show(Server $server)
{
if($server->user_id != Auth::user()->id) return redirect()->route('servers.index');
if($server->user_id != Auth::user()->id){ return back()->with('error', __('´This is not your Server!'));}
$serverAttributes = Pterodactyl::getServerAttributes($server->pterodactyl_id);
$serverRelationships = $serverAttributes['relationships'];
$serverLocationAttributes = $serverRelationships['location']['attributes'];

View file

@ -46,6 +46,7 @@ class RouteServiceProvider extends ServiceProvider
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
}
@ -59,11 +60,8 @@ class RouteServiceProvider extends ServiceProvider
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
});
RateLimiter::for('ticket-new', function (Request $request) {
return Limit::perMinute(3)->by(optional($request->user())->id ?: $request->ip());
});
RateLimiter::for('ticket-reply', function (Request $request) {
return Limit::perMinute(4)->by(optional($request->user())->id ?: $request->ip());
RateLimiter::for('web', function (Request $request) {
return Limit::perMinute(15)->by(optional($request->user())->id ?: $request->ip());
});
}
}

View file

@ -42,6 +42,7 @@ use App\Classes\Settings\System;
|
*/
Route::middleware('guest')->get('/', function () {
return redirect('login');
})->name('welcome');