-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetDocuments.cs
62 lines (50 loc) · 1.48 KB
/
GetDocuments.cs
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.Search.Models;
using Newtonsoft.Json.Linq;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace AzureSearchDocuments
{
[Produces("application/json")]
[Route("api/[controller]")]
[ApiController]
public class GetDocuments : ControllerBase
{
private SearchClientHelper _searchHelper = new SearchClientHelper();
// GET: api/<controller>
[HttpGet]
public JObject Get(string q, String facetName, int currentPage)
{
if (String.IsNullOrEmpty(facetName))
facetName = "reference";
if (String.IsNullOrEmpty(q))
q = "*";
JObject response = _searchHelper.GetFacets(q, facetName, 10);
return response;
}
// GET api/<controller>/5
[HttpGet("{id}")]
public string Get(int id)
{
return "value";
}
// POST api/<controller>
[HttpPost]
public void Post([FromBody]string value)
{
}
// PUT api/<controller>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/<controller>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
}
}
}