服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
18 小时以前 a960900364d19bbf0ad7923a57989609e7fce798
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
246
247
248
using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.IBusiness
{
    ///// <summary>
    ///// API 返回 泛型标准类
    ///// </summary>
    ///// <typeparam name="T">Data数据类型</typeparam>
    //public class ApiAction<T> : Rhea.Common.ApiAction<T>
    //{
    //    /// <summary>
    //    /// 返回的本地化信息
    //    /// </summary>
    //    public AuthOptions Options { get; set; } = new();
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="localeMsg">返回消息</param>
    //    /// <param name="data">返回数据</param>
    //    /// <returns></returns>
    //    public ApiAction<T> CatchExceptionWithLog(Exception ex, Locale localeMsg, T data)
    //    {
    //        Data = data;
    //        return CatchExceptionWithLog(ex, localeMsg);
    //    }
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="localeMsg">返回消息</param>
    //    public ApiAction<T> CatchExceptionWithLog(Exception ex, Locale localeMsg)
    //    {
    //        CatchException(ex, localeMsg);
    //        Logger.Default.Fatal(ex, localeMsg.Default());
    //        return this;
    //    }
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
    //    /// <param name="data">返回数据</param>
    //    /// <returns></returns>
    //    public ApiAction<T> CatchExceptionWithLog(Exception ex, string msg, T data)
    //    {
    //        Data = data;
    //        return CatchExceptionWithLog(ex, msg);
    //    }
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
    //    public ApiAction<T> CatchExceptionWithLog(Exception ex, string msg = null)
    //    {
    //        CatchException(ex, msg);
    //        Logger.Default.Fatal(ex, msg);
    //        return this;
    //    }
    //}
 
    ///// <summary>
    ///// API 返回 标准类
    ///// </summary>
    //public class ApiAction : Rhea.Common.ApiAction
    //{
    //    /// <summary>
    //    /// 返回的本地化信息
    //    /// </summary>
    //    public AuthOptions Options { get; set; } = new();
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="localeMsg">返回消息</param>
    //    /// <param name="data">返回数据</param>
    //    /// <returns></returns>
    //    public ApiAction CatchExceptionWithLog(Exception ex, Locale localeMsg, object data)
    //    {
    //        Data = data;
    //        return CatchExceptionWithLog(ex, localeMsg);
    //    }
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="localeMsg">返回消息</param>
    //    public ApiAction CatchExceptionWithLog(Exception ex, Locale localeMsg)
    //    {
    //        CatchException(ex, localeMsg);
    //        Logger.Default.Fatal(ex, localeMsg.Default());
    //        return this;
    //    }
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
    //    /// <param name="data">返回数据</param>
    //    /// <returns></returns>
    //    public ApiAction CatchExceptionWithLog(Exception ex, string msg, object data)
    //    {
    //        Data = data;
    //        return CatchExceptionWithLog(ex, msg);
    //    }
 
    //    /// <summary>
    //    /// 捕获当前 Action 的异常,返回消息, 并记录日志
    //    /// </summary>
    //    /// <param name="ex">捕获到的异常</param>
    //    /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
    //    public ApiAction CatchExceptionWithLog(Exception ex, string msg = null)
    //    {
    //        CatchException(ex, msg);
    //        Logger.Default.Fatal(ex, msg);
    //        return this;
    //    }
    //}
 
    /// <summary>
    /// ApiAction 扩展类
    /// </summary>
    public static class ApiActionExtension
    {
        /// <summary>
        /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="localeMsg">返回消息</param>
        /// <param name="data">返回数据</param>
        /// <returns></returns>
        public static ApiAction<T> CatchExceptionWithLog<T>(this ApiAction<T> action, Exception ex, Locale localeMsg, T data)
        {
            action.Data = data;
            return CatchExceptionWithLog<T>(action, ex, localeMsg);
        }
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="localeMsg">返回消息</param>
        public static ApiAction<T> CatchExceptionWithLog<T>(this ApiAction<T> action, Exception ex, Locale localeMsg)
        {
            action.CatchException(ex, localeMsg);
            Logger.Default.Fatal(ex, localeMsg.Default());
            return action;
        }
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
        /// <param name="data">返回数据</param>
        /// <returns></returns>
        public static ApiAction<T> CatchExceptionWithLog<T>(this ApiAction<T> action, Exception ex, string msg, T data)
        {
            action.Data = data;
            return CatchExceptionWithLog<T>(action, ex, msg);
        }
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
        public static ApiAction<T> CatchExceptionWithLog<T>(this ApiAction<T> action, Exception ex, string msg = null)
        {
            action.CatchException(ex, msg);
            Logger.Default.Fatal(ex, msg);
            return action;
        }
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="localeMsg">返回消息</param>
        /// <param name="data">返回数据</param>
        public static ApiAction CatchExceptionWithLog(this ApiAction action, Exception ex, Locale localeMsg, object data)
        {
            action.Data = data;
            return CatchExceptionWithLog(action, ex, localeMsg);
        }
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="localeMsg">返回消息</param>
        public static ApiAction CatchExceptionWithLog(this ApiAction action, Exception ex, Locale localeMsg)
        {
            action.CatchException(ex, localeMsg);
            Logger.Default.Fatal(ex, localeMsg.Default());
            return action;
        }
 
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回数据和消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
        /// <param name="data">返回数据</param>
        public static ApiAction CatchExceptionWithLog(this ApiAction action, Exception ex, string msg, object data)
        {
            action.Data = data;
            return CatchExceptionWithLog(action, ex, msg);
        }
 
        /// <summary>
        /// 捕获当前 Action 的异常,返回消息, 并记录日志
        /// </summary>
        /// <param name="ex">捕获到的异常</param>
        /// <param name="msg">返回消息,最终按 "Catch ApiAction Exception : {msg}. {ex.Message}{ex.StackTrace}" 返回</param>
        public static ApiAction CatchExceptionWithLog(this ApiAction action, Exception ex, string msg = null)
        {
            action.CatchException(ex, msg);
            Logger.Default.Fatal(ex, msg);
            return action;
        }
    }
 
    /// <summary>
    /// ApiAction 扩展实体
    /// </summary>
    public class ApiActionExt : ApiAction
    {
        /// <summary>
        /// SqlSugar IncludesAllFirstLayer
        /// </summary>
        public bool NeedInclude { get; set; } = false;
    }
}