private TemplateInfo GetTemplateInfo(ProjectBuildArgs args) { if (args.TemplateName.IsNullOrWhiteSpace()) { return(TemplateInfoProvider.GetDefault()); } else { return(TemplateInfoProvider.Get(args.TemplateName)); } }
private static void NormalizeArgs(ProjectBuildArgs args, TemplateInfo templateInfo) { if (args.TemplateName.IsNullOrEmpty()) { args.TemplateName = templateInfo.Name; } if (args.DatabaseProvider == DatabaseProvider.NotSpecified) { if (templateInfo.DefaultDatabaseProvider != DatabaseProvider.NotSpecified) { args.DatabaseProvider = templateInfo.DefaultDatabaseProvider; } } if (args.UiFramework == UiFramework.NotSpecified) { if (templateInfo.DefaultUiFramework != UiFramework.NotSpecified) { args.UiFramework = templateInfo.DefaultUiFramework; } } }
public async Task <ProjectBuildResult> BuildAsync(ProjectBuildArgs args) { var templateInfo = GetTemplateInfo(args); NormalizeArgs(args, templateInfo); var templateFile = await SourceCodeStore.GetAsync( args.TemplateName, SourceCodeTypes.Template, args.Version, args.TemplateSource ); DeveloperApiKeyResult apiKeyResult = null; #if DEBUG try { var apiKeyResultSection = _configuration.GetSection("apiKeyResult"); if (apiKeyResultSection.Exists()) { apiKeyResult = apiKeyResultSection.Get <DeveloperApiKeyResult>(); //you can use user secrets } } catch (Exception e) { Console.WriteLine(e); } if (apiKeyResult == null) { apiKeyResult = await ApiKeyService.GetApiKeyOrNullAsync(); } #else apiKeyResult = await ApiKeyService.GetApiKeyOrNullAsync(); #endif if (apiKeyResult != null) { if (apiKeyResult.ApiKey != null) { args.ExtraProperties["api-key"] = apiKeyResult.ApiKey; } else if (templateInfo.Name == AppProTemplate.TemplateName) { throw new UserFriendlyException(apiKeyResult.ErrorMessage); } } if (apiKeyResult?.LicenseCode != null) { args.ExtraProperties["license-code"] = apiKeyResult.LicenseCode; } var context = new ProjectBuildContext( templateInfo, null, templateFile, args ); TemplateProjectBuildPipelineBuilder.Build(context).Execute(); if (!templateInfo.DocumentUrl.IsNullOrEmpty()) { Logger.LogInformation("Check out the documents at " + templateInfo.DocumentUrl); } // Exclude unwanted or known options. var options = args.ExtraProperties .Where(x => !x.Key.Equals(CliConsts.Command, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.Tiered.Long, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.DatabaseProvider.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.DatabaseProvider.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.OutputFolder.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.OutputFolder.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.UiFramework.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.UiFramework.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.Mobile.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.Mobile.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.Version.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.Version.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.TemplateSource.Short, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.TemplateSource.Long, StringComparison.InvariantCultureIgnoreCase)) .Select(x => x.Key).ToList(); await CliAnalyticsCollect.CollectAsync(new CliAnalyticsCollectInputDto { Tool = Options.ToolName, Command = args.ExtraProperties.ContainsKey(CliConsts.Command) ? args.ExtraProperties[CliConsts.Command] : "", DatabaseProvider = args.DatabaseProvider.ToProviderName(), IsTiered = args.ExtraProperties.ContainsKey(NewCommand.Options.Tiered.Long), UiFramework = args.UiFramework.ToFrameworkName(), Options = JsonSerializer.Serialize(options), ProjectName = args.SolutionName.FullName, TemplateName = args.TemplateName, TemplateVersion = templateFile.Version }); return(new ProjectBuildResult(context.Result.ZipContent, args.SolutionName.ProjectName)); }
public async Task <ProjectBuildResult> BuildAsync(ProjectBuildArgs args) { var moduleInfo = await GetModuleInfoAsync(args); var templateFile = await SourceCodeStore.GetAsync( args.TemplateName, SourceCodeTypes.Module, args.Version ); var apiKeyResult = await ApiKeyService.GetApiKeyOrNullAsync(); if (apiKeyResult?.ApiKey != null) { args.ExtraProperties["api-key"] = apiKeyResult.ApiKey; } if (apiKeyResult?.LicenseCode != null) { args.ExtraProperties["license-code"] = apiKeyResult.LicenseCode; } var context = new ProjectBuildContext( null, moduleInfo, templateFile, args ); ModuleProjectBuildPipelineBuilder.Build(context).Execute(); if (!moduleInfo.DocumentUrl.IsNullOrEmpty()) { Logger.LogInformation("Check out the documents at " + moduleInfo.DocumentUrl); } // Exclude unwanted or known options. var options = args.ExtraProperties .Where(x => !x.Key.Equals(CliConsts.Command, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.OutputFolder.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.OutputFolder.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.Version.Long, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.Version.Short, StringComparison.InvariantCultureIgnoreCase)) .Where(x => !x.Key.Equals(NewCommand.Options.TemplateSource.Short, StringComparison.InvariantCultureIgnoreCase) && !x.Key.Equals(NewCommand.Options.TemplateSource.Long, StringComparison.InvariantCultureIgnoreCase)) .Select(x => x.Key).ToList(); await CliAnalyticsCollect.CollectAsync(new CliAnalyticsCollectInputDto { Tool = Options.ToolName, Command = args.ExtraProperties.ContainsKey(CliConsts.Command) ? args.ExtraProperties[CliConsts.Command] : "", DatabaseProvider = null, IsTiered = null, UiFramework = null, Options = JsonSerializer.Serialize(options), ProjectName = null, TemplateName = args.TemplateName, TemplateVersion = templateFile.Version }); return(new ProjectBuildResult(context.Result.ZipContent, args.TemplateName)); }
private async Task <ModuleInfo> GetModuleInfoAsync(ProjectBuildArgs args) { return(await ModuleInfoProvider.GetAsync(args.TemplateName)); }