From 3fb601d14354c867e1ead94b027c99c4a2fc15b5 Mon Sep 17 00:00:00 2001 From: vman Date: Wed, 16 Nov 2022 14:07:28 -0500 Subject: Add project files. --- VNLib.Plugins.Extensions.Data/ProtectedDbStore.cs | 46 +++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 VNLib.Plugins.Extensions.Data/ProtectedDbStore.cs (limited to 'VNLib.Plugins.Extensions.Data/ProtectedDbStore.cs') diff --git a/VNLib.Plugins.Extensions.Data/ProtectedDbStore.cs b/VNLib.Plugins.Extensions.Data/ProtectedDbStore.cs new file mode 100644 index 0000000..00f0bf2 --- /dev/null +++ b/VNLib.Plugins.Extensions.Data/ProtectedDbStore.cs @@ -0,0 +1,46 @@ +using System; +using System.Linq; + +using VNLib.Plugins.Extensions.Data.Abstractions; + +namespace VNLib.Plugins.Extensions.Data +{ +#nullable enable + /// + /// A data store that provides unique identities and protections based on an entity that has an owner + /// + public abstract class ProtectedDbStore : DbStore where TEntity : class, IDbModel, IUserEntity + { + /// + protected override IQueryable GetCollectionQueryBuilder(TransactionalDbContext context, params string[] constraints) + { + string userId = constraints[0]; + //Query items for the user and its id + return from item in context.Set() + where item.UserId == userId + orderby item.Created descending + select item; + } + + /// + /// Gets a single item contrained by a given user-id and item id + /// + /// + /// + /// + protected override IQueryable GetSingleQueryBuilder(TransactionalDbContext context, params string[] constraints) + { + string key = constraints[0]; + string userId = constraints[1]; + //Query items for the user and its id + return from item in context.Set() + where item.Id == key && item.UserId == userId + select item; + } + /// + protected override IQueryable GetSingleQueryBuilder(TransactionalDbContext context, TEntity record) + { + return this.GetSingleQueryBuilder(context, record.Id, record.UserId); + } + } +} -- cgit