040be2feaa
Convert constructors into primary constructors Simplified logic with use of ??, ??= and method groups Cleaned up redundant conditional access qualifiers
55 lines
1.9 KiB
C#
55 lines
1.9 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),
|
|
];
|
|
}
|
|
|
|
public override ValueTask<ItemEventRouterResponse> HandleItemEvent(
|
|
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}"
|
|
);
|
|
}
|
|
}
|
|
}
|