-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathNotify.cs
More file actions
245 lines (203 loc) · 7.41 KB
/
Copy pathNotify.cs
File metadata and controls
245 lines (203 loc) · 7.41 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
using System;
using System.Threading.Tasks;
using PaySharp.Core.Exceptions;
using PaySharp.Core.Utils;
namespace PaySharp.Core
{
/// <summary>
/// 网关返回的支付通知数据的接受
/// </summary>
public class Notify
{
#region 私有字段
private readonly IGateways _gateways;
#endregion
#region 构造函数
/// <summary>
/// 初始化支付通知
/// </summary>
/// <param name="gateways">用于验证支付网关返回数据的网关列表</param>
public Notify(IGateways gateways)
{
_gateways = gateways;
}
#endregion
#region 事件
/// <summary>
/// 网关异步返回的支付通知验证成功时触发
/// </summary>
public event Func<object, PaySucceedEventArgs, bool> PaySucceed;
/// <summary>
/// 网关异步返回的撤销通知验证成功时触发
/// </summary>
public event Func<object, CancelSucceedEventArgs, bool> CancelSucceed;
/// <summary>
/// 网关异步返回的退款通知验证成功时触发
/// </summary>
public event Func<object, RefundSucceedEventArgs, bool> RefundSucceed;
/// <summary>
/// 网关异步返回的未知通知时触发
/// </summary>
public event Func<object, UnKnownNotifyEventArgs, bool> UnknownNotify;
/// <summary>
/// 找不到网关时触发
/// </summary>
public event Action<object, UnknownGatewayEventArgs> UnknownGateway;
#endregion
#region 方法
private bool OnPaySucceed(PaySucceedEventArgs e) => PaySucceed?.Invoke(this, e) ?? false;
private bool OnCancelSucceed(CancelSucceedEventArgs e) => CancelSucceed?.Invoke(this, e) ?? false;
private bool OnRefundSucceed(RefundSucceedEventArgs e) => RefundSucceed?.Invoke(this, e) ?? false;
private bool OnUnknownNotify(UnKnownNotifyEventArgs e) => UnknownNotify?.Invoke(this, e) ?? false;
private void OnUnknownGateway(UnknownGatewayEventArgs e) => UnknownGateway?.Invoke(this, e);
private async Task<NotifyEventArgs> GetNotifyEvent(BaseGateway gateway)
{
if (gateway is NullGateway)
{
return new UnknownGatewayEventArgs(gateway);
}
if (!await gateway.ValidateNotifyAsync())
{
return new UnKnownNotifyEventArgs(gateway) { Message = "签名验证失败" };
}
if (HttpUtil.RequestType == "GET")
{
return new PaySucceedEventArgs(gateway);
}
if (gateway.IsPaySuccess)
{
return new PaySucceedEventArgs(gateway);
}
if (gateway.IsRefundSuccess)
{
return new RefundSucceedEventArgs(gateway);
}
if (gateway.IsCancelSuccess)
{
return new CancelSucceedEventArgs(gateway);
}
return new UnKnownNotifyEventArgs(gateway);
}
private async Task<SendEventResult> SendNotifyEventAsync(BaseGateway gateway)
{
var success = false;
try
{
var eventArgs = await GetNotifyEvent(gateway);
switch (eventArgs)
{
case UnknownGatewayEventArgs unknownGatewayEventArgs:
OnUnknownGateway(unknownGatewayEventArgs);
break;
case UnKnownNotifyEventArgs unKnownNotifyEventArgs:
OnUnknownNotify(unKnownNotifyEventArgs);
break;
case PaySucceedEventArgs args:
{
OnPaySucceed(args);
success = true;
break;
}
case RefundSucceedEventArgs refundSucceedEventArgs:
{
OnRefundSucceed(refundSucceedEventArgs);
success = true;
break;
}
case CancelSucceedEventArgs cancelSucceedEventArgs:
{
OnCancelSucceed(cancelSucceedEventArgs);
success = true;
break;
}
}
}
catch (GatewayException ex)
{
OnUnknownNotify(new UnKnownNotifyEventArgs(gateway)
{
Message = ex.Message
});
}
return new SendEventResult(gateway, success);
}
public async Task<SendEventResult> ReceivedAsync(bool writeFlag)
{
var gateway = await NotifyProcess.GetGatewayAsync(_gateways);
var sendEventResult = await SendNotifyEventAsync(gateway);
if (writeFlag)
{
sendEventResult.WriteFlagXml();
}
return sendEventResult;
}
/// <summary>
/// 接收并验证网关的支付通知
/// </summary>
public Task ReceivedAsync()
{
return ReceivedAsync(true);
// var gateway = await NotifyProcess.GetGatewayAsync(_gateways);
// if (gateway is NullGateway)
// {
// OnUnknownGateway(new UnknownGatewayEventArgs(gateway));
// return;
// }
//
// try
// {
// if (!await gateway.ValidateNotifyAsync())
// {
// OnUnknownNotify(new UnKnownNotifyEventArgs(gateway)
// {
// Message = "签名验证失败"
// });
// gateway.WriteFailureFlag();
// return;
// }
//
// if (HttpUtil.RequestType == "GET")
// {
// OnPaySucceed(new PaySucceedEventArgs(gateway));
// return;
// }
//
// var result = false;
// if (gateway.IsPaySuccess)
// {
// result = OnPaySucceed(new PaySucceedEventArgs(gateway));
// }
// else if (gateway.IsRefundSuccess)
// {
// result = OnRefundSucceed(new RefundSucceedEventArgs(gateway));
// }
// else if (gateway.IsCancelSuccess)
// {
// result = OnCancelSucceed(new CancelSucceedEventArgs(gateway));
// }
// else
// {
// result = OnUnknownNotify(new UnKnownNotifyEventArgs(gateway));
// }
//
// if (result)
// {
// gateway.WriteSuccessFlag();
// }
// else
// {
// gateway.WriteFailureFlag();
// }
// }
// catch (GatewayException ex)
// {
// OnUnknownNotify(new UnKnownNotifyEventArgs(gateway)
// {
// Message = ex.Message
// });
// gateway.WriteFailureFlag();
// }
}
#endregion
}
}