Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Routers/ItemEvents/NoteItemEventRouter.cs
T

42 lines
1.7 KiB
C#

using SPTarkov.DI.Annotations;
using SPTarkov.Server.Core.Callbacks;
using SPTarkov.Server.Core.DI;
using SPTarkov.Server.Core.Models.Common;
using SPTarkov.Server.Core.Models.Eft.Common;
using SPTarkov.Server.Core.Models.Eft.Common.Request;
using SPTarkov.Server.Core.Models.Eft.ItemEvent;
using SPTarkov.Server.Core.Models.Eft.Notes;
using SPTarkov.Server.Core.Models.Enums;
namespace SPTarkov.Server.Core.Routers.ItemEvents;
[Injectable]
public class NoteItemEventRouter(NoteCallbacks noteCallbacks) : ItemEventRouterDefinition
{
protected override List<HandledRoute> GetHandledRoutes()
{
return [new(ItemEventActions.ADD_NOTE, false), new(ItemEventActions.EDIT_NOTE, false), new(ItemEventActions.DELETE_NOTE, false)];
}
protected override ValueTask<ItemEventRouterResponse> HandleItemEventInternal(
string url,
PmcData pmcData,
BaseInteractionRequestData body,
MongoId sessionID,
ItemEventRouterResponse output
)
{
switch (url)
{
case ItemEventActions.ADD_NOTE:
return new ValueTask<ItemEventRouterResponse>(noteCallbacks.AddNote(pmcData, body as NoteActionRequest, sessionID));
case ItemEventActions.EDIT_NOTE:
return new ValueTask<ItemEventRouterResponse>(noteCallbacks.EditNote(pmcData, body as NoteActionRequest, sessionID));
case ItemEventActions.DELETE_NOTE:
return new ValueTask<ItemEventRouterResponse>(noteCallbacks.DeleteNote(pmcData, body as NoteActionRequest, sessionID));
default:
throw new Exception($"NoteItemEventRouter being used when it cant handle route {url}");
}
}
}