118 lines
4.1 KiB
C#
118 lines
4.1 KiB
C#
using k8s.Models;
|
|
using MagMan.Core;
|
|
using MagMan.Core.DTO;
|
|
using MagMan.Data.Admin.DbModels;
|
|
using MagMan.Data.Admin.Services;
|
|
using MagMan.Data.Tenant.DbModels;
|
|
using MagMan.Data.Tenant.Services;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Newtonsoft.Json;
|
|
using NLog;
|
|
|
|
namespace MagMan.UI.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class ProjectsController : ControllerBase
|
|
{
|
|
/// <summary>
|
|
/// Classe per logging
|
|
/// </summary>
|
|
private static NLog.Logger Log = LogManager.GetCurrentClassLogger();
|
|
private MTAdminService MTAdmService { get; set; } = null!;
|
|
private static JsonSerializerSettings? JSSettings;
|
|
private TenantService TService { get; set; } = null!;
|
|
public ProjectsController(MTAdminService MTDataService, TenantService TDataService)
|
|
{
|
|
MTAdmService = MTDataService;
|
|
TService = TDataService;
|
|
// json serializer... FIX errore loop circolare https://www.ryadel.com/en/jsonserializationexception-self-referencing-loop-detected-error-fix-entity-framework-asp-net-core/
|
|
JSSettings = new JsonSerializerSettings()
|
|
{
|
|
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
|
|
};
|
|
Log.Info("Avviata classe ProjectsController");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Controllo status Alive
|
|
/// GET: api/Machines/alive
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("alive")]
|
|
public string alive()
|
|
{
|
|
//Log.Debug("Chiamata alive");
|
|
return $"OK";
|
|
}
|
|
|
|
// GET api/Machines/5
|
|
[HttpGet]
|
|
public async Task<List<MachineModel>> Get()
|
|
{
|
|
// se non ho chaive --> vuoto!
|
|
List<MachineModel> ListRecords = new List<MachineModel>();
|
|
await Task.Delay(100);
|
|
return ListRecords;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Elenco Macchine dato RestToken
|
|
/// </summary>
|
|
/// <param name="id">Rest Token cliente</param>
|
|
/// <returns></returns>
|
|
// GET api/Machines/2cba60c7-7be4-40b1-aa0d-52e7c71fc1a7
|
|
[HttpGet("{id}")]
|
|
public async Task<List<MachineModel>> Get(string id, int KeyNum)
|
|
{
|
|
var ListRecords = await MTAdmService.MachineGetByToken(id);
|
|
return ListRecords;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Processa una chiamata POST per l'invio di un oggetto di aggiornamento progetto
|
|
/// PUT: api/Inventory/upsert/00000000-0000-0000-0000-000000000000
|
|
/// </summary>
|
|
/// <param name="id">token comunicazione</param>
|
|
/// <returns></returns>
|
|
[HttpPost("upsert/{id}")]
|
|
public async Task<string> upsert(string id, [FromBody] ProjectDTO projectData)
|
|
{
|
|
string answ = "ND";
|
|
bool fatto = false;
|
|
// verifico ci sia valore
|
|
if (!string.IsNullOrEmpty(id) && projectData != null)
|
|
{
|
|
// in primis recupero codice chiave da token...
|
|
int nKey = await MTAdmService.MainKeyByToken(id);
|
|
if (nKey > 0)
|
|
{
|
|
#if false
|
|
// creo oggetti materiale da lista ricevuta
|
|
List<RawItemModel> matList = item2Consume.ItemList.Select(jpl => TService.ItemFromDto(jpl, true)).ToList();
|
|
|
|
foreach (var item in matList)
|
|
{
|
|
try
|
|
{
|
|
await TService.ItemUpdate(nKey, item);
|
|
fatto = true;
|
|
}
|
|
catch (Exception exc)
|
|
{
|
|
Log.Error($"InventoryController.upsert | Errore in fase salvataggio ItemDto{Environment.NewLine}{exc}");
|
|
fatto = false;
|
|
}
|
|
}
|
|
#endif
|
|
// resetto cache redis
|
|
await MTAdmService.FlushRedisCache();
|
|
}
|
|
}
|
|
answ = fatto ? "OK" : "NO";
|
|
return answ;
|
|
}
|
|
}
|
|
}
|