Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

FilterLevelValueController.cs

using Microsoft.AspNetCore.Mvc;
using Nop.Core;
using Nop.Core.Domain.FilterLevels;
using Nop.Services.Catalog;
using Nop.Services.ExportImport;
using Nop.Services.FilterLevels;
using Nop.Services.Localization;
using Nop.Services.Logging;
using Nop.Services.Messages;
using Nop.Services.Security;
using Nop.Web.Areas.Admin.Factories;
using Nop.Web.Areas.Admin.Infrastructure.Mapper.Extensions;
using Nop.Web.Areas.Admin.Models.Catalog;
using Nop.Web.Framework.Controllers;
using Nop.Web.Framework.Mvc;
using Nop.Web.Framework.Mvc.Filters;

namespace Nop.Web.Areas.Admin.Controllers;

public partial class FilterLevelValueController : BaseAdminController
{
    #region Fields

    protected readonly ICustomerActivityService _customerActivityService;
    protected readonly IExportManager _exportManager;
    protected readonly IFilterLevelValueModelFactory _filterLevelValueModelFactory;
    protected readonly IFilterLevelValueService _filterLevelValueService;
    protected readonly IImportManager _importManager;
    protected readonly ILocalizationService _localizationService;
    protected readonly INotificationService _notificationService;
    protected readonly IProductService _productService;
    protected readonly IWorkContext _workContext;

    #endregion

    #region Ctor

    public FilterLevelValueController(ICustomerActivityService customerActivityService,
        IExportManager exportManager,
        IFilterLevelValueModelFactory filterLevelValueModelFactory,
        IFilterLevelValueService filterLevelValueService,
        IImportManager importManager,
        ILocalizationService localizationService,
        INotificationService notificationService,
        IProductService productService,
        IWorkContext workContext)
    {
        _customerActivityService = customerActivityService;
        _exportManager = exportManager;
        _filterLevelValueModelFactory = filterLevelValueModelFactory;
        _filterLevelValueService = filterLevelValueService;
        _importManager = importManager;
        _localizationService = localizationService;
        _notificationService = notificationService;
        _productService = productService;
        _workContext = workContext;
    }

    #endregion

    #region Methods

    #region List

