124 lines
6.0 KiB
C#
124 lines
6.0 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.Reflection.Metadata;
|
|
using System.Text.Json;
|
|
using TIAM.Database.DataLayers;
|
|
using TIAM.Database.DataLayers.Admins;
|
|
using TIAM.Database.DataLayers.TransferDestinations;
|
|
using TIAM.Database.DataLayers.Users;
|
|
using TIAM.Database.DbContexts;
|
|
using TIAM.Entities.TransferDestinations;
|
|
using TIAM.Entities.Users;
|
|
using TIAMWebApp.Shared.Application.Models;
|
|
using TIAMWebApp.Shared.Application.Models.PageModels;
|
|
|
|
namespace TIAMWebApp.Server.Controllers
|
|
{
|
|
[ApiController]
|
|
[Route("api/[controller]")]
|
|
public class TransferDataAPIController : ControllerBase
|
|
{
|
|
//private static readonly TransferDestination[] Names = new TransferDestination[]
|
|
//{
|
|
// /*"Castle of Buda", "Hungarian National Museum", "Parliament of Hungary", "Heroes square", "Gellert Hill", "Margaret Island"*/
|
|
// new() { DestinationId = 1, DestinationName = "Airport", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f },
|
|
// new() { DestinationId = 2, DestinationName = "Castle of Buda", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f },
|
|
// new() { DestinationId = 3, DestinationName = "Hungarian National Museum", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f },
|
|
// new() { DestinationId = 4, DestinationName = "Parliament of Hungary", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f },
|
|
// new() { DestinationId = 5, DestinationName = "Heroes square", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f },
|
|
// new() { DestinationId = 6, DestinationName = "Gellert Hill", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f },
|
|
// new() { DestinationId = 6, DestinationName = "Margaret Island", DestinationDescription = "International airport of Budapest", DestinationLatitude = 42.234444f, DestinationLongitude = 39.100010f }
|
|
|
|
//};
|
|
|
|
private readonly TransferDestinationDal _transferDestinationDal;
|
|
private readonly AdminDal _adminDal;
|
|
private readonly ILogger<TransferDataAPIController> _logger;
|
|
|
|
public TransferDataAPIController(ILogger<TransferDataAPIController> logger, TransferDestinationDal transferDestinationDal, AdminDal adminDal)
|
|
{
|
|
_logger = logger;
|
|
_transferDestinationDal = transferDestinationDal;
|
|
_adminDal = adminDal;
|
|
}
|
|
|
|
[AllowAnonymous]
|
|
[HttpGet]
|
|
[Route("GetTransferDestinations")]
|
|
public async Task<IEnumerable<TransferDestination>> GetTransferDestinations()
|
|
{
|
|
return await _transferDestinationDal.Context.TransferDestinations.ToListAsync();
|
|
}
|
|
|
|
[AllowAnonymous]
|
|
[HttpGet]
|
|
[Route("GetTransferDestinationByCoordinates")]
|
|
public async Task<TransferDestination?> GetTransferDestinationByCoordinates(double latitude, double longitude)
|
|
{
|
|
return await _transferDestinationDal.Context.TransferDestinations.FirstOrDefaultAsync(x => x.Latitude == latitude && x.Longitude == longitude);
|
|
}
|
|
|
|
[AllowAnonymous]
|
|
[HttpGet]
|
|
[Route("GetTransferDestinationByAddress")]
|
|
public async Task<TransferDestination?> GetTransferDestinationByAddress(string address)
|
|
{
|
|
return await _transferDestinationDal.Context.TransferDestinations.FirstOrDefaultAsync(x => x.Address == address);
|
|
}
|
|
|
|
[AllowAnonymous]
|
|
[HttpPost]
|
|
[Route("CreateTransferDestination")]
|
|
public async Task<IActionResult> CreateTransferDestination([FromBody] JsonElement SerializedTransferDestinationModel)
|
|
{
|
|
Console.WriteLine("CreateTransferDestination called!");
|
|
if (string.IsNullOrEmpty(SerializedTransferDestinationModel.GetRawText()))
|
|
{
|
|
return BadRequest("SerializedLoginModel is required");
|
|
}
|
|
else
|
|
{
|
|
TransferDestination? transferDestination = JObject.Parse(SerializedTransferDestinationModel.GetRawText()).ToObject<TransferDestination>();
|
|
|
|
|
|
if (transferDestination != null)
|
|
{
|
|
var Id = Guid.NewGuid();
|
|
string? Name = transferDestination.Name;
|
|
string? Description = transferDestination.Description;
|
|
double? Latitude = transferDestination.Latitude;
|
|
double? Longitude = transferDestination.Longitude;
|
|
string? Address = transferDestination.Address;
|
|
|
|
if (Id == Guid.Empty || Latitude == null || Longitude == null)
|
|
{
|
|
return BadRequest("Invalid request");
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine($"TransferDestination to be created: {Id}");
|
|
Console.WriteLine($"TransferDestination to be created: {Latitude}");
|
|
Console.WriteLine($"TransferDestination to be created: {Longitude}");
|
|
Console.WriteLine($"TransferDestination to be created: {Address}");
|
|
|
|
//await _transferDestinationDal.Context.TransferDestinations.AddAsync(transferDestination);
|
|
await _transferDestinationDal.CreateTransferDestinationAsync(transferDestination);
|
|
return Ok("yes");
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
return BadRequest("Invalid request");
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|
|
} |