using AutoMapper;
using Ropin.Inspection.Common.Accessor.Interface;
using Ropin.Inspection.Model.Entities;
using Ropin.Inspection.Model.ViewModel;
using Ropin.Inspection.Repository.Interface;
using Ropin.Inspection.Service.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Service
{
    public class TsysPostService : ITsysPostService
    {
        private readonly ITsysPostRepository _repository;
        private readonly ITsysRoleRepository _tsysRoleRepository;
        private readonly ITsysUserRoleRepository _tsysUserRoleRepository;
        private readonly IMapper _mapper;
        private readonly IClaimsAccessor _claims;
        public TsysPostService(IClaimsAccessor claims, ITsysPostRepository repository, ITsysRoleRepository tsysRoleRepository, ITsysUserRoleRepository tsysUserRoleRepository, IMapper mapper)
        {
            _repository = repository;
            _tsysRoleRepository = tsysRoleRepository;
            _tsysUserRoleRepository = tsysUserRoleRepository;
            _mapper = mapper;
            _claims = claims;
        }

        public async Task CreateOneAsync(TsysPostViewModel viewModel)
        {
            var content = _mapper.Map<TSYS_Post>(viewModel);
            content.G_ID = Guid.NewGuid();
            content.G_CreateBy = _claims.ApiUserId;
            content.D_CreateOn = DateTime.Now;
            content.C_Status = "1";
            _repository.Create(content);
            var result = await _repository.SaveAsync();
            if (!result)
            {
                throw new Exception("创建失败");
            }
        }

        public async Task DeleteAsync(Guid id)
        {
            var content = await _repository.GetByIdAsync(id);
            if (content == null)
            {
                throw new Exception("没有此数据");
            }
            content.C_Status = "0";
            content.G_LastUpdatedBy = _claims.ApiUserId;
            content.D_LastUpdatedOn = DateTime.Now;
            _repository.Update(content);
            var result = await _repository.SaveAsync();
            if (!result)
            {
                throw new Exception("删除失败");
            }
        }

        public async Task<IEnumerable<TsysPostViewModel>> GetAllAsync()
        {
            var pagedList = await _repository.GetAllAsync();
            var dtoList = _mapper.Map<IEnumerable<TsysPostViewModel>>(pagedList);
            return dtoList;
        }

        public async Task<TsysPostViewModel> GetByIdAsync(Guid id)
        {
            var content = await _repository.GetByIdAsync(id);
            var contentDto = _mapper.Map<TsysPostViewModel>(content);
            return contentDto;
        }

        public Task<bool> IsExistAsync(Guid id)
        {
            throw new NotImplementedException();
        }

        public Task<int> UpdateOneAsync(TsysPostViewModel viewModel, params string[] fields)
        {
            throw new NotImplementedException();
        }

        public async Task UpdateAsync(Guid id, TsysPostUpdateViewModel updateModel)
        {
            var outlet = await _repository.GetByIdAsync(id);
            if (outlet == null)
            {
                throw new Exception("没有数据");
            }
            outlet.G_LastUpdatedBy = _claims.ApiUserId;
            outlet.D_LastUpdatedOn = DateTime.Now;
            _mapper.Map(updateModel, outlet, typeof(TsysPostUpdateViewModel), typeof(TSYS_Post));
            _repository.Update(outlet);
            var result = await _repository.SaveAsync();
            if (!result)
            {
                throw new Exception("更新失败");
            }
        }
    }
}