//--------------------------------------------------------------------
//     此代码由T4模板自动生成  byzhouhang 20210918
//	   生成时间 2021-12-23 13:20:59 
//     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using Microsoft.AspNetCore.Mvc;
using IRaCIS.Core.Application.Filter;
using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Application.Contracts
{
    /// 
    /// TrialSiteEquipmentSurveyService
    /// 	
    [ApiExplorerSettings(GroupName = "Trial")]
    public class TrialSiteEquipmentSurveyService : BaseService, ITrialSiteEquipmentSurveyService
    {
        private readonly IRepository _trialSiteEquipmentSurveyRepository;
        public TrialSiteEquipmentSurveyService(IRepository trialSiteEquipmentSurveyRepository)
        {
            _trialSiteEquipmentSurveyRepository = trialSiteEquipmentSurveyRepository;
        }
        [HttpGet("{trialSiteSurveyId:guid}")]
        public async Task> GetTrialSiteEquipmentSurveyList(Guid trialSiteSurveyId, string? scannerType)
        {
            var trialSiteEquipmentSurveyQueryable = _trialSiteEquipmentSurveyRepository.Where(t => t.TrialSiteSurveyId == trialSiteSurveyId)
            .WhereIf(!string.IsNullOrEmpty(scannerType), t => t.ScannerType.Contains(scannerType!))
            .ProjectTo(_mapper.ConfigurationProvider);
            return await trialSiteEquipmentSurveyQueryable.ToListAsync();
        }
         [TypeFilter(typeof(TrialResourceFilter),Arguments = new object[] { "AfterStopCannNotOpt" })]
        [HttpPost("{trialId:guid}")]
        public async Task AddOrUpdateTrialSiteEquipmentSurvey(TrialSiteEquipmentSurveyAddOrEdit addOrEditTrialSiteEquipmentSurvey)
        {
  
            if (addOrEditTrialSiteEquipmentSurvey.Id != null)
            {
                if (await _trialSiteEquipmentSurveyRepository.Where(t => t.Id == addOrEditTrialSiteEquipmentSurvey.Id).AnyAsync(t => t.TrialSiteSurvey.State==TrialSiteSurveyEnum.PMCreatedAndLock))
                {
                    return ResponseOutput.NotOk("已锁定,不允许操作");
                }
            }
            var entity = await _trialSiteEquipmentSurveyRepository.InsertOrUpdateAsync(addOrEditTrialSiteEquipmentSurvey, true);
            return ResponseOutput.Ok(entity.Id.ToString());
        }
         [TypeFilter(typeof(TrialResourceFilter),Arguments = new object[] { "AfterStopCannNotOpt" })]
        [HttpDelete("{trialSiteEquipmentSurveyId:guid}/{trialId:guid}")]
        public async Task DeleteTrialSiteEquipmentSurvey(Guid trialSiteEquipmentSurveyId)
        {
            if (await _trialSiteEquipmentSurveyRepository.Where(t => t.Id == trialSiteEquipmentSurveyId).AnyAsync(t => t.TrialSiteSurvey.State==TrialSiteSurveyEnum.PMCreatedAndLock))
            {
                return ResponseOutput.NotOk("已锁定,不允许操作");
            }
            var success = await _trialSiteEquipmentSurveyRepository.BatchDeleteNoTrackingAsync(t => t.Id == trialSiteEquipmentSurveyId);
            return ResponseOutput.Result(success);
        }
    }
}