Blame view

sys/Hh.Mes.Service/WebService/Base/SysFileService.cs 7.4 KB
HuXiYu authored
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
using Hh.Mes.Common.Infrastructure;
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.Response;
using Hh.Mes.Service.Repository;
using SqlSugar;
using System;
using System.Linq;
using System.Linq.Expressions;
using System.Data;
using System.IO;

namespace Hh.Mes.Service.Base
{
    public class SysFileService : RepositorySqlSugar<sys_File>
    {
        /// <summary>
        /// 文件存储路径
        /// </summary>
        private readonly string FileNamePath = "\\wwwroot\\Document";

        public dynamic Load(PageReq pageReq, sys_File entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
HuXiYu authored
27
                var result = new Response();
HuXiYu authored
28
29
                var expression = LinqWhere(entity);
                //先组合查询表达式
HuXiYu authored
30
31
32
33
                var query = Context.Queryable<sys_File, base_equipment_type>((x, y) => new JoinQueryInfos(JoinType.Left, x.targetId == y.id))
                                   .Where(expression);
HuXiYu authored
34
35
36
37
                //Exelture就不分页,因为导出的话是全部导出
                if (pageReq != null)
                {
                    int total = 0;
HuXiYu authored
38
39
40
                    result.Result = query.Select((x, y) => new
                    {
                        x.fileName,
41
                        x.id,
HuXiYu authored
42
43
44
45
46
47
48
49
                        x.targetId,
                        x.host,

                        x.url,
                        x.size,
                        x.suffix,
                        x.remark,
50
                        targetName = y.name,
HuXiYu authored
51
52
53
54
                        x.createBy,
                        x.createTime
                    })
                    .ToOffsetPage(pageReq.page, pageReq.limit, ref total);
HuXiYu authored
55
56
57
58
59
60
61
62
63
64
                    result.Count = total;
                }
                else
                {
                    result.Result = query.ToList();
                    result.Count = result.Result.Count();
                }
                return result;
            }, catchRetrunValue: "list");
        }
65
HuXiYu authored
66
67
68
69
70
        public dynamic DelByIds(int[] ids)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
71
                var docs = Context.Queryable<sys_File>().Where(x => ids.Contains(x.id)).ToList();
HuXiYu authored
72
73
74
75
                docs.ForEach((item) =>
                {
                    DeleteDocument(item.url);
                });
76
                Context.Deleteable<sys_File>(t => ids.Contains(t.id)).ExecuteCommand();
HuXiYu authored
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
                return response;
            });
        }

        /// <summary>
        /// 删除服务器内文件
        /// </summary>
        /// <param name="fileName"></param>
        private void DeleteDocument(string fileName)
        {
            string path = $"{Directory.GetCurrentDirectory()}{FileNamePath}\\{fileName}";
            if (File.Exists(path))
            {
                File.Delete(path);
            }
        }

        public dynamic AddOrUpdate(sys_File entity)
        {
            return ExceptionsHelp.Instance.ExecuteT<dynamic>(() =>
            {
98
99
                var response = new Response();
                for (int i = 0; i < entity.excelfile.Count; i++)
HuXiYu authored
100
                {
101
102
103
104
105
106
107
108
109
110
111
112
113
114
                    if (entity.targetId == 0)
                    {
                        return response.ResponseError("适用的设备类型不能为空!");
                    }
                    if (entity.excelfile[i] == null || entity.excelfile[i].Length == 0)
                    {
                        return response.ResponseError("上传文件数据时,文件不能为空!");
                    }
                    var UploadPath = $"{Directory.GetCurrentDirectory()}{FileNamePath}";
                    if (!Directory.Exists(UploadPath)) Directory.CreateDirectory(UploadPath);
                    var fileType = entity.excelfile[i]?.FileName.Split(".").LastOrDefault();
                    var fileName = entity.excelfile[i]?.FileName.Replace($".{fileType}", "");
                    if (string.IsNullOrWhiteSpace(fileName)) fileName = Guid.NewGuid().ToString().Substring(0, 8);
                    var newFileName = $"{fileName}_{Guid.NewGuid():N}.{fileType}";
HuXiYu authored
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
                    long size;
                    using (var fs = File.Create($"{UploadPath}\\{newFileName}"))
                    {
                        entity.excelfile[i].CopyTo(fs);
                        fs.Flush();
                        size = fs.Length / 1024;
                    }
                    entity.size = size > 1024 ? $"{size / 1024:N1}M" : $"{size:N1}Kb";
                    entity.suffix = fileType;
                    entity.fileName = fileName;
                    entity.url = newFileName;
                    entity.createBy = sysWebUser.Account;
                    entity.createTime = DateTime.Now;
130
                    Context.Insertable(entity).ExecuteCommand();
131
                }
HuXiYu authored
132
133
134
135
                return response;
            });
        }
136
HuXiYu authored
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
        public Expression<Func<sys_File, bool>> LinqWhere(sys_File model)
        {
            try
            {
                var exp = Expressionable.Create<sys_File>();
                //数据过滤条件
                //if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
                if (!string.IsNullOrWhiteSpace(model.targetTableName))
                {
                    exp.And(x => x.targetTableName.Contains(model.targetTableName));
                }
                if (!string.IsNullOrWhiteSpace(model.fileCode))
                {
                    exp.And(x => x.fileCode.Contains(model.fileCode));
                }
                if (!string.IsNullOrWhiteSpace(model.host))
                {
                    exp.And(x => x.host.Contains(model.host));
                }

                if (model.targetId != 0)
                {
                    exp.And(x => x.targetId.Equals(model.targetId));
                }
                if (!string.IsNullOrWhiteSpace(model.fileName))
                {
163
                    exp.And(x => x.fileName.Contains(model.fileName));
HuXiYu authored
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
                }
                return exp.ToExpression();//拼接表达式
            }
            catch (Exception ex)
            {
                throw new Exception($"{ex.Message}");
            }
        }


        /// <summary>
        /// /左侧列表 仓库+设备类型
        /// </summary>
        public DataTable GetTreeList()
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                string sql = $@"
                            select
                              id = '1',
                              name = '根节点',
                              keys = '00000000-0000-0000-0000-000000000000',
                              parentId = null,
                              isok = '',
                              Code = ''
                            union all
                            select
                             id,
                             name = Name,
                             keys = Code,
                             parentId = '00000000-0000-0000-0000-000000000000',
                             isok = 'true',
                             e.Code
                            from base_equipment_type e";
                var dt = base.Context.Ado.GetDataTableAsync(sql).Result;
                return dt == null || dt.Rows.Count == 0 ? null : dt;
            });

        }
    }
}