Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Notify Smoke Test / Notifier Service Tests (push) Has been cancelled
Notify Smoke Test / Notification Smoke Test (push) Has been cancelled
Notify Smoke Test / Notify Unit Tests (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Export Center CI / export-ci (push) Has been cancelled
Manifest Integrity / Validate Schema Integrity (push) Has been cancelled
Manifest Integrity / Validate Contract Documents (push) Has been cancelled
Manifest Integrity / Validate Pack Fixtures (push) Has been cancelled
Manifest Integrity / Audit SHA256SUMS Files (push) Has been cancelled
Manifest Integrity / Verify Merkle Roots (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Risk Bundle CI / risk-bundle-build (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Risk Bundle CI / risk-bundle-offline-kit (push) Has been cancelled
Risk Bundle CI / publish-checksums (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
81 lines
3.1 KiB
C#
81 lines
3.1 KiB
C#
using System.Collections.Immutable;
|
|
using Microsoft.Extensions.Logging;
|
|
using StellaOps.Notify.Models;
|
|
using StellaOps.Notifier.Worker.Storage;
|
|
|
|
namespace StellaOps.Notifier.Worker.Escalation;
|
|
|
|
/// <summary>
|
|
/// Default implementation of on-call schedule resolution.
|
|
/// </summary>
|
|
public sealed class DefaultOnCallResolver : IOnCallResolver
|
|
{
|
|
private readonly IOnCallScheduleService? _scheduleService;
|
|
private readonly TimeProvider _timeProvider;
|
|
private readonly ILogger<DefaultOnCallResolver> _logger;
|
|
|
|
public DefaultOnCallResolver(
|
|
TimeProvider timeProvider,
|
|
ILogger<DefaultOnCallResolver> logger,
|
|
IOnCallScheduleService? scheduleService = null)
|
|
{
|
|
_timeProvider = timeProvider ?? TimeProvider.System;
|
|
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
|
|
_scheduleService = scheduleService;
|
|
}
|
|
|
|
public async Task<NotifyOnCallResolution> ResolveAsync(
|
|
string tenantId,
|
|
string scheduleId,
|
|
DateTimeOffset? evaluationTime = null,
|
|
CancellationToken cancellationToken = default)
|
|
{
|
|
ArgumentException.ThrowIfNullOrWhiteSpace(tenantId);
|
|
ArgumentException.ThrowIfNullOrWhiteSpace(scheduleId);
|
|
|
|
if (_scheduleService is null)
|
|
{
|
|
_logger.LogWarning("On-call schedule repository not available");
|
|
return new NotifyOnCallResolution(scheduleId, evaluationTime ?? _timeProvider.GetUtcNow(), ImmutableArray<NotifyOnCallParticipant>.Empty);
|
|
}
|
|
|
|
var schedule = await _scheduleService.GetScheduleAsync(tenantId, scheduleId, cancellationToken).ConfigureAwait(false);
|
|
|
|
if (schedule is null)
|
|
{
|
|
_logger.LogWarning("On-call schedule {ScheduleId} not found for tenant {TenantId}", scheduleId, tenantId);
|
|
return new NotifyOnCallResolution(scheduleId, evaluationTime ?? _timeProvider.GetUtcNow(), ImmutableArray<NotifyOnCallParticipant>.Empty);
|
|
}
|
|
|
|
return ResolveAt(schedule, evaluationTime ?? _timeProvider.GetUtcNow());
|
|
}
|
|
|
|
public NotifyOnCallResolution ResolveAt(
|
|
OnCallSchedule schedule,
|
|
DateTimeOffset evaluationTime)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(schedule);
|
|
|
|
var layer = schedule.Layers
|
|
.Where(l => l.Users is { Count: > 0 })
|
|
.OrderByDescending(l => l.Priority)
|
|
.FirstOrDefault();
|
|
|
|
if (layer is null)
|
|
{
|
|
_logger.LogDebug("No active on-call layer found for schedule {ScheduleId} at {EvaluationTime}",
|
|
schedule.ScheduleId, evaluationTime);
|
|
return new NotifyOnCallResolution(schedule.ScheduleId, evaluationTime, ImmutableArray<NotifyOnCallParticipant>.Empty);
|
|
}
|
|
|
|
var user = layer.Users.First();
|
|
var participant = NotifyOnCallParticipant.Create(user.UserId, user.Name, user.Email, user.Phone);
|
|
|
|
return new NotifyOnCallResolution(
|
|
schedule.ScheduleId,
|
|
evaluationTime,
|
|
ImmutableArray.Create(participant),
|
|
sourceLayer: layer.Name);
|
|
}
|
|
}
|