From bb6d6b7845761229ace9683d1068301f1aaae65e Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Mon, 9 Jan 2023 01:05:40 -0600 Subject: [PATCH] Started implementing services --- LANCommander/Controllers/GamesController.cs | 11 +++- LANCommander/Program.cs | 8 +++ LANCommander/Services/ArchiveService.cs | 10 ++- LANCommander/Services/BaseDatabaseService.cs | 69 ++++++++++++++++++++ LANCommander/Services/CategoryService.cs | 12 ++++ LANCommander/Services/GameService.cs | 12 ++++ LANCommander/Services/GenreService.cs | 12 ++++ LANCommander/Services/KeyService.cs | 32 +++++++++ LANCommander/Services/TagService.cs | 12 ++++ 9 files changed, 175 insertions(+), 3 deletions(-) create mode 100644 LANCommander/Services/BaseDatabaseService.cs create mode 100644 LANCommander/Services/CategoryService.cs create mode 100644 LANCommander/Services/GameService.cs create mode 100644 LANCommander/Services/GenreService.cs create mode 100644 LANCommander/Services/KeyService.cs create mode 100644 LANCommander/Services/TagService.cs diff --git a/LANCommander/Controllers/GamesController.cs b/LANCommander/Controllers/GamesController.cs index b05430b..5b772ec 100644 --- a/LANCommander/Controllers/GamesController.cs +++ b/LANCommander/Controllers/GamesController.cs @@ -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 diff --git a/LANCommander/Program.cs b/LANCommander/Program.cs index 0284fde..b844409 100644 --- a/LANCommander/Program.cs +++ b/LANCommander/Program.cs @@ -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(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); + var app = builder.Build(); // Configure the HTTP request pipeline. diff --git a/LANCommander/Services/ArchiveService.cs b/LANCommander/Services/ArchiveService.cs index cf4a2e5..db17da6 100644 --- a/LANCommander/Services/ArchiveService.cs +++ b/LANCommander/Services/ArchiveService.cs @@ -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 { + public ArchiveService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) + { + } + public static GameManifest ReadManifest(string objectKey) { var upload = Path.Combine("Upload", objectKey); diff --git a/LANCommander/Services/BaseDatabaseService.cs b/LANCommander/Services/BaseDatabaseService.cs new file mode 100644 index 0000000..e28e4e8 --- /dev/null +++ b/LANCommander/Services/BaseDatabaseService.cs @@ -0,0 +1,69 @@ +using LANCommander.Data; +using LANCommander.Data.Models; +using System.Linq.Expressions; + +namespace LANCommander.Services +{ + public class BaseDatabaseService 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 Get() + { + return Get(x => true).ToList(); + } + + public async Task Get(Guid id) + { + using (var repo = new Repository(Context, HttpContext)) + { + return await repo.Find(id); + } + } + + public IQueryable Get(Expression> predicate) + { + using (var repo = new Repository(Context, HttpContext)) + { + return repo.Get(predicate); + } + } + + public async Task Add(T entity) + { + using (var repo = new Repository(Context, HttpContext)) + { + entity = await repo.Add(entity); + await repo.SaveChanges(); + + return entity; + } + } + + public async Task Update(T entity) + { + using (var repo = new Repository(Context, HttpContext)) + { + entity = repo.Update(entity); + await repo.SaveChanges(); + + return entity; + } + } + + public async Task Delete(T entity) + { + using (var repo = new Repository(Context, HttpContext)) + { + repo.Delete(entity); + await repo.SaveChanges(); + } + } + } +} diff --git a/LANCommander/Services/CategoryService.cs b/LANCommander/Services/CategoryService.cs new file mode 100644 index 0000000..b649be5 --- /dev/null +++ b/LANCommander/Services/CategoryService.cs @@ -0,0 +1,12 @@ +using LANCommander.Data; +using LANCommander.Data.Models; + +namespace LANCommander.Services +{ + public class CategoryService : BaseDatabaseService + { + public CategoryService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) + { + } + } +} diff --git a/LANCommander/Services/GameService.cs b/LANCommander/Services/GameService.cs new file mode 100644 index 0000000..49b2bfb --- /dev/null +++ b/LANCommander/Services/GameService.cs @@ -0,0 +1,12 @@ +using LANCommander.Data; +using LANCommander.Data.Models; + +namespace LANCommander.Services +{ + public class GameService : BaseDatabaseService + { + public GameService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) + { + } + } +} diff --git a/LANCommander/Services/GenreService.cs b/LANCommander/Services/GenreService.cs new file mode 100644 index 0000000..daf7ada --- /dev/null +++ b/LANCommander/Services/GenreService.cs @@ -0,0 +1,12 @@ +using LANCommander.Data; +using LANCommander.Data.Models; + +namespace LANCommander.Services +{ + public class GenreService : BaseDatabaseService + { + public GenreService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) + { + } + } +} diff --git a/LANCommander/Services/KeyService.cs b/LANCommander/Services/KeyService.cs new file mode 100644 index 0000000..0fcd661 --- /dev/null +++ b/LANCommander/Services/KeyService.cs @@ -0,0 +1,32 @@ +using LANCommander.Data; +using LANCommander.Data.Models; + +namespace LANCommander.Services +{ + public class KeyService : BaseDatabaseService + { + public KeyService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) + { + } + + public async Task Allocate(Key key, User user) + { + key.ClaimedByUser = user; + key.AllocationMethod = KeyAllocationMethod.UserAccount; + + key = await Update(key); + + return key; + } + + public async Task Allocate(Key key, string macAddress) + { + key.ClaimedByMacAddress = macAddress; + key.AllocationMethod = KeyAllocationMethod.MacAddress; + + key = await Update(key); + + return key; + } + } +} diff --git a/LANCommander/Services/TagService.cs b/LANCommander/Services/TagService.cs new file mode 100644 index 0000000..38dd9a7 --- /dev/null +++ b/LANCommander/Services/TagService.cs @@ -0,0 +1,12 @@ +using LANCommander.Data; +using LANCommander.Data.Models; + +namespace LANCommander.Services +{ + public class TagService : BaseDatabaseService + { + public TagService(DatabaseContext dbContext, IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor) + { + } + } +}