'https://developer.toutiao.com/', Pay::MODE_SANDBOX => 'https://open-sandbox.douyin.com/', Pay::MODE_SERVICE => 'https://developer.toutiao.com/', ]; /** * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function __call(string $shortcut, array $params): null|Collection|MessageInterface|Rocket { $plugin = '\Yansongda\Pay\Shortcut\Douyin\\'.Str::studly($shortcut).'Shortcut'; return Artful::shortcut($plugin, ...$params); } /** * @throws ContainerException * @throws InvalidParamsException */ public function pay(array $plugins, array $params): null|Collection|MessageInterface|Rocket { return Artful::artful($plugins, $params); } /** * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function query(array $order): Collection|Rocket { Event::dispatch(new MethodCalled('douyin', __METHOD__, $order, null)); return $this->__call('query', [$order]); } /** * @throws InvalidParamsException */ public function cancel(array $order): Collection|Rocket { throw new InvalidParamsException(Exception::PARAMS_METHOD_NOT_SUPPORTED, '参数异常: 抖音不支持 cancel API'); } /** * @throws InvalidParamsException */ public function close(array $order): Collection|Rocket { throw new InvalidParamsException(Exception::PARAMS_METHOD_NOT_SUPPORTED, '参数异常: 抖音不支持 close API'); } /** * @throws ContainerException * @throws InvalidParamsException * @throws ServiceNotFoundException */ public function refund(array $order): Collection|Rocket { Event::dispatch(new MethodCalled('douyin', __METHOD__, $order, null)); return $this->__call('refund', [$order]); } /** * @throws ContainerException * @throws InvalidParamsException */ public function callback(null|array|ServerRequestInterface $contents = null, ?array $params = null): Collection|Rocket { $request = $this->getCallbackParams($contents); Event::dispatch(new CallbackReceived('douyin', $request->all(), $params, null)); return $this->pay([CallbackPlugin::class], $request->merge($params)->all()); } public function success(): ResponseInterface { return new Response( 200, ['Content-Type' => 'application/json'], json_encode(['err_no' => 0, 'err_tips' => 'success']), ); } public function mergeCommonPlugins(array $plugins): array { return array_merge( [StartPlugin::class], $plugins, [AddPayloadSignaturePlugin::class, AddPayloadBodyPlugin::class, AddRadarPlugin::class, ResponsePlugin::class, ParserPlugin::class], ); } protected function getCallbackParams(null|array|ServerRequestInterface $contents = null): Collection { if (is_array($contents)) { return Collection::wrap($contents); } if (!$contents instanceof ServerRequestInterface) { $contents = ServerRequest::fromGlobals(); } $body = Collection::wrap($contents->getParsedBody()); if ($body->isNotEmpty()) { return $body; } return Collection::wrapJson((string) $contents->getBody()); } }