123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <?php
- /**
- * This file is part of the apiadmin/tiktok.
- */
- namespace App\Libs\TikTok\OpenPlatform\Kernel;
- use App\Libs\TikTok\Kernel\Contracts\AccessTokenInterface;
- use App\Libs\TikTok\Kernel\Exceptions\AccessTokenException;
- use App\Libs\TikTok\Kernel\Exceptions\HttpException;
- use App\Libs\TikTok\Kernel\Exceptions\InvalidArgumentException;
- use App\Libs\TikTok\Kernel\Exceptions\InvalidConfigException;
- use App\Libs\TikTok\Kernel\Exceptions\RuntimeException;
- use App\Libs\TikTok\Kernel\ServiceContainer;
- use App\Libs\TikTok\Kernel\Support\Collection;
- use App\Libs\TikTok\Kernel\Traits\HasHttpRequests;
- use App\Libs\TikTok\Kernel\Traits\InteractsWithCache;
- use GuzzleHttp\Exception\GuzzleException;
- use GuzzleHttp\Psr7\Utils;
- use Psr\Http\Message\RequestInterface;
- use Psr\Http\Message\ResponseInterface;
- /**
- * Class AccessToken.
- *
- * @author overtrue <i@overtrue.me>
- */
- abstract class AccessToken implements AccessTokenInterface {
- use HasHttpRequests;
- use InteractsWithCache;
- /**
- * @var ServiceContainer
- */
- protected $app;
- /**
- * @var string
- */
- protected $requestMethod = 'POST';
- /**
- * @var string
- */
- protected $endpointToGetToken = 'oauth/client_token/';
- /**
- * @var string
- */
- protected $queryName;
- /**
- * @var array
- */
- protected $token;
- /**
- * @var string
- */
- protected $tokenKey = 'access_token';
- /**
- * @var string
- */
- protected $cachePrefix = 'EasyTiktok.open_platform.access_token.';
- /**
- * AccessToken constructor.
- *
- * @param ServiceContainer $app
- */
- public function __construct(ServiceContainer $app) {
- $this->app = $app;
- }
- /**
- * @param bool $refresh
- *
- * @return array
- *
- * @throws HttpException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws InvalidConfigException
- * @throws InvalidArgumentException
- * @throws RuntimeException
- * @throws GuzzleException
- */
- public function getToken(bool $refresh = false): array {
- $cacheKey = $this->getCacheKey();
- $cache = $this->getCache();
- if (!$refresh && $cache->has($cacheKey) && $result = $cache->get($cacheKey)) {
- return $result;
- }
- /** @var array $token */
- $token = $this->requestToken($this->getCredentials(), true);
- $this->setToken($token[$this->tokenKey], $token['expires_in'] ?? 7200);
- return $token;
- }
- /**
- * @param string $token
- * @param int $lifetime
- *
- * @return AccessTokenInterface
- *
- * @throws RuntimeException
- * @throws \Psr\SimpleCache\InvalidArgumentException|InvalidArgumentException
- */
- public function setToken(string $token, int $lifetime = 7200): AccessTokenInterface {
- $this->getCache()->set($this->getCacheKey(), [
- $this->tokenKey => $token,
- 'expires_in' => $lifetime
- ], $lifetime);
- if (!$this->getCache()->has($this->getCacheKey())) {
- throw new RuntimeException('Failed to cache access token.');
- }
- return $this;
- }
- /**
- * @return AccessTokenInterface
- *
- * @throws HttpException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws InvalidConfigException
- * @throws InvalidArgumentException
- * @throws RuntimeException|GuzzleException
- */
- public function refresh(): AccessTokenInterface {
- $this->getToken(true);
- return $this;
- }
- /**
- * @param array $credentials
- * @param bool $toArray
- *
- * @return ResponseInterface|Collection|array|object|string
- *
- * @throws HttpException
- * @throws InvalidConfigException
- * @throws InvalidArgumentException|GuzzleException
- */
- public function requestToken(array $credentials, bool $toArray) {
- $response = $this->sendRequest($credentials);
- $result = json_decode($response->getBody()->getContents(), true);
- $formatted = $this->castResponseToType($response, $this->app['config']->get('response_type'));
- if (empty($result['data'][$this->tokenKey])) {
- throw new HttpException('Request access_token fail: ' . json_encode($result, JSON_UNESCAPED_UNICODE), $response, $formatted);
- }
- return $toArray ? $result['data'] : $formatted;
- }
- /**
- * @param RequestInterface $request
- * @param array $requestOptions
- *
- * @return RequestInterface
- *
- * @throws HttpException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws InvalidConfigException
- * @throws InvalidArgumentException
- * @throws RuntimeException|GuzzleException
- */
- public function applyToRequest(RequestInterface $request, array $requestOptions = []): RequestInterface {
- parse_str($request->getUri()->getQuery(), $query);
- $query = http_build_query(array_merge($this->getQuery(), $query));
- return $request->withUri($request->getUri()->withQuery($query));
- }
- /**
- * 处理Post添加AccessToken
- * @param RequestInterface $request
- * @param array $requestOptions
- * @return RequestInterface
- * @throws GuzzleException
- * @throws HttpException
- * @throws InvalidArgumentException
- * @throws InvalidConfigException
- * @throws RuntimeException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @author zhaoxiang <zhaoxiang051405@gmail.com>
- */
- public function applyToPostRequest(RequestInterface $request, array $requestOptions = []): RequestInterface {
- $query = $request->getBody()->getContents();
- $request->getBody()->rewind();
- $query = \GuzzleHttp\json_decode($query, true);
- $query = array_merge($this->getQuery(), $query);
- return $request->withBody(Utils::streamFor(json_encode($query)));
- }
- /**
- * 处理Header添加AccessToken
- * @param RequestInterface $request
- * @return RequestInterface
- * @throws GuzzleException
- * @throws HttpException
- * @throws InvalidArgumentException
- * @throws InvalidConfigException
- * @throws RuntimeException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- */
- public function applyToHeaderRequest(RequestInterface $request): RequestInterface {
- return $request->withAddedHeader('access-token', $this->getToken()[$this->tokenKey]);
- }
- /**
- * Send http request.
- *
- * @param array $credentials
- *
- * @return ResponseInterface
- *
- * @throws InvalidArgumentException
- * @throws GuzzleException
- */
- protected function sendRequest(array $credentials): ResponseInterface {
- $options = [
- ('GET' === $this->requestMethod) ? 'query' : 'json' => $credentials,
- ];
- return $this->setHttpClient($this->app['http_client'])->request($this->getEndpoint(), $this->requestMethod, $options);
- }
- /**
- *
- * @return string
- * @author zhaoxiang <zhaoxiang051405@gmail.com>
- */
- protected function getCacheKey(): string {
- return $this->cachePrefix . md5(json_encode($this->getCredentials()));
- }
- /**
- * The request query will be used to add to the request.
- *
- * @return array
- *
- * @throws HttpException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws InvalidConfigException
- * @throws InvalidArgumentException
- * @throws RuntimeException|GuzzleException
- */
- protected function getQuery(): array {
- return [$this->queryName ?? $this->tokenKey => $this->getToken()[$this->tokenKey]];
- }
- /**
- * @return string
- *
- * @throws InvalidArgumentException
- */
- public function getEndpoint(): string {
- if (empty($this->endpointToGetToken)) {
- throw new InvalidArgumentException('No endpoint for access token request.');
- }
- return $this->endpointToGetToken;
- }
- /**
- * Credential for get token.
- *
- * @return array
- */
- abstract protected function getCredentials(): array;
- }
|