using Attribute; using Dto; using Vo; using Model; using Model.Base; using Repository; using Service; using Microsoft.AspNetCore.Mvc; using Aliyun.OSS; using Common; using System.Text.RegularExpressions; using Infrastructure.Model; using Base; namespace Services { /// /// 页面模板更新信息Service业务层处理 /// [AppService(ServiceType = typeof(IPageUpdateInfoService), ServiceLifetime = LifeTime.Transient)] public class PageUpdateInfoService : BaseService, IPageUpdateInfoService { /// /// 页面模板更新信息-列表 /// /// 请求参数 /// 页面模板更新信息列表 public PagedInfo List([FromQuery] PageUpdateInfoListDto parm) { //开始拼装查询条件 var predicate = Expressionable.Create(); predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.kind), m => m.kind.Contains(parm.kind)); var response = Queryable() .Where(predicate.ToExpression()) .OrderByDescending(m => m.id) .ToPage(new PagerInfo()); return response; } /// /// 页面模板更新信息-刷新文件 /// /// 请求参数 /// 页面模板更新信息刷新文件 public void UpdateTemplate([FromQuery] PageUpdateInfoListDto parm) { OssConfigs ossConfigs = new(); AppSettings.Bind("OssConfigs", ossConfigs); GetSystemFiles(ossConfigs, parm.kind); foreach (string filename in SystemFiles) { string template = filename.Substring(filename.LastIndexOf("/") + 1); if (template.EndsWith(".html")) { PageUpdateInfo check = GetFirst(m => m.modulePath == template && m.kind == parm.kind); if (check == null) { string ModuleContent = Function.GetNetFileContent(ossConfigs.Host + "template/app/" + parm.kind + "/" + template); if (!string.IsNullOrEmpty(ModuleContent)) { string admintitle = ""; string title = ""; Match match = Regex.Match(ModuleContent, ".*?", RegexOptions.IgnoreCase); if (match.Success) { admintitle = match.Value.Replace("", "").Replace("", ""); if (admintitle.Contains("-")) { title = admintitle.Substring(admintitle.LastIndexOf("-") + 1); } else { title = admintitle; } } Add(new PageUpdateInfo() { createDate = DateTime.Now, updateDate = DateTime.Now, kind = parm.kind, leftAction1 = "{\"Url\":\"GoBack#{\\\"Level\\\":\\\"1\\\"}\",\"Jump\":\"1\",\"Kind\":\"2\"}", leftBtn1 = "static/images/left.png", skidFlag = true, showScrollBar = false, title = title, showTitle = true, statusBarStyle = "default", textColor = "FFFFFF", backgroudColor = "FD7538", modulePath = template, moduleVersion = 1, }); } } } } } List SystemFiles; private void GetSystemFiles(OssConfigs ossConfigs, string Kind = "default") { SystemFiles = new List(); var client = new OssClient(ossConfigs.Endpoint, ossConfigs.Key, ossConfigs.Secret); var listObjectsRequest = new ListObjectsRequest(ossConfigs.BucketName); listObjectsRequest.MaxKeys = 1000; listObjectsRequest.Prefix = "template/app/" + Kind + "/"; var result = client.ListObjects(listObjectsRequest); foreach (var summary in result.ObjectSummaries) { SystemFiles.Add(summary.Key); } } } }