-
Notifications
You must be signed in to change notification settings - Fork 55
/
spotify.cfc
86 lines (81 loc) · 3.11 KB
/
spotify.cfc
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
component extends="oauth2" accessors="true" {
property name="client_id" type="string";
property name="client_secret" type="string";
property name="authEndpoint" type="string";
property name="accessTokenEndpoint" type="string";
property name="redirect_uri" type="string";
/**
* I return an initialized spotify object instance.
* @client_id The client ID for your application.
* @client_secret The client secret for your application.
* @authEndpoint The URL endpoint that handles the authorisation.
* @accessTokenEndpoint The URL endpoint that handles retrieving the access token.
* @redirect_uri The URL to redirect the user back to following authentication.
**/
public spotify function init(
required string client_id,
required string client_secret,
required string authEndpoint = 'https://accounts.spotify.com/authorize',
required string accessTokenEndpoint = 'https://accounts.spotify.com/api/token',
required string redirect_uri
)
{
super.init(
client_id = arguments.client_id,
client_secret = arguments.client_secret,
authEndpoint = arguments.authEndpoint,
accessTokenEndpoint = arguments.accessTokenEndpoint,
redirect_uri = arguments.redirect_uri
);
return this;
}
/**
* I return the URL as a string which we use to redirect the user for authentication.
* @state A unique string value of your choice that is hard to guess. Used to prevent CSRF.
* @scope An optional array of values to pass through for scope access.
* @show_dialog Whether or not to force the user to approve the app again if they’ve already done so. If false (default), a user who has already approved the application may be automatically redirected to the URI specified by redirect_uri. If true, the user will not be automatically redirected and will have to approve the app again.
* @usePKCE Boolean value. If true, the PKCE extension is triggered and will generate PKCE data and also store it as a CFC property.
**/
public string function buildRedirectToAuthURL(
required string state,
array scope = [],
boolean show_dialog = false,
boolean usePKCE = false
){
var sParams = {
'response_type' = 'code',
'state' = arguments.state,
'show_dialog' = arguments.show_dialog
};
if( arrayLen( arguments.scope ) ){
structInsert( sParams, 'scope', arrayToList( arguments.scope, ' ' ) );
}
if( arguments.usePKCE ){
var stuPKCE = super.generatePKCE();
setPKCE( stuPKCE );
structAppend( sParams, stuPKCE );
}
return super.buildRedirectToAuthURL( sParams );
}
/**
* I make the HTTP request to obtain the access token.
* @code The code returned from the authentication request.
* @usePKCE Boolean value. If true, the PKCE extension is triggered and will use the stored PKCE code_verifier
**/
public struct function makeAccessTokenRequest(
required string code,
boolean usePKCE = false
){
var aFormFields = [];
if( arguments.usePKCE ){
arrayAppend( aFormFields, {
'name': 'code_verifier',
'value': getPKCE()[ 'code_verifier' ]
} );
}
return super.makeAccessTokenRequest(
code = arguments.code,
formfields = aFormFields
);
}
}