2020-06-01 02:12:50 +01:00
|
|
|
/******************************************************************************
|
|
|
|
|
// MARECHAI: Master repository of computing history artifacts information
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program 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 General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// Copyright © 2003-2020 Natalia Portillo
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
2020-05-28 22:38:52 +01:00
|
|
|
using System;
|
2020-05-27 22:17:28 +01:00
|
|
|
using System.Collections.Generic;
|
2020-05-28 13:35:15 +01:00
|
|
|
using System.IO;
|
2020-05-27 22:17:28 +01:00
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Marechai.Database.Models;
|
2020-05-28 13:35:15 +01:00
|
|
|
using Microsoft.AspNetCore.Hosting;
|
2020-05-27 22:17:28 +01:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace Marechai.Services
|
|
|
|
|
{
|
|
|
|
|
public class CompanyLogosService
|
|
|
|
|
{
|
2020-05-28 13:35:15 +01:00
|
|
|
readonly MarechaiContext _context;
|
|
|
|
|
readonly IWebHostEnvironment _host;
|
|
|
|
|
readonly string _webRootPath;
|
2020-05-27 22:17:28 +01:00
|
|
|
|
2020-05-28 13:35:15 +01:00
|
|
|
public CompanyLogosService(MarechaiContext context, IWebHostEnvironment host)
|
2020-05-27 22:17:28 +01:00
|
|
|
{
|
2020-05-28 13:35:15 +01:00
|
|
|
_context = context;
|
|
|
|
|
_host = host;
|
|
|
|
|
_webRootPath = host.WebRootPath;
|
2020-05-27 22:17:28 +01:00
|
|
|
}
|
|
|
|
|
|
2020-05-28 13:35:15 +01:00
|
|
|
public async Task<List<CompanyLogo>> GetByCompany(int companyId) =>
|
|
|
|
|
await _context.CompanyLogos.Where(l => l.CompanyId == companyId).OrderBy(l => l.Year).ToListAsync();
|
|
|
|
|
|
2020-06-10 00:27:39 +01:00
|
|
|
public async Task DeleteAsync(int id, string userId)
|
2020-05-28 13:35:15 +01:00
|
|
|
{
|
|
|
|
|
CompanyLogo logo = await _context.CompanyLogos.Where(l => l.Id == id).FirstOrDefaultAsync();
|
|
|
|
|
|
|
|
|
|
if(logo is null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
_context.CompanyLogos.Remove(logo);
|
2020-06-10 00:27:39 +01:00
|
|
|
await _context.SaveChangesWithUserAsync(userId);
|
2020-05-28 13:35:15 +01:00
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos", logo.Guid + ".svg")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos", logo.Guid + ".svg"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/webp/1x", logo.Guid + ".webp")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/webp/1x", logo.Guid + ".webp"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/webp/2x", logo.Guid + ".webp")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/webp/2x", logo.Guid + ".webp"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/webp/3x", logo.Guid + ".webp")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/webp/3x", logo.Guid + ".webp"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/png/1x", logo.Guid + ".png")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/png/1x", logo.Guid + ".png"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/png/2x", logo.Guid + ".png")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/png/2x", logo.Guid + ".png"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/png/3x", logo.Guid + ".png")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/png/3x", logo.Guid + ".png"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/thumbs/webp/1x", logo.Guid + ".webp")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/thumbs/webp/1x", logo.Guid + ".webp"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/thumbs/webp/2x", logo.Guid + ".webp")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/thumbs/webp/2x", logo.Guid + ".webp"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/thumbs/webp/3x", logo.Guid + ".webp")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/thumbs/webp/3x", logo.Guid + ".webp"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/thumbs/png/1x", logo.Guid + ".png")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/thumbs/png/1x", logo.Guid + ".png"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/thumbs/png/2x", logo.Guid + ".png")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/thumbs/png/2x", logo.Guid + ".png"));
|
|
|
|
|
|
|
|
|
|
if(File.Exists(Path.Combine(_webRootPath, "assets/logos/thumbs/png/3x", logo.Guid + ".png")))
|
|
|
|
|
File.Delete(Path.Combine(_webRootPath, "assets/logos/thumbs/png/3x", logo.Guid + ".png"));
|
|
|
|
|
}
|
2020-05-28 16:02:51 +01:00
|
|
|
|
2020-06-10 00:27:39 +01:00
|
|
|
public async Task ChangeYearAsync(int id, int? year, string userId)
|
2020-05-28 16:02:51 +01:00
|
|
|
{
|
|
|
|
|
CompanyLogo logo = await _context.CompanyLogos.Where(l => l.Id == id).FirstOrDefaultAsync();
|
|
|
|
|
|
|
|
|
|
if(logo is null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
logo.Year = year;
|
2020-06-10 00:27:39 +01:00
|
|
|
await _context.SaveChangesWithUserAsync(userId);
|
2020-05-28 16:02:51 +01:00
|
|
|
}
|
2020-05-28 22:38:52 +01:00
|
|
|
|
2020-06-10 00:27:39 +01:00
|
|
|
public async Task<int> CreateAsync(int companyId, Guid guid, int? year, string userId)
|
2020-05-28 22:38:52 +01:00
|
|
|
{
|
|
|
|
|
var logo = new CompanyLogo
|
|
|
|
|
{
|
2020-08-05 21:00:35 +01:00
|
|
|
Guid = guid,
|
|
|
|
|
Year = year,
|
|
|
|
|
CompanyId = companyId
|
2020-05-28 22:38:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await _context.CompanyLogos.AddAsync(logo);
|
2020-06-10 00:27:39 +01:00
|
|
|
await _context.SaveChangesWithUserAsync(userId);
|
2020-05-28 22:38:52 +01:00
|
|
|
|
|
|
|
|
return logo.Id;
|
|
|
|
|
}
|
2020-05-27 22:17:28 +01:00
|
|
|
}
|
|
|
|
|
}
|