PublicMethodController.cs 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. using System;
  2. using System.Collections.Generic;
  3. using Microsoft.AspNetCore.Mvc;
  4. using Microsoft.AspNetCore.Http;
  5. using Microsoft.Extensions.Logging;
  6. using Microsoft.Extensions.Options;
  7. using Library;
  8. using System.Web;
  9. using System.Security.Cryptography;
  10. using System.Text;
  11. using Aliyun.OSS;
  12. using LitJson;
  13. // For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
  14. namespace MySystem.Areas.Api.Controllers
  15. {
  16. [Area("Api")]
  17. [Route("Api/[controller]/[action]")]
  18. public class PublicMethodController : BaseController
  19. {
  20. public PublicMethodController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  21. {
  22. }
  23. #region 系统-上传图片
  24. public JsonResult UploadPhotoByBase64(string value)
  25. {
  26. try
  27. {
  28. value = value.Replace("data:image/png;base64,", "");
  29. string base64str = HttpUtility.UrlDecode(value).Replace(" ", "+");
  30. string dummyData = base64str.Replace("%", "").Replace(",", "").Replace(" ", "+");
  31. if (dummyData.Length % 4 > 0)
  32. {
  33. dummyData = dummyData.PadRight(dummyData.Length + 4 - dummyData.Length % 4, '=');
  34. }
  35. string Icon = function.base64StringToImage(dummyData, "/static/upload/" + DateTime.Now.Year + "/" + DateTime.Now.Month + "/" + DateTime.Now.Day + "/", "MT" + function.MD5_16(Guid.NewGuid().ToString()) + ".png");
  36. return Json(new AppResultJson() { Status = "1", Info = "", Data = Icon });
  37. }
  38. catch (Exception ex)
  39. {
  40. function.WriteLog(DateTime.Now + ":" + ex.ToString(), "系统上传图片异常");
  41. return Json(new AppResultJson() { Status = "1", Info = "", Data = "" });
  42. }
  43. }
  44. #endregion
  45. #region 前端上传oss返回参数
  46. public JsonResult OssInfo(string value)
  47. {
  48. value = DesDecrypt(value);
  49. JsonData data = JsonMapper.ToObject(value);
  50. string dir = data["dir"].ToString(); //文件上传路径
  51. if (string.IsNullOrEmpty(data["dir"].ToString()))
  52. {
  53. return Json(new AppResultJson() { Status = "1", Info = "文件上传路径不能为空" });
  54. }
  55. Dictionary<string, object> Obj = new Dictionary<string, object>();
  56. var OssUrl = OssHost;
  57. var AccessKeyId = OssKey;
  58. var AccessKeySecret = OssSecret;
  59. var endpoint = "https://" + OssEndpoint;
  60. // 构造OssClient实例。 endpoint 格式:https://oss-cn-beijing.aliyuncs.com
  61. var ossClient = new OssClient(endpoint, AccessKeyId, AccessKeySecret);
  62. var config = new PolicyConditions();
  63. config.AddConditionItem(PolicyConditions.CondContentLengthRange, 1, 1024L * 1024 * 1024 * 5);// 文件大小范围:单位byte
  64. config.AddConditionItem(MatchMode.StartWith, PolicyConditions.CondKey, dir);
  65. var expire = DateTimeOffset.Now.AddMinutes(30);// 过期时间
  66. // 生成 Policy,并进行 Base64 编码
  67. var policy = ossClient.GeneratePostPolicy(expire.LocalDateTime, config);
  68. var policyBase64 = Convert.ToBase64String(Encoding.UTF8.GetBytes(policy));
  69. // 计算签名
  70. var hmac = new HMACSHA1(Encoding.UTF8.GetBytes(AccessKeySecret));
  71. var bytes = hmac.ComputeHash(Encoding.UTF8.GetBytes(policyBase64));
  72. var Signature = Convert.ToBase64String(bytes);
  73. Obj.Add("OssUrl", OssUrl);
  74. Obj.Add("AccessKeyId", AccessKeyId);
  75. // Obj.Add("AccessKeySecret", AccessKeySecret);
  76. Obj.Add("Policy", policyBase64);
  77. Obj.Add("Expiration", expire);
  78. Obj.Add("Signature", Signature);
  79. Obj.Add("dir", dir);
  80. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  81. }
  82. #endregion
  83. }
  84. }