2023-08-11 15:51:20 +01:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2023-08-08 21:03:41 +01:00
|
|
|
using OliverBooth.Data;
|
|
|
|
using OliverBooth.Data.Web;
|
|
|
|
using OliverBooth.Markdown;
|
2023-08-11 16:35:06 +01:00
|
|
|
using OliverBooth.Markdown.Template;
|
2023-08-08 21:03:41 +01:00
|
|
|
using SmartFormat;
|
|
|
|
using SmartFormat.Extensions;
|
|
|
|
|
|
|
|
namespace OliverBooth.Services;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Represents a service that renders MediaWiki-style templates.
|
|
|
|
/// </summary>
|
|
|
|
public sealed class TemplateService
|
|
|
|
{
|
|
|
|
private readonly IDbContextFactory<WebContext> _webContextFactory;
|
|
|
|
private readonly SmartFormatter _formatter;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="TemplateService" /> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="webContextFactory">The <see cref="WebContext" /> factory.</param>
|
|
|
|
public TemplateService(IDbContextFactory<WebContext> webContextFactory)
|
|
|
|
{
|
|
|
|
_formatter = Smart.CreateDefaultSmartFormat();
|
|
|
|
_formatter.AddExtensions(new DefaultSource());
|
|
|
|
_formatter.AddExtensions(new ReflectionSource());
|
|
|
|
_formatter.AddExtensions(new DateFormatter());
|
|
|
|
|
|
|
|
_webContextFactory = webContextFactory;
|
|
|
|
Current = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static TemplateService Current { get; private set; } = null!;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Renders the specified template with the specified arguments.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="templateInline">The template to render.</param>
|
|
|
|
/// <returns>The rendered template.</returns>
|
|
|
|
/// <exception cref="ArgumentNullException">
|
|
|
|
/// <paramref name="templateInline" /> is <see langword="null" />.
|
|
|
|
/// </exception>
|
|
|
|
public string RenderTemplate(TemplateInline templateInline)
|
|
|
|
{
|
|
|
|
if (templateInline is null) throw new ArgumentNullException(nameof(templateInline));
|
|
|
|
using WebContext webContext = _webContextFactory.CreateDbContext();
|
|
|
|
ArticleTemplate? template = webContext.ArticleTemplates.Find(templateInline.Name);
|
|
|
|
if (template is null)
|
|
|
|
{
|
|
|
|
return $"{{{{{templateInline.Name}}}}}";
|
|
|
|
}
|
|
|
|
|
|
|
|
var formatted = new
|
|
|
|
{
|
|
|
|
templateInline.ArgumentList,
|
|
|
|
templateInline.ArgumentString,
|
|
|
|
templateInline.Params,
|
|
|
|
};
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return Markdig.Markdown.ToHtml(_formatter.Format(template.FormatString, formatted));
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
return $"{{{{{templateInline.Name}|{templateInline.ArgumentString}}}}}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|