diff --git a/ShoppingAssistantApi.Domain/Entities/Product.cs b/ShoppingAssistantApi.Domain/Entities/Product.cs new file mode 100644 index 0000000..c581196 --- /dev/null +++ b/ShoppingAssistantApi.Domain/Entities/Product.cs @@ -0,0 +1,19 @@ +using MongoDB.Bson; +using ShoppingAssistantApi.Domain.Common; + +namespace ShoppingAssistantApi.Domain.Entities; + +public class Product : EntityBase +{ + public ObjectId WishlistId { get; set; } + + public string? Url { get; set; } + + public string? Name { get; set; } + + public string? Description { get; set; } + + public double Rating { get; set; } + + public string[]? ImagesUrls { get; set; } +} \ No newline at end of file diff --git a/ShoppingAssistantApi.Persistance/PersistanceExtentions/DbInitialaizer.cs b/ShoppingAssistantApi.Persistance/PersistanceExtentions/DbInitialaizer.cs index a63c8f7..651e374 100644 --- a/ShoppingAssistantApi.Persistance/PersistanceExtentions/DbInitialaizer.cs +++ b/ShoppingAssistantApi.Persistance/PersistanceExtentions/DbInitialaizer.cs @@ -23,9 +23,13 @@ public class DbInitialaizer private readonly ITokensService _tokensService; + private readonly IWishlistsService _wishlistsService; + private readonly IMongoCollection _userCollection; private readonly IMongoCollection _wishlistCollection; + + private readonly IMongoCollection _productCollection; public IEnumerable Roles { get; set; } @@ -35,8 +39,10 @@ public class DbInitialaizer _rolesService = serviceProvider.GetService(); _userManager = serviceProvider.GetService(); _tokensService = serviceProvider.GetService(); + _wishlistsService = serviceProvider.GetService(); _wishlistCollection = serviceProvider.GetService().Db.GetCollection("Wishlists"); _userCollection = serviceProvider.GetService().Db.GetCollection("Users"); + _productCollection = serviceProvider.GetService().Db.GetCollection("Product"); } public async Task InitialaizeDb(CancellationToken cancellationToken) @@ -213,4 +219,43 @@ public class DbInitialaizer await _wishlistCollection.InsertManyAsync(wishlists); } + + public async Task AddProducts(CancellationToken cancellationToken) + { + var wishList1 = await _wishlistCollection.FindAsync(w => w.Name == "Gaming PC"); + var wishList2 = await _wishlistCollection.FindAsync(w => w.Name == "Generic Wishlist Name"); + + var products = new Product[] + { + new Product() + { + Id = ObjectId.Parse("ab6c2c2d9edf39abcd1ef9ab"), + Url = "url", + Name = "Thermaltake Glacier", + Description = "Something", + Rating = 4.1, + ImagesUrls = new string[] + { + "url1", + "url2" + } + }, + + new Product() + { + Id = ObjectId.Parse("ab6c2c2d9edf39abcd1ef9ab"), + Url = "url", + Name = "Mac", + Description = "very very cool laptop", + Rating = 4.9, + ImagesUrls = new string[] + { + "url1", + "url2" + } + } + + }; + + } } diff --git a/ShoppingAssistantApi.Persistance/Repositories/ProductsRepository.cs b/ShoppingAssistantApi.Persistance/Repositories/ProductsRepository.cs new file mode 100644 index 0000000..5de13b9 --- /dev/null +++ b/ShoppingAssistantApi.Persistance/Repositories/ProductsRepository.cs @@ -0,0 +1,9 @@ +using ShoppingAssistantApi.Domain.Entities; +using ShoppingAssistantApi.Persistance.Database; + +namespace ShoppingAssistantApi.Persistance.Repositories; + +public class ProductsRepository : BaseRepository +{ + public ProductsRepository(MongoDbContext db) : base(db, "Products") { } +} \ No newline at end of file