// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : UploadReportController.cs // Author(s) : Natalia Portillo // // Component : Aaru Server. // // --[ Description ] ---------------------------------------------------------- // // Handles report uploads. // // --[ License ] -------------------------------------------------------------- // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2024 Natalia Portillo // ****************************************************************************/ using System.IO; using System.Net; using Aaru.CommonTypes.Metadata; using Aaru.Dto; using Aaru.Helpers; using Aaru.Server.Old.Database.Models; using Newtonsoft.Json; using DbContext = Aaru.Server.Old.Database.DbContext; namespace Aaru.Server.Old.Controllers; public sealed class UpdateController : Controller { readonly DbContext _ctx; public UpdateController(DbContext ctx) => _ctx = ctx; /// Receives a report from Aaru.Core, verifies it's in the correct format and stores it on the server /// HTTP response [Route("api/update")] [HttpGet] public ActionResult Update(long timestamp) { var sync = new SyncDto(); DateTime lastSync = DateHandlers.UnixToDateTime(timestamp); sync.UsbVendors = new List(); foreach(UsbVendor vendor in _ctx.UsbVendors.Where(v => v.ModifiedWhen > lastSync)) { sync.UsbVendors.Add(new UsbVendorDto { VendorId = vendor.VendorId, Vendor = vendor.Vendor }); } sync.UsbProducts = new List(); foreach(UsbProduct product in _ctx.UsbProducts.Include(p => p.Vendor).Where(p => p.ModifiedWhen > lastSync)) { sync.UsbProducts.Add(new UsbProductDto { Id = product.Id, Product = product.Product, ProductId = product.ProductId, VendorId = product.Vendor.VendorId }); } sync.Offsets = new List(); foreach(CompactDiscOffset offset in _ctx.CdOffsets.Where(o => o.ModifiedWhen > lastSync)) sync.Offsets.Add(new CdOffsetDto(offset, offset.Id)); sync.Devices = new List(); foreach(Device device in _ctx.Devices.Where(d => d.ModifiedWhen > lastSync).ToList()) { sync.Devices.Add(new DeviceDto(JsonConvert .DeserializeObject(JsonConvert.SerializeObject(device, Formatting.None, new JsonSerializerSettings { ReferenceLoopHandling = ReferenceLoopHandling.Ignore })), device.Id, device.OptimalMultipleSectorsRead, device.CanReadGdRomUsingSwapDisc)); } sync.NesHeaders = new List(); foreach(NesHeaderInfo header in _ctx.NesHeaders.Where(v => v.ModifiedWhen > lastSync)) { sync.NesHeaders.Add(new NesHeaderDto { Id = header.Id, BatteryPresent = header.BatteryPresent, ConsoleType = header.ConsoleType, DefaultExpansionDevice = header.DefaultExpansionDevice, ExtendedConsoleType = header.ExtendedConsoleType, FourScreenMode = header.FourScreenMode, Mapper = header.Mapper, NametableMirroring = header.NametableMirroring, Sha256 = header.Sha256, Submapper = header.Submapper, TimingMode = header.TimingMode, VsHardwareType = header.VsHardwareType, VsPpuType = header.VsPpuType }); } var js = JsonSerializer.Create(); var sw = new StringWriter(); js.Serialize(sw, sync); return new ContentResult { StatusCode = (int)HttpStatusCode.OK, Content = sw.ToString(), ContentType = "application/json" }; } }