forked from VahidN/DNTCommon.Web.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenSearchController.cs
More file actions
40 lines (35 loc) · 1.3 KB
/
OpenSearchController.cs
File metadata and controls
40 lines (35 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using Microsoft.AspNetCore.Mvc;
namespace DNTCommon.Web.Core.TestWebApp.Controllers
{
public class OpenSearchController : Controller
{
private readonly IHttpRequestInfoService _httpRequestInfoService;
public OpenSearchController(IHttpRequestInfoService httpRequestInfoService)
{
_httpRequestInfoService = httpRequestInfoService;
}
public IActionResult Index()
{
return View();
}
public IActionResult RenderOpenSearch()
{
return new OpenSearchResult
{
ShortName = "My Site's Name",
Description = "My Site's Contents Search",
SearchForm = _httpRequestInfoService.GetBaseUrl(),
FavIconUrl = $"{_httpRequestInfoService.GetBaseUrl()}/favicon.ico",
SearchUrlTemplate = Url.Action(
nameof(PublicSearch),
typeof(OpenSearchController).ControllerName(),
new { term = "searchTerms" },
HttpContext.Request.Scheme)
};
}
public IActionResult PublicSearch(string term)
{
return Content(term);
}
}
}