Projekt

Obecné

Profil

Stáhnout (7.31 KB) Statistiky
| Větev: | Tag: | Revize:
1 24e1c89d Vojtěch Bartička
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 5a08541d Vojtěch Bartička
using AutoMapper;
13
using Models.Users;
14 3c185841 Vojtěch Bartička
using Ganss.XSS;
15 3cee56d3 Vojtěch Bartička
using Microsoft.EntityFrameworkCore;
16 24e1c89d Vojtěch Bartička
17
namespace Core.Services.DocumentService
18
{
19
    public class DocumentServiceEF : IDocumentService
20
    {
21
        private readonly DatabaseContext databaseContext;
22
        private readonly ILogger logger;
23 5a08541d Vojtěch Bartička
        private readonly IMapper mapper;
24 24e1c89d Vojtěch Bartička
25 5a08541d Vojtěch Bartička
        public DocumentServiceEF(DatabaseContext databaseContext, ILogger logger, IMapper mapper)
26 24e1c89d Vojtěch Bartička
        {
27
            this.databaseContext = databaseContext;
28
            this.logger = logger;
29 5a08541d Vojtěch Bartička
            this.mapper = mapper;
30 24e1c89d Vojtěch Bartička
        }
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 ceb95b98 Vojtěch Bartička
            int requiredAnnotations = int.Parse(databaseContext.ConfigurationItems.Single(ci => ci.Key == Constants.Constants.RequiredAnnotationsKey).Value);
45 005202c6 Vojtěch Bartička
46 24e1c89d Vojtěch Bartička
            foreach (var documentInfo in request.Documents)
47
            {
48 52fe46f9 Vojtěch Bartička
                if (documentInfo.Format == Models.Enums.EAddDocumentFormat.TEXTFILE)
49 24e1c89d Vojtěch Bartička
                {
50 7b2e66d3 Vojtěch Bartička
                    // TODO hardcoded UTF-8 - maybe do something smarter
51
                    var documentContent = Encoding.UTF8.GetString(Convert.FromBase64String(documentInfo.Content));
52 ceb95b98 Vojtěch Bartička
                    SaveDocument(documentContent, user, documentInfo.Name, requiredAnnotations);
53 24e1c89d Vojtěch Bartička
                }
54 7b2e66d3 Vojtěch Bartička
                else if (documentInfo.Format == Models.Enums.EAddDocumentFormat.ZIP)
55 24e1c89d Vojtěch Bartička
                {
56
                    var (names, contents) = UnzipDocuments(documentInfo.Content);
57
                    for (int i = 0; i < names.Count; i++)
58
                    {
59 ceb95b98 Vojtěch Bartička
                        SaveDocument(contents[i], user, names[i], requiredAnnotations);
60 24e1c89d Vojtěch Bartička
                    }
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 ceb95b98 Vojtěch Bartička
        private void SaveDocument(string content, User userAdded, string documentName, int requiredAnnotations)
95 24e1c89d Vojtěch Bartička
        {
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 ceb95b98 Vojtěch Bartička
                RequiredAnnotations = requiredAnnotations
109 24e1c89d Vojtěch Bartička
            };
110
111
            databaseContext.DocumentContents.Add(documentContent);
112
            databaseContext.Documents.Add(document);
113 5adba4c4 Vojtěch Bartička
            databaseContext.SaveChanges();
114 24e1c89d Vojtěch Bartička
        }
115
116 42c654f6 Vojtěch Bartička
        public DocumentListResponse GetDocuments(int pageIndex, int pageSize)
117 24e1c89d Vojtěch Bartička
        {
118 42c654f6 Vojtěch Bartička
            var firstIndex = pageIndex * pageSize;
119 24e1c89d Vojtěch Bartička
            var documents = databaseContext.Documents.Select(d => d).ToList();
120
            var totalCount = documents.Count;
121 42c654f6 Vojtěch Bartička
            var pageCount = totalCount / pageSize;
122 24e1c89d Vojtěch Bartička
            if (pageCount == 0 && totalCount > 0)
123
            {
124
                pageCount = 1;
125
            }
126
127 7bbe8f15 Vojtěch Bartička
            if (firstIndex > documents.Count - 1)
128
            {
129
                throw new Exception("Page index or page size too large");
130
            }
131
132 42c654f6 Vojtěch Bartička
            if (firstIndex + pageSize > documents.Count - 1)
133 7bbe8f15 Vojtěch Bartička
            {
134 42c654f6 Vojtěch Bartička
                pageSize = documents.Count - firstIndex;
135 7bbe8f15 Vojtěch Bartička
            }
136
137 24e1c89d Vojtěch Bartička
            List<DocumentListInfo> documentInfos = new List<DocumentListInfo>();
138 42c654f6 Vojtěch Bartička
            foreach (var document in documents.GetRange(firstIndex, pageSize))
139 24e1c89d Vojtěch Bartička
            {
140 5a08541d Vojtěch Bartička
                var annotatingUsers = databaseContext.Annotations.Where(a => a.Document == document).Select(a => a.User).ToList();
141 3cee56d3 Vojtěch Bartička
                List<DocumentUserInfo> annotatingUsersDto = new();
142
               
143
                // Include annotation state
144
                foreach (var annotatingUser in annotatingUsers)
145
                {
146
                    var annotation = databaseContext.Annotations
147
                        .Include(a => a.Document)
148
                        .Single(a => a.Document == document && a.User == annotatingUser);
149
                    var dui = mapper.Map<DocumentUserInfo>(annotatingUser);
150
                    dui.State = annotation.State;
151
                    annotatingUsersDto.Add(dui);
152
                }
153 5a08541d Vojtěch Bartička
154
                DocumentListInfo dai = mapper.Map<DocumentListInfo>(document);
155
                dai.AnnotatingUsers = annotatingUsersDto;
156 7bbe8f15 Vojtěch Bartička
                documentInfos.Add(dai);
157 24e1c89d Vojtěch Bartička
            }
158
159
            return new DocumentListResponse()
160
            {
161
                PageCount = pageCount,
162 42c654f6 Vojtěch Bartička
                PageIndex = pageIndex,
163 24e1c89d Vojtěch Bartička
                TotalCount = totalCount,
164
                Documents = documentInfos
165
            };
166
        }
167
168 5adba4c4 Vojtěch Bartička
        public void SetRequiredAnnotationsForDocuments(SetRequiredAnnotationsRequest request)
169
        {
170
            var documents = databaseContext.Documents.Where(d => request.DocumentIds.Contains(d.Id));
171
            foreach (var doc in documents)
172
            {
173
                doc.RequiredAnnotations = request.RequiredAnnotations;
174
            }
175
            databaseContext.SaveChanges();
176
        }
177 0a6d22b7 Vojtěch Bartička
178
        public void SetRequiredAnnotationsGlobal(int requiredAnnotations)
179
        {
180 ceb95b98 Vojtěch Bartička
            var requiredAnnotationsItem = databaseContext.ConfigurationItems.Single(ci => ci.Key == Constants.Constants.RequiredAnnotationsKey);
181
            requiredAnnotationsItem.Value = requiredAnnotations.ToString();
182
            databaseContext.SaveChanges();
183 0a6d22b7 Vojtěch Bartička
        }
184
185 ceb95b98 Vojtěch Bartička
        public int GetRequiredAnnotationsGlobal()
186
        {
187
            var requiredAnnotationsItem = databaseContext.ConfigurationItems.Single(ci => ci.Key == Constants.Constants.RequiredAnnotationsKey);
188
            return int.Parse(requiredAnnotationsItem.Value);
189
        }
190 24e1c89d Vojtěch Bartička
    }
191
}