服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-05-31 39b3533a0be2f623f00fd39c6d25667ebdad2ef2
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Cors;
using Microsoft.AspNetCore.Mvc;
using System.IO;
using System.Reflection;
using Rhea.Common;
using Tiger.IBusiness;
using System.Threading;
using System.Linq;
using Tiger.Model;
using System.Xml.Linq;
 
namespace Tiger.Api.Controllers.Base
{
    /// <summary>
    /// Api系统服务
    /// </summary>
    [EnableCors("Any")]
    [ApiController]
    public partial class SystemController : ControllerBase
    {
        /// <summary>
        /// 获取Api的电脑时间
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetApiTimeAsync()
        {
            return Ok(DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss.fff"));
        }
 
        /// <summary>
        /// 获取Api版本
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetVersion()
        {
            return Ok(Assembly.GetExecutingAssembly().GetName().Version.ToString());
        }
 
        /// <summary>
        /// 获取Api公司
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetCompany()
        {
            return Ok((Attribute.GetCustomAttribute(Assembly.GetExecutingAssembly(), typeof(AssemblyCompanyAttribute)) as AssemblyCompanyAttribute).Company);
        }
 
        /// <summary>
        /// 获取Api版权
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetCopyright()
        {
            return Ok((Attribute.GetCustomAttribute(Assembly.GetExecutingAssembly(), typeof(AssemblyCopyrightAttribute)) as AssemblyCopyrightAttribute).Copyright);
        }
 
        /// <summary>
        /// 获取Api说明
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetDescription()
        {
            return Ok((Attribute.GetCustomAttribute(Assembly.GetExecutingAssembly(), typeof(AssemblyDescriptionAttribute)) as AssemblyDescriptionAttribute).Description);
        }
 
        /// <summary>
        /// 获取Api产品
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetProduct()
        {
            return Ok((Attribute.GetCustomAttribute(Assembly.GetExecutingAssembly(), typeof(AssemblyProductAttribute)) as AssemblyProductAttribute).Product);
        }
 
        /// <summary>
        /// 获取Api产品
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Base/[action]")]
        public IActionResult GetMachineCode()
        {
            return Ok(DI.Resolve<IBizContext>().GetMachineCode());
        }
 
        /// <summary>
        /// 获取Api产品
        /// </summary>
        /// <returns></returns>
        [HttpGet]
        [Route("System/Entitys/Get")]
        public IActionResult GetEntitys(string Namespace, string StartWith)
        {
            Assembly assembly = Assembly.Load("Tiger.Model");
            Type[] types = assembly.GetTypes();
            var entitys = types.Where(q => q.IsClass && q.GetInterfaces().Contains(typeof(Model.iEntity)) //&& q.Namespace != "Tiger.Model.Minsun"
                                                       && (Namespace.IsNullOrEmpty() || q.Namespace == Namespace) 
                                                       && (StartWith.IsNullOrEmpty() || q.Name.StartsWith(StartWith))
                                                       && !q.GetCustomAttributes(typeof(EntityBase), false).Any()).ToList();
            var data = new
            {
                Total = entitys.Count,
                Data = entitys.Select(q => new
                {
                    q.FullName,
                    q.Namespace,
                    q.Name,
                    Properties = q.GetProperties().Select(p => new { p.Name, Type = p.PropertyType.Name }).ToList()
                })
            };
            return Ok(data);
        }
 
        /// <summary>
        /// GetCertification(ApiAction)
        /// 在注册表HKEY_LOCAL_MACHINE\SOFTWARE\TigerClouds节点中读取密钥证书
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult GetCertification([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                var cer = DI.Resolve<IBizContext>().GetTigerActive().GetCertification();
                response = action.GetResponse(new ApiAction(cer.IsNullOrEmpty() ? "未找到密钥证书" : "获取密钥证书成功", cer));
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "获取密钥证书异常", null);
            }
            return Ok(response);
        }
 
        /// <summary>
        /// SetCertification(ApiAction(Data:key))
        /// 在注册表HKEY_LOCAL_MACHINE\SOFTWARE\TigerClouds节点中写入密钥证书
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult SetCertification([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                DI.Resolve<IBizContext>().GetTigerActive().SetCertification(action.Data?.ToString());
                response = action.GetResponse(new ApiAction("写入密钥证书成功"));
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "写入密钥证书异常", null);
            }
            return Ok(response);
        }
 
