@@ -10,60 +10,31 @@ type Credentials struct {
10
10
SecurityToken string
11
11
}
12
12
13
- const DEFAULT_EXPIRED_FACTOR = 0.8
14
-
15
13
// Expirable credentials with an expiration.
16
- type TempCredentials struct {
14
+ type tempCredentials struct {
17
15
Credentials
18
- expiredFactor float64
19
- expirationInMills int64 // The time when the credentials expires, unix timestamp in millis
20
- lastUpdatedInMills int64
16
+ Expiration time.Time // The time when the credentials expires, unix timestamp in millis
17
+ LastUpdateTime time.Time
21
18
}
22
19
23
- func NewTempCredentials (accessKeyId , accessKeySecret , securityToken string ,
24
- expirationInMills , lastUpdatedInMills int64 ) * TempCredentials {
20
+ func newTempCredentials (accessKeyId , accessKeySecret , securityToken string ,
21
+ expiration time. Time , lastUpdateTime time. Time ) * tempCredentials {
25
22
26
- return & TempCredentials {
23
+ return & tempCredentials {
27
24
Credentials : Credentials {
28
25
AccessKeyID : accessKeyId ,
29
26
AccessKeySecret : accessKeySecret ,
30
27
SecurityToken : securityToken ,
31
28
},
32
- expirationInMills : expirationInMills ,
33
- lastUpdatedInMills : lastUpdatedInMills ,
34
- expiredFactor : DEFAULT_EXPIRED_FACTOR ,
35
- }
36
- }
37
-
38
- // @param factor must > 0.0 and <= 1.0, the less the factor is,
39
- // the more frequently the credentials will be updated.
40
- //
41
- // If factor is set to 0, the credentials will be fetched every time
42
- // [GetCredentials] is called.
43
- //
44
- // If factor is set to 1, the credentials will be fetched only when expired .
45
- func (t * TempCredentials ) WithExpiredFactor (factor float64 ) * TempCredentials {
46
- if factor > 0.0 && factor <= 1.0 {
47
- t .expiredFactor = factor
29
+ Expiration : expiration ,
30
+ LastUpdateTime : lastUpdateTime ,
48
31
}
49
- return t
50
32
}
51
33
52
- // Returns true if credentials has expired already or will expire soon.
53
- func (t * TempCredentials ) ShouldRefresh () bool {
54
- nowInMills := time .Now ().UnixNano () / 1e6
55
- if nowInMills >= t .expirationInMills {
56
- return true
57
- }
58
- duration := (float64 )(t .expirationInMills - t .lastUpdatedInMills ) * t .expiredFactor
59
- if duration < 0.0 { // check here
60
- duration = 0
61
- }
62
- return (nowInMills - t .lastUpdatedInMills ) >= int64 (duration )
34
+ func (t * tempCredentials ) isExpired () bool {
35
+ return time .Now ().After (t .Expiration )
63
36
}
64
37
65
- // Returns true if credentials has expired already.
66
- func (t * TempCredentials ) HasExpired () bool {
67
- nowInMills := time .Now ().UnixNano () / 1e6
68
- return nowInMills >= t .expirationInMills
38
+ func (t * tempCredentials ) isValid () bool {
39
+ return t .Credentials .AccessKeyID != "" && t .Credentials .AccessKeySecret != "" && ! t .Expiration .IsZero ()
69
40
}
0 commit comments