-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathauthorization.rb
43 lines (36 loc) · 947 Bytes
/
authorization.rb
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
# frozen_string_literal: true
module AppStoreConnectApi
class Authorization
ALGORITHM = 'ES256'
TOKEN_AUDIENCE = "appstoreconnect-v1"
TOKEN_ENTERPRISE_AUDIENCE = "apple-developer-enterprise-v1"
def initialize(issuer_id, key_id, private_key, is_enterprise_account: false)
@issuer_id = issuer_id
@key_id = key_id
@private_key = private_key
@is_enterprise_account = is_enterprise_account
end
def token
JWT.encode payload, private_key, ALGORITHM, header_fields
end
private
def payload
{
iss: @issuer_id,
iat: Time.now.to_i,
exp: Time.now.to_i + (20 * 60),
aud: if @is_enterprise_account
TOKEN_ENTERPRISE_AUDIENCE
else
TOKEN_AUDIENCE
end
}
end
def private_key
OpenSSL::PKey.read @private_key
end
def header_fields
{ kid: @key_id }
end
end
end