Projekt

Obecné

Profil

Stáhnout (9.5 KB) Statistiky
| Větev: | Tag: | Revize:
1
using Core.Contexts;
2
using Core.Entities;
3
using Models.Documents;
4
using Serilog;
5
using System;
6
using System.Collections.Generic;
7
using System.IO.Compression;
8
using System.Linq;
9
using System.Text;
10
using System.Threading.Tasks;
11
using System.Web;
12
using AutoMapper;
13
using Models.Users;
14
using Ganss.XSS;
15
using Microsoft.EntityFrameworkCore;
16

    
17
namespace Core.Services.DocumentService
18
{
19
    public class DocumentServiceEF : IDocumentService
20
    {
21
        private readonly DatabaseContext databaseContext;
22
        private readonly ILogger logger;
23
        private readonly IMapper mapper;
24

    
25
        public DocumentServiceEF(DatabaseContext databaseContext, ILogger logger, IMapper mapper)
26
        {
27
            this.databaseContext = databaseContext;
28
            this.logger = logger;
29
            this.mapper = mapper;
30
        }
31

    
32
        /// <summary>
33
        /// Adds the documents in request to the database
34
        /// </summary>
35
        /// <param name="request">request</param>
36
        /// <param name="userId">GUID of the user</param>
37
        /// <exception cref="InvalidOperationException">No User with passed GUID</exception>
38
        /// <exception cref="FormatException">Error decoding BASE64 content</exception>
39
        /// <exception cref="InvalidDataException">Zip file has wrong format</exception>
40
        /// <exception cref="IOException">Error reading entries from the zip file</exception>
41
        public void AddDocuments(DocumentAddRequest request, Guid userId)
42
        {
43
            User user = databaseContext.Users.Single(u => u.Id == userId);
44
            int requiredAnnotations = int.Parse(databaseContext.ConfigurationItems.Single(ci => ci.Key == Constants.Constants.RequiredAnnotationsKey).Value);
45

    
46
            foreach (var documentInfo in request.Documents)
47
            {
48
                if (documentInfo.Format == Models.Enums.EAddDocumentFormat.TEXTFILE)
49
                {
50
                    // TODO hardcoded UTF-8 - maybe do something smarter
51
                    var documentContent = Encoding.UTF8.GetString(Convert.FromBase64String(documentInfo.Content));
52
                    SaveDocument(documentContent, user, documentInfo.Name, requiredAnnotations);
53
                }
54
                else if (documentInfo.Format == Models.Enums.EAddDocumentFormat.ZIP)
55
                {
56
                    var (names, contents) = UnzipDocuments(documentInfo.Content);
57
                    for (int i = 0; i < names.Count; i++)
58
                    {
59
                        SaveDocument(contents[i], user, names[i], requiredAnnotations);
60
                    }
61
                }
62
            }
63
        }
64

    
65
        /// <summary>
66
        /// 
67
        /// </summary>
68
        /// <param name="base64encoded"></param>
69
        /// <returns></returns>
70
        private (List<string> Names, List<string> Contents) UnzipDocuments(string base64encoded)
71
        {
72
            List<string> names = new();
73
            List<string> contents = new();
74

    
75
            byte[] decoded = Convert.FromBase64String(base64encoded);
76

    
77
            using (var zipStream = new MemoryStream(decoded))
78
            using (var zipArchive = new ZipArchive(zipStream))
79
            {
80
                foreach (var entry in zipArchive.Entries)
81
                {
82
                    names.Add(entry.Name);
83
                    using (var streamReader = new StreamReader(entry.Open()))
84
                    {
85
                        string text = streamReader.ReadToEnd();
86
                        contents.Add(text);
87
                    }
88
                }
89
            }
90

    
91
            return (names, contents);
92
        }
93

    
94
        private void SaveDocument(string content, User userAdded, string documentName, int requiredAnnotations)
95
        {
96
            DocumentContent documentContent = new DocumentContent()
97
            {
98
                Content = content
99
            };
100

    
101
            Document document = new Document()
102
            {
103
                DateAdded = DateTime.Now,
104
                Content = documentContent,
105
                UserAdded = userAdded,
106
                Name = documentName,
107
                Length = documentContent.Content.Length,
108
                RequiredAnnotations = requiredAnnotations
109
            };
110

    
111
            databaseContext.DocumentContents.Add(documentContent);
112
            databaseContext.Documents.Add(document);
113
            databaseContext.SaveChanges();
114
        }
115

    
116
        public DocumentListResponse GetDocuments(int pageIndex, int pageSize)
117
        {
118
            var firstIndex = pageIndex * pageSize;
119
            var documents = databaseContext.Documents.Select(d => d).ToList();
120
            var totalCount = documents.Count;
121
            var pageCount = totalCount / pageSize;
122
            if (pageCount == 0 && totalCount > 0)
123
            {
124
                pageCount = 1;
125
            }
126

    
127
            if (firstIndex > documents.Count - 1)
128
            {
129
                throw new Exception("Page index or page size too large");
130
            }
131

    
132
            if (firstIndex + pageSize > documents.Count - 1)
133
            {
134
                pageSize = documents.Count - firstIndex;
135
            }
136

    
137
            List<DocumentListInfo> documentInfos = new List<DocumentListInfo>();
138
            foreach (var document in documents.GetRange(firstIndex, pageSize))
139
            {
140
                var annotatingUsers = databaseContext.Annotations
141
                    .Where(a => !(a is FinalAnnotation))
142
                    .Where(a => a.Document == document)
143
                    .Select(a => a.User).ToList();
144

    
145
                List<DocumentUserInfo> annotatingUsersDto = new();
146

    
147
                // Include annotation state
148
                foreach (var annotatingUser in annotatingUsers)
149
                {
150
                    var annotation = databaseContext.Annotations
151
                        .Where(a => !(a is FinalAnnotation))
152
                        .Include(a => a.Document)
153
                        .Single(a => a.Document == document && a.User == annotatingUser && !(a is FinalAnnotation));
154
                    var dui = mapper.Map<DocumentUserInfo>(annotatingUser);
155
                    dui.State = annotation.State;
156
                    annotatingUsersDto.Add(dui);
157
                }
158

    
159
                DocumentListInfo dli = mapper.Map<DocumentListInfo>(document);
160
                dli.AnnotatingUsers = annotatingUsersDto;
161

    
162
                dli.FinalizedExists = databaseContext.FinalAnnotations.Any(fa => fa.Document == document);
163
                if (dli.FinalizedExists)
164
                {
165
                    var finalizedAnnotation = databaseContext.FinalAnnotations
166
                        .Include(fa => fa.Annotations)
167
                        .ThenInclude(a => a.User)
168
                        .Single(fa => fa.Document == document);
169
                    
170
                    dli.FinalizedAnnotationId = finalizedAnnotation.Id;
171
                    dli.FinalizedState = finalizedAnnotation.State;
172
                    dli.FinalAnnotations = new();
173

    
174
                    foreach (var annotation in finalizedAnnotation.Annotations)
175
                    {
176
                        dli.FinalAnnotations.Add(new()
177
                        {
178
                            AnnotationId = annotation.Id,
179
                            UserId = annotation.User.Id,
180
                            Username = annotation.User.Username,
181
                            UserFirstName = annotation.User.Name,
182
                            UserSurname = annotation.User.Surname,
183
                        });
184
                    }
185

    
186
                }
187

    
188
                documentInfos.Add(dli);
189
            }
190

    
191
            return new DocumentListResponse()
192
            {
193
                PageCount = pageCount,
194
                PageIndex = pageIndex,
195
                TotalCount = totalCount,
196
                Documents = documentInfos.OrderBy(di => di.Name).ToList()
197
            };
198
        }
199

    
200
        public void SetRequiredAnnotationsForDocuments(SetRequiredAnnotationsRequest request)
201
        {
202
            var documents = databaseContext.Documents.Where(d => request.DocumentIds.Contains(d.Id));
203
            foreach (var doc in documents)
204
            {
205
                doc.RequiredAnnotations = request.RequiredAnnotations;
206
            }
207
            databaseContext.SaveChanges();
208
        }
209

    
210
        public void SetRequiredAnnotationsGlobal(int requiredAnnotations)
211
        {
212
            var requiredAnnotationsItem = databaseContext.ConfigurationItems.Single(ci => ci.Key == Constants.Constants.RequiredAnnotationsKey);
213
            requiredAnnotationsItem.Value = requiredAnnotations.ToString();
214
            databaseContext.SaveChanges();
215
        }
216

    
217
        public int GetRequiredAnnotationsGlobal()
218
        {
219
            var requiredAnnotationsItem = databaseContext.ConfigurationItems.Single(ci => ci.Key == Constants.Constants.RequiredAnnotationsKey);
220
            return int.Parse(requiredAnnotationsItem.Value);
221
        }
222

    
223
        public DocumentPreviewResponse GetDocumentPreview(Guid documentId)
224
        {
225
            try
226
            {
227
                var document = databaseContext.Documents.Include(d => d.Content).Single(d => d.Id == documentId);
228
                HtmlSanitizer sanitizer = new HtmlSanitizer();
229
                sanitizer.AllowedAttributes.Clear();
230
                if (sanitizer.AllowedTags.Contains("img"))
231
                {
232
                    sanitizer.AllowedTags.Remove("img");
233
                }
234
                return new DocumentPreviewResponse()
235
                {
236
                    Content = sanitizer.Sanitize(document.Content.Content)
237
                };
238
            }
239
            catch (InvalidOperationException e)
240
            {
241
                throw new InvalidOperationException("Document not found");
242
            }
243
        }
244
    }
245
}
(1-1/2)