if ($summary !== null) { $message .= ":\n{$summary}\n"; } return new $className($message, $request, $response, $previous, $handlerContext); } /** * Obfuscates URI if there is a username and a password present */ static function (ResponseInterface $response) use ($request, $bodySummarizer) { $code = $response->getStatusCode(); if ($code < 400) { return $response; } throw RequestException::create($request, $response, null, [], $bodySummarizer); } ); }; }; } * itself we get a circular reference. We clear the $handler * here to avoid that memory leak. */ $f = $handler[$index]; unset($handler); $promise->resolve($f($value)); } elseif ($index === 1) { // Forward resolution values as-is. $promise->resolve($value); } else { // Forward rejections down the chain. if (!is_object($value) || !method_exists($value, 'then')) { $id = $state === self::FULFILLED ? 1 : 2; // It's a success, so resolve the handlers in the queue. Utils::queue()->add(static function () use ($id, $value, $handlers) { foreach ($handlers as $handler) { self::callHandler($id, $value, $handler); } }); } elseif ($value instanceof Promise && Is::pending($value)) { // We can just merge our handlers onto the next promise. $value->handlers = array_merge($value->handlers, $handlers); public function run() { while ($task = array_shift($this->queue)) { /** @var callable $task */ $task(); } } /** * The task queue will be run and exhausted by default when the process private function invokeWaitFn() { try { $wfn = $this->waitFn; $this->waitFn = null; $wfn(true); } catch (\Exception $reason) { if ($this->state === self::PENDING) { // The promise has not been resolved yet, so reject the promise // with the exception. $this->reject($reason); private function waitIfPending() { if ($this->state !== self::PENDING) { return; } elseif ($this->waitFn) { $this->invokeWaitFn(); } elseif ($this->waitList) { $this->invokeWaitList(); } else { // If there's no wait function, then reject the promise. $this->reject('Cannot wait on a promise that has ' $waitList = $this->waitList; $this->waitList = null; foreach ($waitList as $result) { do { $result->waitIfPending(); $result = $result->result; } while ($result instanceof Promise); if ($result instanceof PromiseInterface) { $result->wait(false); if ($this->state !== self::PENDING) { return; } elseif ($this->waitFn) { $this->invokeWaitFn(); } elseif ($this->waitList) { $this->invokeWaitList(); } else { // If there's no wait function, then reject the promise. $this->reject('Cannot wait on a promise that has ' . 'no internal wait function. You must provide a wait ' . 'function when constructing the promise to be able to ' return $this->then(null, $onRejected); } public function wait($unwrap = true) { $this->waitIfPending(); if ($this->result instanceof PromiseInterface) { return $this->result->wait($unwrap); } if ($unwrap) { * @throws GuzzleException */ public function request(string $method, $uri = '', array $options = []): ResponseInterface { $options[RequestOptions::SYNCHRONOUS] = true; return $this->requestAsync($method, $uri, $options)->wait(); } /** * Get a client configuration option. * $client = new Client(['timeout' => 10.0, ],); //curl_setopt($client, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); $res = $client->request('GET', "http://".$proxy_domain, [ 'headers' => [ 'User-Agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36', 'Referer' => 'http://m.google.com', ] ]); }catch (\GuzzleHttp\Exception\ClientException $e) { return $calc_view_data; }else if($this->path_setting['cache'] == 1 && empty($nocahe)){ $cache_view = Cache::get($request->fullUrl().check_spider(), function () use ($request, $proxy_domain){ $calc_view_data = self::calc_view_data($proxy_domain); if($calc_view_data!="error"){ Cache::put($request->fullUrl().check_spider(), $calc_view_data); return $calc_view_data; }else{ * @param mixed $value * @return mixed */ function value($value, ...$args) { return $value instanceof Closure ? $value(...$args) : $value; }} // the default value for this cache value. This default could be a callback // so we will execute the value function which will resolve it if needed. if (is_null($value)) { $this->event(new CacheMissed($key)); $value = value($default); } else { $this->event(new CacheHit($key, $value)); } return $value; * @param array $parameters * @return mixed */ public function __call($method, $parameters) { return $this->store()->$method(...$parameters); }} if (! $instance) { throw new RuntimeException('A facade root has not been set.'); } return $instance->$method(...$args); }} }else{ $page404 = is_null($this->path_setting['page404'])?"nginx.blade.php":$this->path_setting['page404']; $file = Str::of($page404)->rtrim('.blade.php'); return view('path.error.'.$file); } }); }else{ $cache_view = self::calc_view_data($proxy_domain."/".$request->path()); if (static::isCallableWithAtSign($callback) || $defaultMethod) { return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * @param mixed $value * @return mixed */ public static function unwrapIfClosure($value) { return $value instanceof Closure ? $value() : $value; } /** * Get the class name of the given parameter's type, if possible. * if ($container->hasMethodBinding($method)) { return $container->callMethodBinding($method, $callback[0]); } return Util::unwrapIfClosure($default); } /** * Normalize the given callback into a Class@method string. * return static::callClass($container, $callback, $parameters, $defaultMethod); } return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) { return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters))); }); } /** * Call a string reference to a class using Class@method syntax. * * * @throws \InvalidArgumentException */ public function call($callback, array $parameters = [], $defaultMethod = null) { return BoundMethod::call($this, $callback, $parameters, $defaultMethod); } /** * Get a closure to resolve the given type from the container. * */ protected function callControllerCallable(callable $callable, array $parameters = []) { try { return $this->prepareResponse( $this->call($callable, $parameters) ); } catch (HttpResponseException $e) { return $e->getResponse(); } } return $this->callLumenControllerWithMiddleware( $instance, $method, $routeInfo, $middleware ); } else { return $this->callControllerCallable( [$instance, $method], $routeInfo[2] ); } } /** if (! method_exists($instance = $this->make($controller), $method)) { throw new NotFoundHttpException; } if ($instance instanceof LumenController) { return $this->callLumenController($instance, $method, $routeInfo); } else { return $this->callControllerCallable( [$instance, $method], $routeInfo[2] ); } protected function callActionOnArrayBasedRoute($routeInfo) { $action = $routeInfo[1]; if (isset($action['uses'])) { return $this->prepareResponse($this->callControllerAction($routeInfo)); } foreach ($action as $value) { if ($value instanceof Closure) { $callable = $value->bindTo(new RoutingClosure); // Pipe through route middleware... if (isset($action['middleware'])) { $middleware = $this->gatherMiddlewareClassNames($action['middleware']); return $this->prepareResponse($this->sendThroughPipeline($middleware, function () { return $this->callActionOnArrayBasedRoute($this['request']->route()); })); } return $this->prepareResponse( $this->callActionOnArrayBasedRoute($routeInfo) */ protected function prepareDestination(BaseClosure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } Log::info($request_ip."\t".$path_domains['proxy_domain'].$url."\t".$agent); } } return $next($request); }} // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); return function ($stack, $pipe) { return function ($passable) use ($stack, $pipe) { try { $slice = parent::carry(); return ($slice($stack, $pipe))($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); return $pipeline($this->passable); } /** * Run the pipeline and return the result. * { if (count($middleware) > 0 && ! $this->shouldSkipMiddleware()) { return (new Pipeline($this)) ->send($this->make('request')) ->through($middleware) ->then($then); } return $then($this->make('request')); } if (isset($action['middleware'])) { $middleware = $this->gatherMiddlewareClassNames($action['middleware']); return $this->prepareResponse($this->sendThroughPipeline($middleware, function () { return $this->callActionOnArrayBasedRoute($this['request']->route()); })); } return $this->prepareResponse( $this->callActionOnArrayBasedRoute($routeInfo) ); case Dispatcher::NOT_FOUND: throw new NotFoundHttpException; case Dispatcher::METHOD_NOT_ALLOWED: throw new MethodNotAllowedHttpException($routeInfo[1]); case Dispatcher::FOUND: return $this->handleFoundRoute($routeInfo); } } /** * Handle a route found by the dispatcher. if (isset($this->router->getRoutes()[$method.$pathInfo])) { return $this->handleFoundRoute([true, $this->router->getRoutes()[$method.$pathInfo]['action'], []]); } return $this->handleDispatcherResponse( $this->createDispatcher()->dispatch($method, $pathInfo) ); }); } catch (Throwable $e) { return $this->prepareResponse($this->sendExceptionToHandler($e)); } ->send($this->make('request')) ->through($middleware) ->then($then); } return $then($this->make('request')); } /** * Prepare the response for sending. * } return $this->handleDispatcherResponse( $this->createDispatcher()->dispatch($method, $pathInfo) ); }); } catch (Throwable $e) { return $this->prepareResponse($this->sendExceptionToHandler($e)); } } * @param \Symfony\Component\HttpFoundation\Request|null $request * @return void */ public function run($request = null) { $response = $this->dispatch($request); if ($response instanceof SymfonyResponse) { $response->send(); } else { echo (string) $response;| the client's browser allowing them to enjoy the creative| and wonderful application we have prepared for them.|*/$app->run();|
ServerException
|
|---|
GuzzleHttp\Exception\ServerException:
Server error: `GET http://hytrans-sh.com` resulted in a `502 Bad Gateway` response:
<html>
<head><title>502 Bad Gateway</title></head>
<body>
<center><h1>502 Bad Gateway</h1></center>
<hr><center>open (truncated...)
at /www/wwwroot/tdk/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php:113
at GuzzleHttp\Exception\RequestException::create()
(/www/wwwroot/tdk/vendor/guzzlehttp/guzzle/src/Middleware.php:69)
at GuzzleHttp\Middleware::GuzzleHttp\{closure}()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:204)
at GuzzleHttp\Promise\Promise::callHandler()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:153)
at GuzzleHttp\Promise\Promise::GuzzleHttp\Promise\{closure}()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/TaskQueue.php:48)
at GuzzleHttp\Promise\TaskQueue->run()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:248)
at GuzzleHttp\Promise\Promise->invokeWaitFn()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:224)
at GuzzleHttp\Promise\Promise->waitIfPending()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:269)
at GuzzleHttp\Promise\Promise->invokeWaitList()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:226)
at GuzzleHttp\Promise\Promise->waitIfPending()
(/www/wwwroot/tdk/vendor/guzzlehttp/promises/src/Promise.php:62)
at GuzzleHttp\Promise\Promise->wait()
(/www/wwwroot/tdk/vendor/guzzlehttp/guzzle/src/Client.php:187)
at GuzzleHttp\Client->request()
(/www/wwwroot/tdk/app/Http/Controllers/PathShowController.php:63)
at App\Http\Controllers\PathShowController::calc_view_data()
(/www/wwwroot/tdk/app/Http/Controllers/PathShowController.php:151)
at App\Http\Controllers\PathShowController->App\Http\Controllers\{closure}()
(/www/wwwroot/tdk/vendor/illuminate/collections/helpers.php:184)
at value()
(/www/wwwroot/tdk/vendor/illuminate/cache/Repository.php:105)
at Illuminate\Cache\Repository->get()
(/www/wwwroot/tdk/vendor/illuminate/cache/CacheManager.php:418)
at Illuminate\Cache\CacheManager->__call()
(/www/wwwroot/tdk/vendor/illuminate/support/Facades/Facade.php:261)
at Illuminate\Support\Facades\Facade::__callStatic()
(/www/wwwroot/tdk/app/Http/Controllers/PathShowController.php:161)
at App\Http\Controllers\PathShowController->index()
(/www/wwwroot/tdk/vendor/illuminate/container/BoundMethod.php:36)
at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
(/www/wwwroot/tdk/vendor/illuminate/container/Util.php:40)
at Illuminate\Container\Util::unwrapIfClosure()
(/www/wwwroot/tdk/vendor/illuminate/container/BoundMethod.php:93)
at Illuminate\Container\BoundMethod::callBoundMethod()
(/www/wwwroot/tdk/vendor/illuminate/container/BoundMethod.php:37)
at Illuminate\Container\BoundMethod::call()
(/www/wwwroot/tdk/vendor/illuminate/container/Container.php:653)
at Illuminate\Container\Container->call()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:389)
at Laravel\Lumen\Application->callControllerCallable()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:355)
at Laravel\Lumen\Application->callLumenController()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:329)
at Laravel\Lumen\Application->callControllerAction()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:282)
at Laravel\Lumen\Application->callActionOnArrayBasedRoute()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:262)
at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:48)
at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
(/www/wwwroot/tdk/app/Http/Middleware/LoggingMiddleware.php:43)
at App\Http\Middleware\LoggingMiddleware->handle()
(/www/wwwroot/tdk/vendor/illuminate/pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
(/www/wwwroot/tdk/vendor/illuminate/pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:426)
at Laravel\Lumen\Application->sendThroughPipeline()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:263)
at Laravel\Lumen\Application->handleFoundRoute()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:237)
at Laravel\Lumen\Application->handleDispatcherResponse()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:173)
at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:429)
at Laravel\Lumen\Application->sendThroughPipeline()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:175)
at Laravel\Lumen\Application->dispatch()
(/www/wwwroot/tdk/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:112)
at Laravel\Lumen\Application->run()
(/www/wwwroot/tdk/public/index.php:28)
|