    public virtual IActionResult Index()
    {
        return RedirectToAction("List");
    }

    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_VIEW)]
    public virtual async Task List()
    {
        //prepare model
        var model = await _filterLevelValueModelFactory.PrepareFilterLevelValueSearchModelAsync(new FilterLevelValueSearchModel());

        return View(model);
    }

    [HttpPost]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_VIEW)]
    public virtual async Task List(FilterLevelValueSearchModel searchModel)
    {
        //prepare model
        var model = await _filterLevelValueModelFactory.PrepareFilterLevelValueListModelAsync(searchModel);

        return Json(model);
    }

    #endregion

    #region Create / Edit / Delete

    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual IActionResult Create()
    {
        //prepare model
        var model = _filterLevelValueModelFactory.PrepareFilterLevelValueModel(new FilterLevelValueModel(), null);

        return View(model);
    }

    [HttpPost, ParameterBasedOnFormName("save-continue", "continueEditing")]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task Create(FilterLevelValueModel model, bool continueEditing)
    {
        if (ModelState.IsValid)
        {
            var filterLevelValue = model.ToEntity();

            var isExistValue = (await _filterLevelValueService.GetAllFilterLevelValuesAsync(filterLevelValue.FilterLevel1Value, filterLevelValue.FilterLevel2Value, filterLevelValue.FilterLevel3Value)).Any();

            if (isExistValue)
            {
                _notificationService.ErrorNotification(await _localizationService.GetResourceAsync("Admin.Catalog.FilterLevelValues.Exist"));
                return RedirectToAction(continueEditing ? "Create" : "List");
            }

            filterLevelValue.CreatedOnUtc = DateTime.UtcNow;
            filterLevelValue.UpdatedOnUtc = DateTime.UtcNow;
            await _filterLevelValueService.InsertFilterLevelValueAsync(filterLevelValue);

            //activity log
            await _customerActivityService.InsertActivityAsync("AddNewFilterLevelValue",
                string.Format(await _localizationService.GetResourceAsync("ActivityLog.AddNewFilterLevelValue"), filterLevelValue.Id), filterLevelValue);

            _notificationService.SuccessNotification(await _localizationService.GetResourceAsync("Admin.Catalog.FilterLevelValues.Added"));

            if (!continueEditing)
                return RedirectToAction("List");

            return RedirectToAction("Edit", new { id = filterLevelValue.Id });
        }

        //prepare model
        model = _filterLevelValueModelFactory.PrepareFilterLevelValueModel(model, null);

        //if we got this far, something failed, redisplay form
        return View(model);
    }

    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_VIEW)]
    public virtual async Task Edit(int id)
    {
        //try to get a filter level value with the specified id
        var filterLevelValue = await _filterLevelValueService.GetFilterLevelValueByIdAsync(id);
        if (filterLevelValue == null)
            return RedirectToAction("List");

        //prepare model
        var model = _filterLevelValueModelFactory.PrepareFilterLevelValueModel(null, filterLevelValue);

        return View(model);
    }

    [HttpPost, ParameterBasedOnFormName("save-continue", "continueEditing")]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task Edit(FilterLevelValueModel model, bool continueEditing)
    {
        //try to get a filter level value with the specified id
        var filterLevelValue = await _filterLevelValueService.GetFilterLevelValueByIdAsync(model.Id);
        if (filterLevelValue == null)
            return RedirectToAction("List");

        if (ModelState.IsValid)
        {
            filterLevelValue = model.ToEntity(filterLevelValue);

            var isExistValue = (await _filterLevelValueService.GetAllFilterLevelValuesAsync(
                filterLevelValue.FilterLevel1Value,
                filterLevelValue.FilterLevel2Value,
                filterLevelValue.FilterLevel3Value
            )).Any(x => x.Id != model.Id);

            if (isExistValue)
            {
                _notificationService.ErrorNotification(await _localizationService.GetResourceAsync("Admin.Catalog.FilterLevelValues.Exist"));
                return RedirectToAction("Edit", new { id = filterLevelValue.Id });
            }

            filterLevelValue.UpdatedOnUtc = DateTime.UtcNow;
            await _filterLevelValueService.UpdateFilterLevelValueAsync(filterLevelValue);


            //activity log
            await _customerActivityService.InsertActivityAsync("EditFilterLevelValue",
                string.Format(await _localizationService.GetResourceAsync("ActivityLog.EditFilterLevelValue"), filterLevelValue.Id), filterLevelValue);

            _notificationService.SuccessNotification(await _localizationService.GetResourceAsync("Admin.Catalog.FilterLevelValues.Updated"));

            if (!continueEditing)
                return RedirectToAction("List");

            return RedirectToAction("Edit", new { id = filterLevelValue.Id });
        }

        //prepare model
        model = _filterLevelValueModelFactory.PrepareFilterLevelValueModel(model, filterLevelValue);

        //if we got this far, something failed, redisplay form
        return View(model);
    }

    [HttpPost]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task Delete(int id)
    {
        //try to get a filter level value with the specified id
        var filterLevelValue = await _filterLevelValueService.GetFilterLevelValueByIdAsync(id);
        if (filterLevelValue == null)
            return RedirectToAction("List");

        await _filterLevelValueService.DeleteFilterLevelValueAsync(filterLevelValue);

        //activity log
        await _customerActivityService.InsertActivityAsync("DeleteFilterLevelValue",
            string.Format(await _localizationService.GetResourceAsync("ActivityLog.DeleteFilterLevelValue"), filterLevelValue.Id), filterLevelValue);

        _notificationService.SuccessNotification(await _localizationService.GetResourceAsync("Admin.Catalog.FilterLevelValues.Deleted"));

        return RedirectToAction("List");
    }

    [HttpPost]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task DeleteSelected(ICollection selectedIds)
    {
        if (selectedIds == null || !selectedIds.Any())
            return NoContent();

        var filterLevelValues = await _filterLevelValueService.GetFilterLevelValuesByIdsAsync(selectedIds.ToArray());

        await _filterLevelValueService.DeleteFilterLevelValuesAsync(filterLevelValues);

        //activity log
        var activityLogFormat = await _localizationService.GetResourceAsync("ActivityLog.DeleteFilterLevelValue");
        await _customerActivityService.InsertActivitiesAsync("DeleteFilterLevelValue", filterLevelValues, filterLevelValue => string.Format(activityLogFormat, filterLevelValue.Id));

        return Json(new { Result = true });
    }

    #endregion

    #region Export / Import

    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_IMPORT_EXPORT)]
    public virtual async Task ExportXlsx()
    {
        try
        {
            var filterLevelValues = (await _filterLevelValueService.GetAllFilterLevelValuesAsync()).ToList();
            var bytes = await _exportManager.ExportFilterLevelValuesToXlsxAsync(filterLevelValues);

            return File(bytes, MimeTypes.TextXlsx, "FilterLevelValues.xlsx");
        }
        catch (Exception exc)
        {
            await _notificationService.ErrorNotificationAsync(exc);
            return RedirectToAction("List");
        }
    }

    [HttpPost]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_IMPORT_EXPORT)]
    public virtual async Task ImportFromXlsx(IFormFile importexcelfile)
    {
        //a vendor cannot import filter level values
        if (await _workContext.GetCurrentVendorAsync() != null)
            return AccessDeniedView();

        try
        {
            if (importexcelfile != null && importexcelfile.Length > 0)
            {
                await _importManager.ImportFilterLevelValuesFromXlsxAsync(importexcelfile.OpenReadStream());
            }
            else
            {
                _notificationService.ErrorNotification(await _localizationService.GetResourceAsync("Admin.Common.UploadFile"));
                return RedirectToAction("List");
            }

            _notificationService.SuccessNotification(await _localizationService.GetResourceAsync("Admin.Catalog.FilterLevelValues.Imported"));

            return RedirectToAction("List");
        }
        catch (Exception exc)
        {
            await _notificationService.ErrorNotificationAsync(exc);
            return RedirectToAction("List");
        }
    }

    #endregion

    #region Products

    [HttpPost]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task ProductList(FilterLevelValueProductSearchModel searchModel)
    {
        //try to get a filter level value with the specified id
        var filterLevelValue = await _filterLevelValueService.GetFilterLevelValueByIdAsync(searchModel.FilterLevelValueId)
            ?? throw new ArgumentException("No filter level value found with the specified id");

        //prepare model
        var model = await _filterLevelValueModelFactory.PrepareFilterLevelValueProductListModelAsync(searchModel, filterLevelValue);

        return Json(model);
    }

    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task ProductDelete(int id)
    {
        //try to get a filter level value product mapping with the specified id
        var filterLevelValueProduct = await _filterLevelValueService.GetFilterLevelValueProductByIdAsync(id)
            ?? throw new ArgumentException("No filter level value product mapping found with the specified id", nameof(id));

        await _filterLevelValueService.DeleteFilterLevelValueProductAsync(filterLevelValueProduct);

        return new NullJsonResult();
    }

    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task ProductAddPopup(int filterLevelValueId)
    {
        //prepare model
        var model = await _filterLevelValueModelFactory.PrepareAddProductToFilterLevelValueSearchModelAsync(new AddProductToFilterLevelValueSearchModel());

        return View(model);
    }

    [HttpPost]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task ProductAddPopupList(AddProductToFilterLevelValueSearchModel searchModel)
    {
        //prepare model
        var model = await _filterLevelValueModelFactory.PrepareAddProductToFilterLevelValueListModelAsync(searchModel);

        return Json(model);
    }

    [HttpPost]
    [FormValueRequired("save")]
    [CheckPermission(StandardPermission.Catalog.FILTER_LEVEL_VALUE_CREATE_EDIT_DELETE)]
    public virtual async Task ProductAddPopup(AddProductToFilterLevelValueModel model)
    {
        //get selected products
        var selectedProducts = await _productService.GetProductsByIdsAsync(model.SelectedProductIds.ToArray());
        if (selectedProducts.Any())
        {
            var existingProductFilterLevelValues = await _filterLevelValueService.GetFilterLevelValueProductsByFilterLevelValueIdAsync(model.FilterLevelValueId);
            foreach (var product in selectedProducts)
            {
                //whether product filter level value with such parameters already exists
                if (existingProductFilterLevelValues.FirstOrDefault(pc => pc.ProductId == product.Id && pc.FilterLevelValueId == model.FilterLevelValueId) != null)
                    continue;

                //insert the new product filter level value mapping
                await _filterLevelValueService.InsertProductFilterLevelValueAsync(new FilterLevelValueProductMapping
                {
                    FilterLevelValueId = model.FilterLevelValueId,
                    ProductId = product.Id
                });
            }
        }

        ViewBag.RefreshPage = true;

        return View(new AddProductToFilterLevelValueSearchModel());
    }

    #endregion

    #endregion
}