This repository was archived by the owner on Mar 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVimeo.php
105 lines (87 loc) · 3.42 KB
/
Vimeo.php
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
<?php
/**
* Class Vimeo
*
* @created 09.04.2018
* @author Smiley <smiley@chillerlan.net>
* @copyright 2018 Smiley
* @license MIT
*/
namespace chillerlan\OAuth\Providers;
use chillerlan\HTTP\Utils\MessageUtil;
use chillerlan\OAuth\Core\{AccessToken, ClientCredentials, CSRFToken, OAuth2Provider, ProviderException, TokenInvalidate};
use Psr\Http\Message\ResponseInterface;
use function sprintf;
/**
* @see https://developer.vimeo.com/
* @see https://developer.vimeo.com/api/authentication
*/
class Vimeo extends OAuth2Provider implements ClientCredentials, CSRFToken, TokenInvalidate{
/**
* @see https://developer.vimeo.com/api/authentication#understanding-the-auth-process
*/
public const SCOPE_PUBLIC = 'public';
public const SCOPE_PRIVATE = 'private';
public const SCOPE_PURCHASED = 'purchased';
public const SCOPE_CREATE = 'create';
public const SCOPE_EDIT = 'edit';
public const SCOPE_DELETE = 'delete';
public const SCOPE_INTERACT = 'interact';
public const SCOPE_STATS = 'stats';
public const SCOPE_UPLOAD = 'upload';
public const SCOPE_PROMO_CODES = 'promo_codes';
public const SCOPE_VIDEO_FILES = 'video_files';
// @see https://developer.vimeo.com/api/changelog
protected const API_VERSION = '3.4';
protected array $defaultScopes = [
self::SCOPE_PUBLIC,
self::SCOPE_PRIVATE,
self::SCOPE_INTERACT,
self::SCOPE_STATS,
];
protected string $authURL = 'https://api.vimeo.com/oauth/authorize';
protected string $accessTokenURL = 'https://api.vimeo.com/oauth/access_token';
protected string $revokeURL = 'https://api.vimeo.com/tokens';
protected string $apiURL = 'https://api.vimeo.com';
protected string|null $userRevokeURL = 'https://vimeo.com/settings/apps';
protected string|null $clientCredentialsTokenURL = 'https://api.vimeo.com/oauth/authorize/client';
protected string|null $apiDocs = 'https://developer.vimeo.com';
protected string|null $applicationURL = 'https://developer.vimeo.com/apps';
protected array $authHeaders = ['Accept' => 'application/vnd.vimeo.*+json;version='.self::API_VERSION];
protected array $apiHeaders = ['Accept' => 'application/vnd.vimeo.*+json;version='.self::API_VERSION];
/**
* @inheritDoc
*/
public function me():ResponseInterface{
$response = $this->request('/me');
$status = $response->getStatusCode();
if($status === 200){
return $response;
}
$json = MessageUtil::decodeJSON($response);
if(isset($json->error, $json->developer_message)){
throw new ProviderException($json->developer_message);
}
throw new ProviderException(sprintf('user info error error HTTP/%s', $status));
}
/**
* @inheritDoc
*/
public function invalidateAccessToken(AccessToken|null $token = null):bool{
if($token !== null){
// to revoke a token different from the one of the currently authenticated user,
// we're going to clone the provider and feed the other token for the invalidate request
$provider = clone $this;
$provider->storeAccessToken($token);
$response = $provider->request(path: $this->revokeURL, method: 'DELETE');
}
else{
$response = $this->request(path: $this->revokeURL, method: 'DELETE');
}
if($response->getStatusCode() === 204){
$this->storage->clearAccessToken();
return true;
}
return false;
}
}