'https://api.mch.weixin.qq.com/', Pay::MODE_SANDBOX => 'https://api.mch.weixin.qq.com/sandboxnew/', Pay::MODE_SERVICE => 'https://api.mch.weixin.qq.com/', ]; /** * @return null|array|Collection|MessageInterface * * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function __call(string $shortcut, array $params) { $plugin = '\\Yansongda\\Pay\\Plugin\\Wechat\\Shortcut\\'. Str::studly($shortcut).'Shortcut'; return $this->call($plugin, ...$params); } /** * @param array|string $order * * @return array|Collection * * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function find($order) { $order = is_array($order) ? $order : ['transaction_id' => $order]; Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null)); return $this->__call('query', [$order]); } /** * @param array|string $order * * @throws InvalidParamsException */ public function cancel($order): void { throw new InvalidParamsException(Exception::METHOD_NOT_SUPPORTED, 'Wechat does not support cancel api'); } /** * @param array|string $order * * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function close($order): void { $order = is_array($order) ? $order : ['out_trade_no' => $order]; Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null)); $this->__call('close', [$order]); } /** * @return array|Collection * * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function refund(array $order) { Event::dispatch(new Event\MethodCalled('wechat', __METHOD__, $order, null)); return $this->__call('refund', [$order]); } /** * @param null|array|ServerRequestInterface $contents * * @throws ContainerException * @throws InvalidParamsException */ public function callback($contents = null, ?array $params = null): Collection { $request = $this->getCallbackParams($contents); Event::dispatch(new Event\CallbackReceived('wechat', clone $request, $params, null)); return $this->pay( [CallbackPlugin::class], ['request' => $request, 'params' => $params] ); } public function success(): ResponseInterface { return new Response( 200, ['Content-Type' => 'application/json'], json_encode(['code' => 'SUCCESS', 'message' => '成功']), ); } public function mergeCommonPlugins(array $plugins): array { return array_merge( [PreparePlugin::class], $plugins, [RadarSignPlugin::class], [LaunchPlugin::class, ParserPlugin::class], ); } /** * @param null|array|ServerRequestInterface $contents */ protected function getCallbackParams($contents = null): ServerRequestInterface { if (is_array($contents) && isset($contents['body'], $contents['headers'])) { return new ServerRequest('POST', 'http://localhost', $contents['headers'], $contents['body']); } if (is_array($contents)) { return new ServerRequest('POST', 'http://localhost', [], json_encode($contents)); } if ($contents instanceof ServerRequestInterface) { return $contents; } return ServerRequest::fromGlobals(); } }