Files
maraphon-app/src/Marathon.Infrastructure/Persistence/Configurations/EventConfiguration.cs
T
alexei.dolgolyov 9c5d3df1f2 feat(phase-8-backend): per-event results harvesting + EventPath plumbing
Implements Phase 8 Amendment 1: marathonbet.by has no public results archive
endpoint, so results must be harvested per-event by re-fetching the event
detail page until eventJsonInfo.matchIsComplete=true.

Backend changes:

* IOddsScraper:
  - ScrapeResultsAsync(DateRange) replaced with ScrapeEventResultAsync(Event)
    returning a nullable EventResult — null when match still in progress.
  - ScrapeEventOddsAsync now takes the full Event (so EventPath drives URL
    construction) instead of bare EventId.
  - New ScrapeLiveAsync() for the /su/live listing.

* Domain:
  - Event gains EventPath (nullable string) — the data-event-path attribute
    captured during scraping; required for reliable URL construction.

* Infrastructure:
  - New migration 20260506000000_AddEventPath adds the column.
  - EventEntity / EventConfiguration / Mapping / model-snapshot updated.
  - MarathonbetScraper: new ScrapeLiveAsync + ScrapeEventResultAsync; URL
    builder prefers EventPath, falls back to numeric ID for legacy rows.
  - EventListingParserBase extracts data-event-path on every listing row.

* Application:
  - PullResultsUseCase: branches on selection vs date-range, emits IProgress<
    PullResultsProgress>, returns ResultLoadOutcome (Loaded / AlreadyLoaded /
    NotYetComplete / Failed); idempotent (skips events whose result already
    exists).
  - PullLiveOddsUseCase now drives off the live listing (auto-discovers
    events that go live without ever appearing in the upcoming list) and
    backfills EventPath on legacy rows.
  - PullUpcomingEventsUseCase wires EventPath on persisted events.

* Workers: UpcomingEventsPoller updates persistence path accordingly.

* Tests: 17 net-new tests across Application + Infrastructure + Domain;
  all 293 still pass.
2026-05-09 15:10:27 +03:00

44 lines
1.9 KiB
C#

using Marathon.Infrastructure.Persistence.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Marathon.Infrastructure.Persistence.Configurations;
internal sealed class EventConfiguration : IEntityTypeConfiguration<EventEntity>
{
public void Configure(EntityTypeBuilder<EventEntity> builder)
{
builder.ToTable("Events");
builder.HasKey(e => e.EventCode);
builder.Property(e => e.EventCode).HasColumnType("TEXT").IsRequired();
builder.Property(e => e.SportCode).HasColumnType("INTEGER").IsRequired();
builder.Property(e => e.CountryCode).HasColumnType("TEXT").IsRequired();
builder.Property(e => e.LeagueId).HasColumnType("TEXT").IsRequired();
builder.Property(e => e.Category).HasColumnType("TEXT").HasDefaultValue(string.Empty);
builder.Property(e => e.ScheduledAt).HasColumnType("TEXT").IsRequired();
builder.Property(e => e.Side1Name).HasColumnType("TEXT").IsRequired();
builder.Property(e => e.Side2Name).HasColumnType("TEXT").IsRequired();
builder.Property(e => e.EventPath).HasColumnType("TEXT");
// Index for date-range queries and sport filtering
builder.HasIndex(e => new { e.SportCode, e.ScheduledAt }).HasDatabaseName("IX_Events_SportCode_ScheduledAt");
builder.HasIndex(e => e.ScheduledAt).HasDatabaseName("IX_Events_ScheduledAt");
builder.HasMany(e => e.Snapshots)
.WithOne(s => s.Event)
.HasForeignKey(s => s.EventCode)
.OnDelete(DeleteBehavior.Cascade);
builder.HasOne(e => e.Result)
.WithOne(r => r.Event)
.HasForeignKey<EventResultEntity>(r => r.EventCode)
.OnDelete(DeleteBehavior.Cascade);
builder.HasMany(e => e.Anomalies)
.WithOne(a => a.Event)
.HasForeignKey(a => a.EventCode)
.OnDelete(DeleteBehavior.Cascade);
}
}