-
Notifications
You must be signed in to change notification settings - Fork 780
/
Copy pathOIDTVTokenRequest.m
174 lines (148 loc) · 7.49 KB
/
OIDTVTokenRequest.m
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*! @file OIDTVTokenRequest.m
@brief AppAuth iOS SDK
@copyright
Copyright 2020 Google Inc.
@copydetails
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#import "OIDTVTokenRequest.h"
#import "OIDDefines.h"
#import "OIDTVServiceConfiguration.h"
#import "OIDURLQueryComponent.h"
/*! @brief The key for the @c deviceCode property for @c NSSecureCoding and request body.
*/
static NSString *const kDeviceCodeKey = @"device_code";
/*! @brief Key used to encode the @c grantType property for @c NSSecureCoding and request body.
*/
static NSString *const kGrantTypeKey = @"grant_type";
/*! @brief Value for @c grant_type key in the request body
@see https://tools.ietf.org/html/rfc8628#section-3.4
*/
static NSString *const kOIDTVDeviceTokenGrantType = @"urn:ietf:params:oauth:grant-type:device_code";
@implementation OIDTVTokenRequest
- (instancetype)init OID_UNAVAILABLE_USE_INITIALIZER(@selector
(initWithConfiguration:
deviceCode:
clientID:
clientSecret:
additionalParameters:
additionalHeaders:
))
- (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
grantType:(NSString *)grantType
authorizationCode:(nullable NSString *)code
redirectURL:(nullable NSURL *)redirectURL
clientID:(NSString *)clientID
clientSecret:(nullable NSString *)clientSecret
scopes:(nullable NSArray<NSString *> *)scopes
refreshToken:(nullable NSString *)refreshToken
codeVerifier:(nullable NSString *)codeVerifier
additionalParameters:
(nullable NSDictionary<NSString *, NSString *> *)additionalParameters
additionalHeaders:
(nullable NSDictionary<NSString *, NSString *> *)additionalHeaders
OID_UNAVAILABLE_USE_INITIALIZER(@selector
(initWithConfiguration:
deviceCode:
clientID:
clientSecret:
additionalParameters:
additionalHeaders:
))
- (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
grantType:(NSString *)grantType
authorizationCode:(nullable NSString *)code
redirectURL:(nullable NSURL *)redirectURL
clientID:(NSString *)clientID
clientSecret:(nullable NSString *)clientSecret
scope:(nullable NSString *)scope
refreshToken:(nullable NSString *)refreshToken
codeVerifier:(nullable NSString *)codeVerifier
additionalParameters:
(nullable NSDictionary<NSString *, NSString *> *)additionalParameters
additionalHeaders:
(nullable NSDictionary<NSString *, NSString *> *)additionalHeaders
OID_UNAVAILABLE_USE_INITIALIZER(@selector
(initWithConfiguration:
deviceCode:
clientID:
clientSecret:
additionalParameters:
additionalHeaders:
))
- (instancetype)initWithConfiguration:(OIDTVServiceConfiguration *)configuration
deviceCode:(NSString *)deviceCode
clientID:(NSString *)clientID
clientSecret:(NSString *)clientSecret
additionalParameters:(NSDictionary<NSString *, NSString *> *)additionalParameters {
return [self initWithConfiguration:configuration
deviceCode:deviceCode
clientID:clientID
clientSecret:clientSecret
additionalParameters:additionalParameters
additionalHeaders:nil];
}
- (instancetype)initWithConfiguration:(OIDTVServiceConfiguration *)configuration
deviceCode:(NSString *)deviceCode
clientID:(NSString *)clientID
clientSecret:(NSString *)clientSecret
additionalParameters:(NSDictionary<NSString *, NSString *> *)additionalParameters
additionalHeaders:(NSDictionary<NSString *, NSString *> *)additionalHeaders {
self = [super initWithConfiguration:configuration
grantType:kOIDTVDeviceTokenGrantType
authorizationCode:nil
redirectURL:[[NSURL alloc] initWithString:@""]
clientID:clientID
clientSecret:clientSecret
scope:nil
refreshToken:nil
codeVerifier:nil
additionalParameters:additionalParameters
additionalHeaders:additionalHeaders];
if (self) {
_deviceCode = [deviceCode copy];
}
return self;
}
#pragma mark - NSCopying
- (instancetype)copyWithZone:(nullable NSZone *)zone {
// The documentation for NSCopying specifically advises us to return a reference to the original
// instance in the case where instances are immutable (as ours is):
// "Implement NSCopying by retaining the original instead of creating a new copy when the class
// and its contents are immutable."
return self;
}
#pragma mark - NSSecureCoding
+ (BOOL)supportsSecureCoding {
return YES;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
NSString *deviceCode = [aDecoder decodeObjectOfClass:[NSString class] forKey:kDeviceCodeKey];
_deviceCode = deviceCode;
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)aCoder {
[super encodeWithCoder:aCoder];
[aCoder encodeObject:_deviceCode forKey:kDeviceCodeKey];
}
- (OIDURLQueryComponent *)tokenRequestBody {
OIDURLQueryComponent *query = [[OIDURLQueryComponent alloc] init];
if (self.grantType) {
[query addParameter:kGrantTypeKey value:self.grantType];
}
[query addParameter:kDeviceCodeKey value:self.deviceCode];
[query addParameters:self.additionalParameters];
return query;
}
@end