Started implementing services

This commit is contained in:
Pat Hartl 2023-01-09 01:05:40 -06:00
parent dcce836420
commit bb6d6b7845
9 changed files with 175 additions and 3 deletions

View file

@ -11,6 +11,7 @@ using LANCommander.Data.Models;
using Microsoft.AspNetCore.Authorization;
using LANCommander.Services;
using System.Drawing;
using LANCommander.Models;
namespace LANCommander.Controllers
{
@ -18,10 +19,18 @@ namespace LANCommander.Controllers
public class GamesController : Controller
{
private readonly DatabaseContext Context;
private readonly GameService GameService;
private readonly CategoryService CategoryService;
private readonly TagService TagService;
private readonly GenreService GenreService;
public GamesController(DatabaseContext context)
public GamesController(DatabaseContext context, GameService gameService, CategoryService categoryService, TagService tagService, GenreService genreService)
{
Context = context;
GameService = gameService;
CategoryService = categoryService;
TagService = tagService;
GenreService = genreService;
}
// GET: Games

View file

@ -1,5 +1,6 @@
using LANCommander.Data;
using LANCommander.Data.Models;
using LANCommander.Services;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
@ -57,6 +58,13 @@ builder.Services.AddControllersWithViews().AddJsonOptions(x =>
x.JsonSerializerOptions.ReferenceHandler = System.Text.Json.Serialization.ReferenceHandler.IgnoreCycles;
});
builder.Services.AddScoped<ArchiveService>();
builder.Services.AddScoped<CategoryService>();
builder.Services.AddScoped<GameService>();
builder.Services.AddScoped<GenreService>();
builder.Services.AddScoped<KeyService>();
builder.Services.AddScoped<TagService>();
var app = builder.Build();
// Configure the HTTP request pipeline.

View file

@ -1,12 +1,18 @@
using LANCommander.Models;
using LANCommander.Data;
using LANCommander.Data.Models;
using LANCommander.Models;
using System.IO.Compression;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
namespace LANCommander.Services
{
public static class ArchiveService
public class ArchiveService : BaseDatabaseService<Archive>
{
public ArchiveService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
public static GameManifest ReadManifest(string objectKey)
{
var upload = Path.Combine("Upload", objectKey);

View file

@ -0,0 +1,69 @@
using LANCommander.Data;
using LANCommander.Data.Models;
using System.Linq.Expressions;
namespace LANCommander.Services
{
public class BaseDatabaseService<T> where T : BaseModel
{
public DatabaseContext Context { get; set; }
public HttpContext HttpContext { get; set; }
public BaseDatabaseService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) {
Context = dbContext;
HttpContext = httpContextAccessor.HttpContext;
}
public ICollection<T> Get()
{
return Get(x => true).ToList();
}
public async Task<T> Get(Guid id)
{
using (var repo = new Repository<T>(Context, HttpContext))
{
return await repo.Find(id);
}
}
public IQueryable<T> Get(Expression<Func<T, bool>> predicate)
{
using (var repo = new Repository<T>(Context, HttpContext))
{
return repo.Get(predicate);
}
}
public async Task<T> Add(T entity)
{
using (var repo = new Repository<T>(Context, HttpContext))
{
entity = await repo.Add(entity);
await repo.SaveChanges();
return entity;
}
}
public async Task<T> Update(T entity)
{
using (var repo = new Repository<T>(Context, HttpContext))
{
entity = repo.Update(entity);
await repo.SaveChanges();
return entity;
}
}
public async Task Delete(T entity)
{
using (var repo = new Repository<T>(Context, HttpContext))
{
repo.Delete(entity);
await repo.SaveChanges();
}
}
}
}

View file

@ -0,0 +1,12 @@
using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Services
{
public class CategoryService : BaseDatabaseService<Category>
{
public CategoryService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}

View file

@ -0,0 +1,12 @@
using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Services
{
public class GameService : BaseDatabaseService<Game>
{
public GameService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}

View file

@ -0,0 +1,12 @@
using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Services
{
public class GenreService : BaseDatabaseService<Genre>
{
public GenreService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}

View file

@ -0,0 +1,32 @@
using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Services
{
public class KeyService : BaseDatabaseService<Key>
{
public KeyService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
public async Task<Key> Allocate(Key key, User user)
{
key.ClaimedByUser = user;
key.AllocationMethod = KeyAllocationMethod.UserAccount;
key = await Update(key);
return key;
}
public async Task<Key> Allocate(Key key, string macAddress)
{
key.ClaimedByMacAddress = macAddress;
key.AllocationMethod = KeyAllocationMethod.MacAddress;
key = await Update(key);
return key;
}
}
}

View file

@ -0,0 +1,12 @@
using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Services
{
public class TagService : BaseDatabaseService<Tag>
{
public TagService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
}
}
}