AbstractProvider.php
5.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Provider;
use GuzzleHttp\Psr7\Utils;
use Psr\Http\Client\ClientInterface;
use Psr\Http\Message\MessageInterface;
use Throwable;
use Yansongda\Pay\Contract\HttpClientInterface;
use Yansongda\Pay\Contract\PluginInterface;
use Yansongda\Pay\Contract\ProviderInterface;
use Yansongda\Pay\Contract\ShortcutInterface;
use Yansongda\Pay\Direction\ArrayDirection;
use Yansongda\Pay\Event;
use Yansongda\Pay\Exception\ContainerException;
use Yansongda\Pay\Exception\Exception;
use Yansongda\Pay\Exception\InvalidConfigException;
use Yansongda\Pay\Exception\InvalidParamsException;
use Yansongda\Pay\Exception\InvalidResponseException;
use Yansongda\Pay\Exception\ServiceNotFoundException;
use Yansongda\Pay\Logger;
use Yansongda\Pay\Pay;
use Yansongda\Pay\Rocket;
use Yansongda\Supports\Collection;
use Yansongda\Supports\Pipeline;
use function Yansongda\Pay\should_do_http_request;
abstract class AbstractProvider implements ProviderInterface
{
/**
* @return null|array|Collection|MessageInterface
*
* @throws ContainerException
* @throws InvalidParamsException
* @throws ServiceNotFoundException
*/
public function call(string $plugin, array $params = [])
{
if (!class_exists($plugin) || !in_array(ShortcutInterface::class, class_implements($plugin))) {
throw new InvalidParamsException(Exception::SHORTCUT_NOT_FOUND, "[{$plugin}] is not incompatible");
}
/* @var ShortcutInterface $money */
$money = Pay::get($plugin);
$plugins = $money->getPlugins($params);
if (empty($params['_no_common_plugins'])) {
$plugins = $this->mergeCommonPlugins($plugins);
}
return $this->pay($plugins, $params);
}
/**
* @return null|array|Collection|MessageInterface
*
* @throws ContainerException
* @throws InvalidParamsException
*/
public function pay(array $plugins, array $params)
{
Logger::info('[AbstractProvider] 即将进行 pay 操作', func_get_args());
Event::dispatch(new Event\PayStarted($plugins, $params, null));
$this->verifyPlugin($plugins);
/* @var Pipeline $pipeline */
$pipeline = Pay::make(Pipeline::class);
/* @var Rocket $rocket */
$rocket = $pipeline
->send((new Rocket())->setParams($params)->setPayload(new Collection()))
->through($plugins)
->via('assembly')
->then(fn ($rocket) => $this->ignite($rocket))
;
Event::dispatch(new Event\PayFinish($rocket));
$destination = $rocket->getDestination();
if (ArrayDirection::class === $rocket->getDirection() && $destination instanceof Collection) {
return $destination->toArray();
}
return $destination;
}
/**
* @throws ContainerException
* @throws ServiceNotFoundException
* @throws InvalidResponseException
* @throws InvalidConfigException
*/
public function ignite(Rocket $rocket): Rocket
{
if (!should_do_http_request($rocket->getDirection())) {
return $rocket;
}
/* @var HttpClientInterface $http */
$http = Pay::get(HttpClientInterface::class);
if (!$http instanceof ClientInterface) {
throw new InvalidConfigException(Exception::HTTP_CLIENT_CONFIG_ERROR);
}
Logger::info('[AbstractProvider] 准备请求支付服务商 API', $rocket->toArray());
Event::dispatch(new Event\ApiRequesting($rocket));
try {
$response = $http->sendRequest($rocket->getRadar());
$contents = (string) $response->getBody();
$rocket->setDestination($response->withBody(Utils::streamFor($contents)))
->setDestinationOrigin($response->withBody(Utils::streamFor($contents)))
;
} catch (Throwable $e) {
Logger::error('[AbstractProvider] 请求支付服务商 API 出错', ['message' => $e->getMessage(), 'rocket' => $rocket->toArray(), 'trace' => $e->getTrace()]);
throw new InvalidResponseException(Exception::REQUEST_RESPONSE_ERROR, $e->getMessage(), [], $e);
}
Logger::info('[AbstractProvider] 请求支付服务商 API 成功', ['response' => $response, 'rocket' => $rocket->toArray()]);
Event::dispatch(new Event\ApiRequested($rocket));
return $rocket;
}
abstract public function mergeCommonPlugins(array $plugins): array;
/**
* @throws InvalidParamsException
*/
protected function verifyPlugin(array $plugins): void
{
foreach ($plugins as $plugin) {
if (is_callable($plugin)) {
continue;
}
if ((is_object($plugin)
|| (is_string($plugin) && class_exists($plugin)))
&& in_array(PluginInterface::class, class_implements($plugin))) {
continue;
}
throw new InvalidParamsException(Exception::PLUGIN_ERROR, "[{$plugin}] is not incompatible");
}
}
}