diff --git a/routes/web.php b/routes/web.php index 7f5f34b2343cc1e8818ca3864833e6f1c19867f7..af856b8b5d8e0a079f911a678c32bd50af7d801d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -27,14 +27,15 @@ Route::get('/', 'ProxyController@proxyPage')->name('proxy-wrapper-page'); Route::get('p', 'ProxyController@proxy')->name('proxy'); Route::post('/', function (Request $request) { - $validatedData = $request->validate([ - 'url' => 'required|url|max:255', - ]); - $url = $request->input('url', 'https://metager.de'); - $password = md5(env('PROXY_PASSWORD') . $url); - $url = base64_encode(str_rot13($url)); - $target = urlencode(str_replace("/", "<<SLASH>>", $url)); - return redirect(action('ProxyController@proxyPage', ['password' => $password, 'url' => $target])); + if (env("APP_ENV", "") !== "production") { + $validatedData = $request->validate([ + 'url' => 'required|url|max:255', + ]); + $url = $request->input('url', 'https://metager.de'); + return redirect(\App\Http\Controllers\ProxyController::generateProxyWrapperUrl($url)); + }else{ + abort(400); + } }); /**