-
Notifications
You must be signed in to change notification settings - Fork 55
/
soundcloud.cfc
68 lines (63 loc) · 2.15 KB
/
soundcloud.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
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 soundcloud 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 soundcloud function init(
required string client_id,
required string client_secret,
required string authEndpoint = 'https://soundcloud.com/connect',
required string accessTokenEndpoint = 'https://soundcloud.com/oauth2/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.
**/
public string function buildRedirectToAuthURL(
required string state,
array scope
){
var sParams = {
'response_type' = 'code',
'state' = arguments.state
};
if( arrayLen( arguments.scope ) ){
structInsert( sParams, 'scope', arrayToList( arguments.scope, ' ' ) );
}
return super.buildRedirectToAuthURL( sParams );
}
/**
* I make the HTTP request to obtain the access token.
* @code The code returned from the authentication request.
**/
public struct function makeAccessTokenRequest(
required string code
){
var aFormFields = [];
return super.makeAccessTokenRequest(
code = arguments.code,
formfields = aFormFields
);
}
}