-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathTokenResult.cs
90 lines (79 loc) · 2.36 KB
/
TokenResult.cs
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
using System;
using System.Text.Json.Serialization;
using WebApiClientCore.Extensions.OAuths.Exceptions;
namespace WebApiClientCore.Extensions.OAuths
{
/// <summary>
/// 表示Token结果
/// </summary>
public class TokenResult
{
/// <summary>
/// token创建时间
/// </summary>
private readonly DateTime createTime = DateTime.Now;
/// <summary>
/// access_token
/// </summary>
[JsonPropertyName("access_token")]
public string? Access_token { get; set; }
/// <summary>
/// id_token
/// </summary>
[JsonPropertyName("id_token")]
public string? Id_token { get; set; }
/// <summary>
/// expires_in
/// 过期时间戳(秒)
/// </summary>
[JsonPropertyName("expires_in")]
public long Expires_in { get; set; }
/// <summary>
/// token_type
/// </summary>
[JsonPropertyName("token_type")]
public string? Token_type { get; set; }
/// <summary>
/// refresh_token
/// </summary>
[JsonPropertyName("refresh_token")]
public string? Refresh_token { get; set; }
/// <summary>
/// error
/// </summary>
[JsonPropertyName("error")]
public string? Error { get; set; }
/// <summary>
/// 确保 token 成功
/// </summary>
/// <exception cref="TokenException"></exception>
public TokenResult EnsureSuccess()
{
return this.IsSuccess() ? this : throw new TokenException(this.Error);
}
/// <summary>
/// 返回是否成功
/// </summary>
/// <returns></returns>
public virtual bool IsSuccess()
{
return string.IsNullOrEmpty(this.Access_token) == false;
}
/// <summary>
/// 返回是否已过期
/// </summary>
/// <returns></returns>
public virtual bool IsExpired()
{
return DateTime.Now.Subtract(this.createTime) > TimeSpan.FromSeconds(this.Expires_in);
}
/// <summary>
/// 返回 token 是否支持刷新
/// </summary>
/// <returns></returns>
public virtual bool CanRefresh()
{
return string.IsNullOrEmpty(this.Refresh_token) == false;
}
}
}