        /// <summary>
        /// GetActivationCode(ApiAction)
        /// 在注册表HKEY_LOCAL_MACHINE\SOFTWARE\TigerClouds节点中读取激活码
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult GetActivationCode([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                var cer = DI.Resolve<IBizContext>().GetTigerActive().GetActivationCode();
                response = action.GetResponse(new ApiAction(cer.IsNullOrEmpty() ? "未找到激活码" : "获取激活码成功", cer));
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "获取激活码异常", null);
            }
            return Ok(response);
        }
 
        /// <summary>
        /// SetActivationCode(ApiAction(Data:code))
        /// 在注册表HKEY_LOCAL_MACHINE\SOFTWARE\TigerClouds节点中写入激活码
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult SetActivationCode([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                DI.Resolve<IBizContext>().GetTigerActive().SetActivationCode(action.Data?.ToString());
                response = action.GetResponse(new ApiAction("写入激活码成功"));
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "写入激活码异常", null);
            }
            return Ok(response);
        }
 
        /// <summary>
        /// GetCurLicense(ApiAction)
        /// 获取许可信息
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult GetCurLicense([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                response = action.GetResponse("获取许可信息成功", data: DI.Resolve<IBizContext>().GetTigerActive().GetCurLicense());
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "获取许可信息异常", null);
            }
            return Ok(response);
        }
 
        /// <summary>
        /// Active(ApiAction(Data:activationCode))
        /// 激活Api
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult Active([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                response = action.GetResponse(DI.Resolve<IBizContext>().GetTigerActive().Active(action.Data?.ToString()));
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "激活Api异常");
            }
            return Ok(response);
        }
 
        /// <summary>
        /// Verify(ApiAction)
        /// 验证Api是否已激活
        /// </summary>
        /// <param name="action"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("System/Authorization/[action]")]
        public IActionResult Verify([FromBody] ApiAction action)
        {
            ApiAction response;
            try
            {
                response = action.GetResponse(DI.Resolve<IBizContext>().GetTigerActive().Verify());
            }
            catch (System.Exception ex)
            {
                response = action.GetResponse().CatchExceptionWithLog(ex, "验证Api是否已激活异常");
            }
            return Ok(response);
        }
 
        #region Function
        /// <summary>
        /// 获取到文件流结果
        /// </summary>
        /// <param name="fileInfo">FileInfo文件</param>
        /// <returns>返回FileStreamResult</returns>
        private async Task<IActionResult> GetFileStreamResultAsync(FileInfo fileInfo)
        {
            if (fileInfo == null) return NotFound();
 
            var memoryStream = new MemoryStream();
            using (var stream = new FileStream(fileInfo.FullName, FileMode.Open))
            {
                await stream.CopyToAsync(memoryStream);
            }
            memoryStream.Seek(0, SeekOrigin.Begin);
 
            //文件名必须编码,否则会有特殊字符(如中文)无法在此下载。
            string encodeFilename = System.Net.WebUtility.UrlEncode(fileInfo.Name);
            Response.Headers.Add("Content-Disposition", "attachment; filename=" + encodeFilename);
            return new FileStreamResult(memoryStream, "application/octet-stream");//文件流方式,指定文件流对应的ContenType。
        }
 
        /// <summary>
        /// 获取到文件流结果
        /// </summary>
        /// <param name="fileInfo">FileInfo文件</param>
        /// <returns>返回FileStreamResult</returns>
        private IActionResult GetFileStreamResult(FileInfo fileInfo)
        {
            if (fileInfo == null) return NotFound();
 
            var memoryStream = new MemoryStream();
            using (var stream = new FileStream(fileInfo.FullName, FileMode.Open))
            {
                stream.CopyTo(memoryStream);
            }
            memoryStream.Seek(0, SeekOrigin.Begin);
 
            //文件名必须编码,否则会有特殊字符(如中文)无法在此下载。
            string encodeFilename = System.Net.WebUtility.UrlEncode(fileInfo.Name);
            Response.Headers.Add("Content-Disposition", "attachment; filename=" + encodeFilename);
            return new FileStreamResult(memoryStream, "application/octet-stream");//文件流方式,指定文件流对应的ContenType。
        }
 
        /// <summary>
        /// 分段下载数据
        /// </summary>
        /// <param name="fileInfo">FileInfo文件</param>
        /// <returns>返回响应结果</returns>
        private async Task<IActionResult> SegmentDownloadFileAsync(FileInfo fileInfo)
        {
            if (fileInfo == null) return NotFound();
 
            int index = 0;
 
            using (FileStream fs = new FileStream(fileInfo.FullName, FileMode.Open))
            {
                if (fs.Length <= 0)
                {
                    return Ok(new { code = -1, msg = "文件尚未处理" });
                }
                int shardSize = 1 * 1024 * 1024;//一次1M
                int count = (int)(fs.Length / shardSize);
 
                if ((fs.Length % shardSize) > 0)
                {
                    count += 1;
                }
                if (index > count - 1)
                {
                    return Ok(new { code = -1, msg = "无效的下标" });
                }
 
                fs.Seek(index * shardSize, SeekOrigin.Begin);
 
                if (index == count - 1)
                {
                    //最后一片 = 总长 - (每次片段大小 * 已下载片段个数)
                    shardSize = (int)(fs.Length - (shardSize * index));
                }
                byte[] datas = new byte[shardSize];
                await fs.ReadAsync(datas.AsMemory(0, datas.Length));
 
                return File(datas, "application/octet-stream");
            }
        }
 
        /// <summary>
        /// 分段下载数据
        /// </summary>
        /// <param name="fileInfo">FileInfo文件</param>
        /// <returns>返回响应结果</returns>
        private IActionResult SegmentDownloadFile(FileInfo fileInfo)
        {
            if (fileInfo == null) return NotFound();
 
            int index = 0;
 
            using (FileStream fs = new FileStream(fileInfo.FullName, FileMode.Open))
            {
                if (fs.Length <= 0)
                {
                    return Ok(new { code = -1, msg = "文件尚未处理" });
                }
                int shardSize = 1 * 1024 * 1024;//一次1M
                int count = (int)(fs.Length / shardSize);
 
                if ((fs.Length % shardSize) > 0)
                {
                    count += 1;
                }
                if (index > count - 1)
                {
                    return Ok(new { code = -1, msg = "无效的下标" });
                }
 
                fs.Seek(index * shardSize, SeekOrigin.Begin);
 
                if (index == count - 1)
                {
                    //最后一片 = 总长 - (每次片段大小 * 已下载片段个数)
                    shardSize = (int)(fs.Length - (shardSize * index));
                }
                byte[] datas = new byte[shardSize];
                fs.Read(datas, 0, datas.Length);
 
                return File(datas, "application/octet-stream");
            }
        }
        #endregion
 
    }//endClass
}