47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace zero.Backoffice.Endpoints.Links;
|
|
|
|
public class LinksController : ZeroBackofficeController
|
|
{
|
|
readonly IZeroStore Store;
|
|
readonly ILinks Links;
|
|
|
|
public LinksController(IZeroStore store, ILinks links)
|
|
{
|
|
Store = store;
|
|
Links = links;
|
|
}
|
|
|
|
[HttpPost("convert")]
|
|
//[ZeroAuthorize(CountryPermissions.Create)]
|
|
public async Task<ActionResult<List<LinkPreview>>> ConvertToLinks([FromBody] List<Link> links)
|
|
{
|
|
IZeroDocumentSession session = Store.Session();
|
|
List<LinkPreview> previews = new();
|
|
|
|
foreach (Link link in links)
|
|
{
|
|
ILinkProvider provider = Links.GetProvider(link);
|
|
LinkPreview model = null;
|
|
|
|
if (provider != null)
|
|
{
|
|
model = await provider.Preview(session, link);
|
|
}
|
|
|
|
string id = link.Values.GetValueOrDefault("id");
|
|
|
|
previews.Add(model ?? new LinkPreview()
|
|
{
|
|
HasError = true,
|
|
Icon = "fth-alert-circle color-red",
|
|
Id = id.Or("tmp_" + IdGenerator.Create()),
|
|
Name = "@errors.preview.notfound",
|
|
Text = "@errors.preview.notfound_text"
|
|
});
|
|
}
|
|
|
|
return previews;
|
|
}
|
|
} |