public async Task <IActionResult> Create(PlanServiceModel model) { model.UserId = GetCurrentUser().Id; PlanResponseModel result = await _planService.CreatePlanAsync(model); return(Json(result)); }
public async Task <PlanResponseModel> ImportDataFromSheetAsync(ImportGoogleSheetModel model) { string userId = ((User)_httpContextAccessor.HttpContext.Items["User"])?.Id; if (string.IsNullOrEmpty(userId)) { throw new UnauthorizedAccessException("User not found"); } PlanServiceModel planServiceModel = new PlanServiceModel { IsTemplate = model.IsTemplate, UserId = userId, Name = model.PlanName, }; var sheet = await _sheetsService.Spreadsheets.Values.Get(model.SheetId, model.Range).ExecuteAsync(); var areas = new Dictionary <string, List <AreaTopicServiceModel> >(); string previousKey = string.Empty; foreach (var sheetValue in sheet.Values.ToList()) { int sheetValueCount = sheetValue.Count - 1; if (model.AreaColumn > sheetValueCount || model.TopicColumn > sheetValueCount) { throw new DomainServicesException("Invalid column."); } string area = sheetValue[model.AreaColumn].ToString(); if (!string.IsNullOrEmpty(area)) { previousKey = area; } string key = string.IsNullOrWhiteSpace(area) ? previousKey : area; if (areas.ContainsKey(key)) { areas[key].Add(new AreaTopicServiceModel { Name = sheetValue[model.TopicColumn].ToString(), Description = model.DescriptionColumn.HasValue && model.DescriptionColumn < sheetValueCount ? sheetValue[model.DescriptionColumn.Value].ToString() : null, StartDate = model.StartDateColumn.HasValue && model.StartDateColumn < sheetValueCount ? sheetValue[model.StartDateColumn.Value].ToString() : null, EndDate = model.EndDateColumn.HasValue && model.EndDateColumn < sheetValueCount ? sheetValue[model.EndDateColumn.Value].ToString() : null, Source = model.SourceColumn.HasValue && model.SourceColumn < sheetValueCount ? sheetValue[model.SourceColumn.Value].ToString() : null, UserId = userId }); } else { areas.Add(key, new List <AreaTopicServiceModel> { new AreaTopicServiceModel { Name = sheetValue[model.TopicColumn].ToString(), Description = model.DescriptionColumn.HasValue && model.DescriptionColumn < sheetValueCount ? sheetValue[model.DescriptionColumn.Value].ToString() : null, StartDate = model.StartDateColumn.HasValue && model.StartDateColumn < sheetValueCount ? sheetValue[model.StartDateColumn.Value].ToString() : null, EndDate = model.EndDateColumn.HasValue && model.EndDateColumn < sheetValueCount ? sheetValue[model.EndDateColumn.Value].ToString() : null, Source = model.SourceColumn.HasValue && model.SourceColumn < sheetValueCount ? sheetValue[model.SourceColumn.Value].ToString() : null, UserId = userId } }); } } planServiceModel.PlanAreas = areas.Select(x => new PlanAreaServiceModel { Name = x.Key, AreaTopics = x.Value.ToArray() }).ToArray(); return(await _planService.CreatePlanAsync(planServiceModel)); }