Oliver Booth
e8bc50bbdf
I'd ideally like to keep the blog. subdomain the same, and while there are a few ways to achieve this it is much simpler to just dedicate a separate application for the subdomain. This change also adjusts the webhost builder extensions to default to ports 443/80, and each app now explicitly sets the port it needs.
59 lines
1.6 KiB
C#
59 lines
1.6 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using OliverBooth.Blog.Data;
|
|
using OliverBooth.Blog.Services;
|
|
|
|
namespace OliverBooth.Blog.Pages;
|
|
|
|
/// <summary>
|
|
/// Represents the page model for the <c>Article</c> page.
|
|
/// </summary>
|
|
[Area("blog")]
|
|
public class Article : PageModel
|
|
{
|
|
private readonly IBlogPostService _blogPostService;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Article" /> class.
|
|
/// </summary>
|
|
/// <param name="blogPostService">The <see cref="IBlogPostService" />.</param>
|
|
public Article(IBlogPostService blogPostService)
|
|
{
|
|
_blogPostService = blogPostService;
|
|
}
|
|
|
|
/*
|
|
/// <summary>
|
|
/// Gets a value indicating whether the post is a legacy WordPress post.
|
|
/// </summary>
|
|
/// <value>
|
|
/// <see langword="true" /> if the post is a legacy WordPress post; otherwise, <see langword="false" />.
|
|
/// </value>
|
|
public bool IsWordPressLegacyPost => Post.WordPressId.HasValue;
|
|
*/
|
|
|
|
/// <summary>
|
|
/// Gets the requested blog post.
|
|
/// </summary>
|
|
/// <value>The requested blog post.</value>
|
|
public IBlogPost Post { get; private set; } = null!;
|
|
|
|
public IActionResult OnGet(int year, int month, int day, string slug)
|
|
{
|
|
var date = new DateOnly(year, month, day);
|
|
if (!_blogPostService.TryGetPost(date, slug, out IBlogPost? post))
|
|
{
|
|
Response.StatusCode = 404;
|
|
return NotFound();
|
|
}
|
|
|
|
if (post.IsRedirect)
|
|
{
|
|
return Redirect(post.RedirectUrl!.ToString());
|
|
}
|
|
|
|
Post = post;
|
|
return Page();
|
|
}
|
|
}
|