protected void LogAuthenticateUser(Core.Results.ActionResult act, string processId) { if (string.IsNullOrWhiteSpace(processId)) { return; } _eventPublisher.Publish(new ResourceOwnerAuthenticated(Guid.NewGuid().ToString(), processId, _payloadSerializer.GetPayload(act), 2)); }
private async Task LogConsentAccepted(Core.Results.ActionResult act, string processId) { if (string.IsNullOrWhiteSpace(processId)) { return; } _eventPublisher.Publish(new ConsentAccepted(Guid.NewGuid().ToString(), processId, _payloadSerializer.GetPayload(act), 10)); }
private async Task LogConsentAccepted(Core.Results.ActionResult act, string processId) { if (string.IsNullOrWhiteSpace(processId)) { return; } var evtAggregate = await GetLastEventAggregate(processId); if (evtAggregate == null) { return; } _eventPublisher.Publish(new ConsentAccepted(Guid.NewGuid().ToString(), processId, _payloadSerializer.GetPayload(act), evtAggregate.Order + 1)); }
private async Task LogAuthenticateUser(Core.Results.ActionResult act, string processId) { if (string.IsNullOrWhiteSpace(processId)) { return; } var evtAggregate = await GetLastEventAggregate(processId); if (evtAggregate == null) { return; } _eventPublisher.Publish(new ResourceOwnerAuthenticated(Guid.NewGuid().ToString(), processId, act, evtAggregate.Order + 1)); }