// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Register custom blocks Piranha.App.Blocks.Register <CodeBlock>(); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); App.Modules.Manager().Scripts.Add("~/assets/js/code-block.js"); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Let's not build any content types here, let // the client handle that. // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); app.UsePiranha(options => { options.UseIdentity(); }); // Middleware setup app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); endpoints.MapRazorPages(); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // register GIFs as a media type App.MediaTypes.Images.Add(".gif", "image/gif"); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); app.UseHttpsRedirection(); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } //app.UseHttpsRedirection(); app.UseStatusCodePagesWithRedirects("/cms/statusCode?code={0}"); app.UseSendGridModule(); // Initialize Piranha App.Init(api); // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); RegisterBlocks(); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Build content types var pageTypeBuilder = new Piranha.AttributeBuilder.PageTypeBuilder(api) .AddType(typeof(Models.BlogArchive)) .AddType(typeof(Models.StandardPage)); pageTypeBuilder.Build() .DeleteOrphans(); var postTypeBuilder = new Piranha.AttributeBuilder.PostTypeBuilder(api) .AddType(typeof(Models.BlogPost)); postTypeBuilder.Build() .DeleteOrphans(); var siteTypeBuilder = new Piranha.AttributeBuilder.SiteTypeBuilder(api) .AddType(typeof(Models.BlogSite)); siteTypeBuilder.Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Register middleware app.UseStaticFiles(); app.UseAuthentication(); app.UsePiranha(); app.UsePiranhaManager(); app.UseMvc(routes => { routes.MapRoute(name: "areaRoute", template: "{area:exists}/{controller}/{action}/{id?}", defaults: new { controller = "Home", action = "Index" }); routes.MapRoute( name: "default", template: "{controller=home}/{action=index}/{id?}"); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); app.Use(async(ctx, next) => { await next(); if (ctx.Response.StatusCode == 401) { ctx.Response.Redirect("/login"); } }); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); App.Permissions["App"].Add(new Piranha.Security.PermissionItem { Title = "Read Secret Pages", Name = "ReadSecretPages" }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseSwagger(); // Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.), // specifying the Swagger JSON endpoint. app.UseSwaggerUI(options => { options.SwaggerEndpoint("/mrbdemo/swagger/v1/swagger.json", "Manuscripts & Rare Books API V1"); }); // Initialize Piranha App.Init(api); App.MediaTypes.Images.Add(".svg", "image/svg+xml"); App.MediaTypes.Images.Add(".tif", "image/tiff"); // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); app.UseEndpoints(endpoints => { endpoints.MapRazorPages(); endpoints.MapHub <MRBSignalRHub>("/mrbsignalrhub"); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseSpaStaticFiles(); } // Initialize Piranha App.Init(api); // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); app.UseCors(); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); // Set up SPA app.UseSpa(spa => { spa.Options.SourcePath = "piranha-ng"; if (env.IsDevelopment()) { spa.UseAngularCliServer("start"); } }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api, IMediator mediator) { App.Init(api); App.CacheLevel = Piranha.Cache.CacheLevel.Basic; App.Blocks.Register <LoggedInBlock>(); App.Blocks.Register <LoggedOutBlock>(); new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); EditorConfig.FromFile("editorconfig.json"); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseForwardedHeaders(); app.UseExceptionHandler("/Error"); app.UseHsts(); } app.UseHttpsRedirection(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); }); mediator.Send(new SeedMembershipPlansRequest()).Wait(); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // Initialize Piranha App.Init(api); // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); options.UseSpamDetector(); // <-- 3. SpamDetector service configured }); // 4. Add hook. SpamDetector use OnValidate hook to moderate comments App.Hooks.Comments.RegisterOnValidate(c => { using var serviceScope = app.ApplicationServices.GetRequiredService <IServiceScopeFactory>().CreateScope(); var spamDetector = serviceScope.ServiceProvider.GetRequiredService <SpamDetectorService>(); // SpamDetector will call Akismet API to review the comment and then return the result var reviewResult = spamDetector.ReviewAsync(c).Result; // This updates the comment submitted with the result of the antispam review c.IsApproved = reviewResult.Approved; }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseBrowserLink(); } // Initialize Piranha App.Init(api); // Configure cache level App.CacheLevel = Piranha.Cache.CacheLevel.Basic; // Build content types new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Registering The Blocks App.Blocks.Register <HomeBlock>(); // Registering The BlockGroups App.Blocks.Register <Core>(); // Configure Tiny MCE EditorConfig.FromFile("editorconfig.json"); // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); }
/// <summary> /// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. /// </summary> /// <param name="app">The <see cref="IApplicationBuilder"/></param> /// <param name="env">The <see cref="IWebHostEnvironment"/></param> /// <param name="api">The PiranhaCms <see cref="IApi"/></param> public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IApi api) { var cultureInfo = new System.Globalization.CultureInfo("de-DE"); System.Globalization.CultureInfo.DefaultThreadCurrentCulture = System.Globalization.CultureInfo.CurrentCulture = cultureInfo; System.Globalization.CultureInfo.DefaultThreadCurrentUICulture = System.Globalization.CultureInfo.CurrentCulture = cultureInfo; if (false) { app.UseDeveloperExceptionPage(); } else { app.UseStatusCodePagesWithReExecute($"/Error/{{0}}"); app.UseExceptionHandler($"/Error/500"); // instruct the browsers to always access the site via HTTPS app.UseHsts(); } // Initialize Piranha App.Init(api); // Build all content types in this assembly new ContentTypeBuilder(api) .AddAssembly(typeof(Startup).Assembly) .Build() .DeleteOrphans(); // Register custom blocks App.Blocks.Register <PersonProfileBlock>(); /* To build specific types: * new Piranha.AttributeBuilder.PageTypeBuilder(api) * .AddType(typeof(Models.BlogArchive)) * .AddType(typeof(Models.StandardPage)) * .AddType(typeof(Models.TeaserPage)) * .Build() * .DeleteOrphans(); * new Piranha.AttributeBuilder.PostTypeBuilder(api) * .AddType(typeof(Models.BlogPost)) * .Build() * .DeleteOrphans(); * new Piranha.AttributeBuilder.SiteTypeBuilder(api) * .AddType(typeof(Models.StandardSite)) * .Build() * .DeleteOrphans(); */ // Configure Tiny MCE EditorConfig.FromFile($@"{Directory.GetCurrentDirectory()}{Path.DirectorySeparatorChar}{Program.ConfigurationFolder}{Path.DirectorySeparatorChar}editorconfig.json"); // Keep before .UsePiranha() app.UseSession(); #region *** Rewrite domains (even those without SSL certificate) to https://www.volleyballclub.de *** app.UseRewriter(new RewriteOptions() .AddRedirectToWwwPermanent() .AddRedirectToHttpsPermanent() ); #endregion // Middleware setup app.UsePiranha(options => { options.UseManager(); options.UseTinyMCE(); options.UseIdentity(); }); // For static files using a content type provider: var provider = new Microsoft.AspNetCore.StaticFiles.FileExtensionContentTypeProvider(); // Make sure .webmanifest files don't cause a 404 provider.Mappings[".webmanifest"] = "application/manifest+json"; app.UseStaticFiles(new StaticFileOptions { ContentTypeProvider = provider, OnPrepareResponse = ctx => { var headers = ctx.Context.Response.GetTypedHeaders(); headers.CacheControl = new CacheControlHeaderValue { Public = true, MaxAge = TimeSpan.FromDays(5) }; } }); }