2020-06-06 18:29:20 +03:00
|
|
|
|
using Chatbot.Api.Application.Queries;
|
|
|
|
|
using MediatR;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Chatbot.Api.Controllers
|
|
|
|
|
{
|
|
|
|
|
[Authorize]
|
|
|
|
|
[ApiController]
|
|
|
|
|
[Route("system")]
|
|
|
|
|
public class SystemController : ControllerBase
|
|
|
|
|
{
|
|
|
|
|
private readonly IMediator _mediator;
|
|
|
|
|
|
|
|
|
|
public SystemController(IMediator mediator)
|
|
|
|
|
{
|
|
|
|
|
_mediator = mediator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[AllowAnonymous]
|
|
|
|
|
[HttpGet("ping")]
|
|
|
|
|
public IActionResult Ping()
|
|
|
|
|
{
|
|
|
|
|
return Ok("Chatbot api ping success.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet("bots")]
|
2020-06-06 19:21:40 +03:00
|
|
|
|
public async Task<IActionResult> GetBots([FromRoute] GetBots.Query query)
|
|
|
|
|
{
|
|
|
|
|
var result = await _mediator.Send(query);
|
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet("initialize-session")]
|
|
|
|
|
public async Task<IActionResult> GetSession([FromRoute] GetSession.Query query)
|
|
|
|
|
{
|
|
|
|
|
var result = await _mediator.Send(query);
|
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet("initialize-chat")]
|
|
|
|
|
public async Task<IActionResult> GetChat([FromRoute] GetChat.Query query)
|
2020-06-06 18:29:20 +03:00
|
|
|
|
{
|
|
|
|
|
var result = await _mediator.Send(query);
|
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|