Files
marechai/Marechai/Services/NewsService.cs

140 lines
5.9 KiB
C#
Raw Normal View History

2020-05-24 02:12:37 +01:00
/******************************************************************************
2020-05-21 17:23:46 +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
*******************************************************************************/
using System.Collections.Generic;
using System.Linq;
2020-05-24 17:39:37 +01:00
using System.Threading.Tasks;
2020-05-21 17:23:46 +01:00
using Marechai.Database;
using Marechai.Database.Models;
using Marechai.ViewModels;
2020-05-24 17:39:37 +01:00
using Microsoft.EntityFrameworkCore;
2020-05-21 18:52:40 +01:00
using Microsoft.Extensions.Localization;
2020-05-21 17:23:46 +01:00
namespace Marechai.Services
{
public class NewsService
{
2020-05-21 18:52:40 +01:00
readonly MarechaiContext _context;
readonly IStringLocalizer<NewsService> _l;
2020-05-21 17:23:46 +01:00
2020-05-21 18:52:40 +01:00
public NewsService(MarechaiContext context, IStringLocalizer<NewsService> localizer)
{
_context = context;
_l = localizer;
}
2020-05-21 17:23:46 +01:00
2020-05-24 17:39:37 +01:00
public async Task<List<NewsViewModel>> GetAsync() => await _context.News.OrderByDescending(n => n.Date).
Select(n => new NewsViewModel
{
2020-08-05 21:00:35 +01:00
Id = n.Id,
Timestamp = n.Date,
Type = n.Type,
AffectedId = n.AddedId
2020-05-24 17:39:37 +01:00
}).ToListAsync();
2020-05-21 17:23:46 +01:00
public List<NewsViewModel> GetNews()
{
List<NewsViewModel> news = new List<NewsViewModel>();
foreach(News @new in _context.News.OrderByDescending(t => t.Date).Take(10).ToList())
{
Machine machine = _context.Machines.Find(@new.AddedId);
if(machine is null)
continue;
switch(@new.Type)
{
case NewsType.NewComputerInDb:
2020-05-22 03:35:50 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["New computer in database"], @new.Date, "machine",
2020-05-21 17:23:46 +01:00
$"{machine.Company.Name} {machine.Name}"));
break;
case NewsType.NewConsoleInDb:
2020-05-22 03:35:50 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["New console in database"], @new.Date, "machine",
2020-05-21 17:23:46 +01:00
$"{machine.Company.Name} {machine.Name}"));
break;
case NewsType.NewComputerInCollection:
2020-05-22 03:35:50 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["New computer in collection"], @new.Date, "machine",
2020-05-21 17:23:46 +01:00
$"{machine.Company.Name} {machine.Name}"));
break;
case NewsType.NewConsoleInCollection:
2020-05-22 03:35:50 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["New console in collection"], @new.Date, "machine",
2020-05-21 17:23:46 +01:00
$"{machine.Company.Name} {machine.Name}"));
break;
case NewsType.UpdatedComputerInDb:
2020-05-21 18:52:40 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["Updated computer in database"], @new.Date,
2020-05-22 03:35:50 +01:00
"machine", $"{machine.Company.Name} {machine.Name}"));
2020-05-21 17:23:46 +01:00
break;
case NewsType.UpdatedConsoleInDb:
2020-05-21 18:52:40 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["Updated console in database"], @new.Date,
2020-05-22 03:35:50 +01:00
"machine", $"{machine.Company.Name} {machine.Name}"));
2020-05-21 17:23:46 +01:00
break;
case NewsType.UpdatedComputerInCollection:
2020-05-21 18:52:40 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["Updated computer in collection"], @new.Date,
2020-05-22 03:35:50 +01:00
"machine", $"{machine.Company.Name} {machine.Name}"));
2020-05-21 17:23:46 +01:00
break;
case NewsType.UpdatedConsoleInCollection:
2020-05-21 18:52:40 +01:00
news.Add(new NewsViewModel(@new.AddedId, _l["Updated console in collection"], @new.Date,
2020-05-22 03:35:50 +01:00
"machine", $"{machine.Company.Name} {machine.Name}"));
2020-05-21 17:23:46 +01:00
break;
case NewsType.NewMoneyDonation:
// TODO
break;
default: continue;
}
}
return news;
}
2020-05-24 20:36:56 +01:00
public async Task DeleteAsync(int id, string userId)
2020-05-24 20:36:56 +01:00
{
News item = await _context.News.FindAsync(id);
if(item is null)
return;
_context.News.Remove(item);
await _context.SaveChangesWithUserAsync(userId);
2020-05-24 20:36:56 +01:00
}
2020-05-21 17:23:46 +01:00
}
}