Example #1
0
        public static void UpdateMeal(List <RecipeViewModel> mealRecipes, Meal updatedMeal, MealViewModel originalMealView)
        {
            var originalMeal = originalMealView.GetMeal();
            var database     = new SQLiteDataService();

            database.Initialize();
            database.UpdateMeal(updatedMeal);
            database.DeleteRecipesByMeal(originalMeal.Id);
            mealRecipes.Select(recipe => new RecipeByMeal
            {
                RecipeId    = recipe.GetRecipe().Id,
                MealId      = originalMeal.Id,
                CreatedDate = DateTime.Now,
                CreatedBy   = currentUser.Username
            }).ToList().ForEach(rbm =>
            {
                database.AddRecipeByMeal(rbm);
            });
            database.Close();
            var allUserMealsList = AllUsersMeals.ToList();

            AllUsersMeals.Clear();
            var index = allUserMealsList.IndexOf(originalMealView);

            allUserMealsList.RemoveAt(index);
            allUserMealsList.Insert(index, new MealViewModel(updatedMeal));
            allUserMealsList.ForEach(mVM => AllUsersMeals.Add(mVM));
        }
Example #2
0
        public static void DeleteMeal(MealViewModel mealView)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            database.DeleteMeal(mealView.GetMeal());
            database.Close();
            AllUsersMeals.Remove(mealView);
        }
Example #3
0
        public static List <string> GetListOfIngredientsForMeals(int[] mealIds)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var listOfIngredients = database.GetIngredientsByMealIds(mealIds);

            database.Close();
            return(listOfIngredients);
        }
Example #4
0
        public static List <Recipe> GetMealsRecipes(List <Meal> listOfMeals)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var recipesByMealsList = listOfMeals.SelectMany(meal => database.GetRecipesByMeal(meal.Id)).ToList();

            database.Close();
            return(recipesByMealsList);
        }
Example #5
0
        public static List <RecipeViewModel> GetMealRecipes(int mealId)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var recipeByMealList = database.GetRecipesByMeal(mealId).Select(recipe => new RecipeViewModel(recipe)).ToList();

            database.Close();
            return(recipeByMealList);
        }
Example #6
0
        public static List <IngredientByRecipe> GetIngredientsInRecipe(int recipeId)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var ingredientsByRecipeList = database.GetIngredientsByRecipe(recipeId);

            database.Close();
            return(ingredientsByRecipeList);
        }
Example #7
0
        public static List <MealViewModel> GetAllCurrentUserMeals()
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var mealViewModels = database.GetAllCurrentUserMeals(currentUser.Id).Select(meal => new MealViewModel(meal)).ToList();

            database.Close();
            return(mealViewModels);
        }
Example #8
0
        public static List <IngredientViewModel> GetAllIngredientsFromDB()
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var allIngredients = database.GetAllIngredients().Select(ingredient => new IngredientViewModel(ingredient)).ToList();

            database.Close();
            return(allIngredients);
        }
Example #9
0
        public static void DeleteRecipes(List <RecipeViewModel> recipesToDelete)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            recipesToDelete.ForEach(recipeView =>
            {
                AllUsersRecipes.Remove(recipeView);
                database.DeleteRecipe(recipeView.GetRecipe());
            });
            database.Close();
        }
Example #10
0
        public static void CreateNewIngredient(string title, string measureType)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var newIngredient = new Ingredient {
                Title = title, MeasureType = measureType, CreatedBy = currentUser.Username, CreatedDate = DateTime.Now
            };

            database.AddIngredient(newIngredient);
            database.Close();
            AllIngredients.Add(new IngredientViewModel(newIngredient));
        }
Example #11
0
        public static void CreateNewRecipe(List <IngredientByRecipe> ingredientByRecipeList, Recipe newRecipe)
        {
            recipeId++;
            var database = new SQLiteDataService();

            database.Initialize();
            newRecipe.Id = recipeId;
            database.AddRecipe(newRecipe);
            ingredientByRecipeList.ForEach(ibr =>
            {
                ibr.RecipeId = newRecipe.Id;
                database.AddIngredientByRecipe(ibr);
            });
            database.Close();
            AllUsersRecipes.Add(new RecipeViewModel(newRecipe));
        }
Example #12
0
        public static List <RecipeViewModel> GetAllCurrentUserRecipesFromDB()
        {
            var database = new SQLiteDataService();

            database.Initialize();
            var recipeViewModels = database.GetAllCurrentUserRecipes(currentUser.Id)
                                   .Select(recipe =>
            {
                if (recipe.Id > recipeId)
                {
                    recipeId = recipe.Id;
                }
                return(new RecipeViewModel(recipe));
            }).ToList();

            database.Close();
            return(recipeViewModels);
        }
Example #13
0
        public static bool LoginCurrentUser(string username, string password)
        {
            bool signedIn = false;

            try
            {
                var database = new SQLiteDataService();
                database.Initialize();
                List <User> signedInUser = database.GetAllUsers().Where(user => user.Username == username).ToList();
                database.Close();

                if (username == "" || password == "")
                {
                    throw new ArgumentNullException();
                }

                if (signedInUser.Count < 1)
                {
                    throw new LoginException("The User Name you entered does not exist.");
                }

                if (signedInUser.First().Password != password)
                {
                    throw new LoginException("The password is incorrect");
                }

                currentUser = signedInUser.First();
                signedIn    = true;
            }
            catch (ArgumentNullException)
            {
                throw new LoginException("You must have both User Id and a Password");
            }
            catch (LoginException error)
            {
                throw error;
            }
            catch (Exception error)
            {
                MessageBox.Show(error.Message, "Instructions", MessageBoxButtons.OK);
            }
            return(signedIn);
        }
Example #14
0
        public static void CreateNewMeal(Meal meal, List <RecipeViewModel> listOfRecipes)
        {
            var database = new SQLiteDataService();

            database.Initialize();
            database.AddMeal(meal);
            listOfRecipes.Select(recipe => new RecipeByMeal
            {
                RecipeId    = recipe.GetRecipe().Id,
                MealId      = meal.Id,
                CreatedDate = DateTime.Now,
                CreatedBy   = currentUser.Username
            }).ToList().ForEach(rbm =>
            {
                database.AddRecipeByMeal(rbm);
            });
            database.Close();
            AllUsersMeals.Add(new MealViewModel(meal));
        }
Example #15
0
        public static void UpdateRecipe(List <IngredientByRecipe> ingredientByRecipeList, Recipe recipe, RecipeViewModel recipeView)
        {
            var originalRecipe = recipeView.GetRecipe();
            var database       = new SQLiteDataService();

            database.Initialize();
            database.UpdateRecipe(recipe);
            database.DeleteIngredientsByRecipe(originalRecipe.Id);
            ingredientByRecipeList.ForEach(ibr =>
            {
                ibr.RecipeId = originalRecipe.Id;
                database.AddIngredientByRecipe(ibr);
            });
            database.Close();
            var allUsersRecipesList = AllUsersRecipes.ToList();

            AllUsersRecipes.Clear();
            var index = allUsersRecipesList.IndexOf(recipeView);

            allUsersRecipesList.RemoveAt(index);
            allUsersRecipesList.Insert(index, new RecipeViewModel(recipe));
            allUsersRecipesList.ForEach(rVM => AllUsersRecipes.Add(rVM));
        }