2026-06-03 08:18:19 +03:30
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
using JobsMedical.Web.Data;
|
|
|
|
|
|
using JobsMedical.Web.Models;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JobsMedical.Web.Services.Scraping;
|
|
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
public record SourceResult(string Source, int Fetched, int Queued, int Published, int Flagged, int Spam, int Duplicates);
|
2026-06-03 08:18:19 +03:30
|
|
|
|
|
|
|
|
|
|
public record IngestionSummary(List<SourceResult> Sources)
|
|
|
|
|
|
{
|
2026-06-08 06:23:58 +03:30
|
|
|
|
public int TotalFetched => Sources.Sum(s => s.Fetched);
|
2026-06-03 08:18:19 +03:30
|
|
|
|
public int TotalQueued => Sources.Sum(s => s.Queued);
|
2026-06-03 17:41:02 +03:30
|
|
|
|
public int TotalPublished => Sources.Sum(s => s.Published);
|
2026-06-03 08:18:19 +03:30
|
|
|
|
public int TotalFlagged => Sources.Sum(s => s.Flagged);
|
|
|
|
|
|
public int TotalSpam => Sources.Sum(s => s.Spam);
|
|
|
|
|
|
public int TotalDuplicates => Sources.Sum(s => s.Duplicates);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2026-06-03 17:41:02 +03:30
|
|
|
|
/// The scrape engine. For every enabled source: dedupe by content hash → parse → rule-validate →
|
|
|
|
|
|
/// (optional) AI audit → decide. Decision depends on admin settings:
|
|
|
|
|
|
/// • spam → Discarded
|
|
|
|
|
|
/// • AI on: AI verdict drives approve/reject/review; approve + Automatic + AiAutoApprove → publish
|
|
|
|
|
|
/// • AI off: Automatic + confidence ≥ threshold → publish; else queue/flag
|
|
|
|
|
|
/// "Publish" resolves-or-creates an (unverified) facility and creates the Shift/JobOpening.
|
2026-06-03 08:18:19 +03:30
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class IngestionService
|
|
|
|
|
|
{
|
2026-06-10 21:28:12 +03:30
|
|
|
|
/// <summary>Applicant posts older than this (by the source's date, or a Persian "time ago"
|
|
|
|
|
|
/// phrase in the text) are skipped at ingest — availability goes stale fast.</summary>
|
|
|
|
|
|
private const int TalentMaxAgeDays = 7;
|
|
|
|
|
|
|
2026-06-03 08:18:19 +03:30
|
|
|
|
private readonly AppDbContext _db;
|
|
|
|
|
|
private readonly IEnumerable<IListingSource> _sources;
|
|
|
|
|
|
private readonly IListingParser _parser;
|
|
|
|
|
|
private readonly ListingValidator _validator;
|
2026-06-03 17:41:02 +03:30
|
|
|
|
private readonly IAiAuditor _ai;
|
|
|
|
|
|
private readonly SettingsService _settings;
|
2026-06-03 08:18:19 +03:30
|
|
|
|
private readonly ILogger<IngestionService> _log;
|
|
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
public IngestionService(AppDbContext db, IEnumerable<IListingSource> sources, IListingParser parser,
|
|
|
|
|
|
ListingValidator validator, IAiAuditor ai, SettingsService settings, ILogger<IngestionService> log)
|
2026-06-03 08:18:19 +03:30
|
|
|
|
{
|
2026-06-03 17:41:02 +03:30
|
|
|
|
_db = db; _sources = sources; _parser = parser; _validator = validator;
|
|
|
|
|
|
_ai = ai; _settings = settings; _log = log;
|
2026-06-03 08:18:19 +03:30
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-04 00:44:11 +03:30
|
|
|
|
public IReadOnlyList<string> SourceNames => _sources.Select(s => s.Name).ToList();
|
2026-06-03 08:18:19 +03:30
|
|
|
|
|
2026-06-09 21:38:55 +03:30
|
|
|
|
/// <summary>Shared placeholder facility name for unnamed ads — kept identical to
|
|
|
|
|
|
/// Review.ResolveFacilityIdAsync so the auto-publish and manual-review flows reuse ONE record.</summary>
|
|
|
|
|
|
private const string UnknownFacilityName = "نامشخص / ثبت نشده";
|
|
|
|
|
|
|
2026-06-03 08:18:19 +03:30
|
|
|
|
public async Task<IngestionSummary> RunAsync(CancellationToken ct = default)
|
|
|
|
|
|
{
|
2026-06-03 17:41:02 +03:30
|
|
|
|
var settings = await _settings.GetAsync();
|
|
|
|
|
|
var roles = await _db.Roles.ToListAsync(ct);
|
|
|
|
|
|
var cities = await _db.Cities.ToListAsync(ct);
|
|
|
|
|
|
var districts = await _db.Districts.ToListAsync(ct);
|
2026-06-08 07:14:48 +03:30
|
|
|
|
var facilities = await _db.Facilities.ToListAsync(ct); // fuzzy-matched + grown as we create
|
2026-06-03 17:41:02 +03:30
|
|
|
|
var roleNames = roles.Select(r => r.Name).ToList();
|
|
|
|
|
|
var cityNames = cities.Select(c => c.Name).ToList();
|
|
|
|
|
|
var districtNames = districts.Select(d => d.Name).ToList();
|
2026-06-03 08:18:19 +03:30
|
|
|
|
|
|
|
|
|
|
var results = new List<SourceResult>();
|
|
|
|
|
|
|
2026-06-04 00:44:11 +03:30
|
|
|
|
foreach (var source in _sources)
|
2026-06-03 08:18:19 +03:30
|
|
|
|
{
|
2026-06-03 17:41:02 +03:30
|
|
|
|
int fetched = 0, queued = 0, published = 0, flagged = 0, spam = 0, dupes = 0;
|
2026-06-03 08:18:19 +03:30
|
|
|
|
IReadOnlyList<ScrapedItem> items;
|
2026-06-04 00:44:11 +03:30
|
|
|
|
try { items = await source.FetchAsync(settings, ct); }
|
2026-06-03 17:41:02 +03:30
|
|
|
|
catch (Exception ex) { _log.LogError(ex, "Source {Source} failed", source.Name); continue; }
|
2026-06-04 00:44:11 +03:30
|
|
|
|
if (items.Count == 0) continue; // disabled/unconfigured source
|
2026-06-03 08:18:19 +03:30
|
|
|
|
|
|
|
|
|
|
foreach (var item in items)
|
|
|
|
|
|
{
|
|
|
|
|
|
fetched++;
|
|
|
|
|
|
var hash = Hash(item.RawText);
|
2026-06-09 21:38:55 +03:30
|
|
|
|
var existing = await _db.RawListings.FirstOrDefaultAsync(r => r.ContentHash == hash, ct);
|
|
|
|
|
|
if (existing is not null)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Best-effort geo retry: coords are normally captured only on first ingest, but a
|
|
|
|
|
|
// re-fetch may now expose a map center the first fetch lacked (Divar can fail-soft to
|
|
|
|
|
|
// null on a bad response / out-of-bbox). Backfill the cached row when this fetch has
|
|
|
|
|
|
// coords and the row has none, so an item still sitting in the queue can be placed on
|
|
|
|
|
|
// the map when an admin publishes it. (A full refresh is the purge-and-reingest flow.)
|
|
|
|
|
|
if (existing.Lat is null && item.Lat is not null) { existing.Lat = item.Lat; existing.Lng = item.Lng; }
|
|
|
|
|
|
dupes++; continue;
|
|
|
|
|
|
}
|
2026-06-03 08:18:19 +03:30
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
var parsed = _parser.Parse(item.RawText, roleNames, cityNames, districtNames);
|
2026-06-03 08:18:19 +03:30
|
|
|
|
var val = _validator.Validate(item.RawText, parsed);
|
|
|
|
|
|
|
2026-06-10 21:28:12 +03:30
|
|
|
|
// Drop STALE applicant («آماده به کار») posts — a person's availability goes cold fast.
|
|
|
|
|
|
// Age = the source's real timestamp, else a Persian "time ago" phrase in the text
|
|
|
|
|
|
// (Divar embeds «۲ هفته پیش»…). Recorded as Discarded (keeps the dedupe hash + audit
|
|
|
|
|
|
// trail; no AI spend). Shifts/jobs are NOT aged out — their dates are in the future.
|
|
|
|
|
|
if (parsed.Kind == ListingKind.Talent && PostAgeDays(item) is int age && age > TalentMaxAgeDays)
|
|
|
|
|
|
{
|
|
|
|
|
|
_db.RawListings.Add(new RawListing
|
|
|
|
|
|
{
|
|
|
|
|
|
SourceChannel = item.Source, SourceUrl = item.SourceUrl, RawText = item.RawText.Trim(),
|
|
|
|
|
|
ContentHash = hash, Confidence = 0, Status = RawListingStatus.Discarded,
|
|
|
|
|
|
ValidationNotes = $"آمادهبهکارِ قدیمی ({age} روز) — نادیده گرفته شد",
|
|
|
|
|
|
Lat = item.Lat, Lng = item.Lng,
|
|
|
|
|
|
});
|
|
|
|
|
|
spam++; continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
AiAuditResult? ai = null;
|
|
|
|
|
|
if (settings.AiEnabled && !val.IsSpam)
|
|
|
|
|
|
ai = await _ai.AuditAsync(item.RawText, settings, ct);
|
|
|
|
|
|
|
|
|
|
|
|
var (status, reason, confidence) = Decide(settings, val, ai);
|
2026-06-03 08:18:19 +03:30
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
var raw = new RawListing
|
2026-06-03 08:18:19 +03:30
|
|
|
|
{
|
|
|
|
|
|
SourceChannel = item.Source,
|
|
|
|
|
|
SourceUrl = item.SourceUrl,
|
|
|
|
|
|
RawText = item.RawText.Trim(),
|
|
|
|
|
|
ContentHash = hash,
|
2026-06-03 17:41:02 +03:30
|
|
|
|
Confidence = confidence,
|
|
|
|
|
|
ValidationNotes = reason,
|
2026-06-03 08:18:19 +03:30
|
|
|
|
Status = status,
|
2026-06-09 21:38:55 +03:30
|
|
|
|
Lat = item.Lat, Lng = item.Lng, // approx. map coords (Divar) → facility on publish
|
2026-06-03 17:41:02 +03:30
|
|
|
|
};
|
|
|
|
|
|
_db.RawListings.Add(raw);
|
|
|
|
|
|
|
|
|
|
|
|
if (status == RawListingStatus.Normalized)
|
|
|
|
|
|
{
|
2026-06-08 07:14:48 +03:30
|
|
|
|
try { Publish(parsed, ai, raw, roles, cities, districts, facilities); published++; }
|
2026-06-03 17:41:02 +03:30
|
|
|
|
catch (Exception ex) { _log.LogWarning(ex, "Auto-publish failed; queueing instead"); raw.Status = RawListingStatus.New; queued++; }
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (status == RawListingStatus.New) queued++;
|
|
|
|
|
|
else if (status == RawListingStatus.Flagged) flagged++;
|
|
|
|
|
|
else spam++;
|
2026-06-03 08:18:19 +03:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
await _db.SaveChangesAsync(ct);
|
2026-06-03 17:41:02 +03:30
|
|
|
|
results.Add(new SourceResult(source.Name, fetched, queued, published, flagged, spam, dupes));
|
|
|
|
|
|
_log.LogInformation("Ingest {S}: fetched={F} queued={Q} published={P} flagged={Fl} spam={Sp} dupes={D}",
|
|
|
|
|
|
source.Name, fetched, queued, published, flagged, spam, dupes);
|
2026-06-03 08:18:19 +03:30
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-08 06:23:58 +03:30
|
|
|
|
var summary = new IngestionSummary(results);
|
|
|
|
|
|
|
|
|
|
|
|
// Persist a run-log row so admins get a crawl history (with a per-source breakdown).
|
|
|
|
|
|
if (results.Count > 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
var detail = string.Join("؛ ", results.Select(r =>
|
|
|
|
|
|
$"{r.Source}: یافت {r.Fetched}، صف {r.Queued}، منتشر {r.Published}، پرچم {r.Flagged}، اسپم {r.Spam}، تکراری {r.Duplicates}"));
|
|
|
|
|
|
_db.IngestionRuns.Add(new IngestionRun
|
|
|
|
|
|
{
|
|
|
|
|
|
Fetched = summary.TotalFetched,
|
|
|
|
|
|
Queued = summary.TotalQueued,
|
|
|
|
|
|
Published = summary.TotalPublished,
|
|
|
|
|
|
Flagged = summary.TotalFlagged,
|
|
|
|
|
|
Spam = summary.TotalSpam,
|
|
|
|
|
|
Duplicates = summary.TotalDuplicates,
|
|
|
|
|
|
Detail = detail.Length > 2000 ? detail[..2000] : detail,
|
|
|
|
|
|
});
|
|
|
|
|
|
await _db.SaveChangesAsync(ct);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return summary;
|
2026-06-03 08:18:19 +03:30
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-20 14:24:20 +03:30
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Re-run the CURRENT parser/AI/publish pipeline over every already-crawled RawListing, WITHOUT
|
|
|
|
|
|
/// re-fetching from sources. Use this after improving the pipeline to clean up existing aggregated
|
|
|
|
|
|
/// content (de-dupe, fix roles/categories/tags) — unlike <see cref="RunAsync"/> + the purge-cache
|
|
|
|
|
|
/// flow, it keeps every raw text, so nothing is lost to sources only exposing recent posts.
|
|
|
|
|
|
/// Deletes the old aggregated posts, then republishes from the stored raw text. Long-running
|
|
|
|
|
|
/// (one AI call per item) — call it on a background scope, not inside a request.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public async Task<IngestionSummary> ReprocessAsync(CancellationToken ct = default)
|
|
|
|
|
|
{
|
|
|
|
|
|
var settings = await _settings.GetAsync();
|
|
|
|
|
|
var roles = await _db.Roles.ToListAsync(ct);
|
|
|
|
|
|
var cities = await _db.Cities.ToListAsync(ct);
|
|
|
|
|
|
var districts = await _db.Districts.ToListAsync(ct);
|
|
|
|
|
|
var facilities = await _db.Facilities.ToListAsync(ct); // reused (not deleted) → no facility churn
|
|
|
|
|
|
var roleNames = roles.Select(r => r.Name).ToList();
|
|
|
|
|
|
var cityNames = cities.Select(c => c.Name).ToList();
|
|
|
|
|
|
var districtNames = districts.Select(d => d.Name).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
// Drop previously-published aggregated content; it's regenerated below from the raw text.
|
|
|
|
|
|
// DB cascade clears their ContactMethods/Applications/InterestEvents; RawListing back-refs SetNull.
|
|
|
|
|
|
await _db.Shifts.Where(s => s.Source == ShiftSource.Aggregated).ExecuteDeleteAsync(ct);
|
|
|
|
|
|
await _db.JobOpenings.Where(j => j.Source == ShiftSource.Aggregated).ExecuteDeleteAsync(ct);
|
|
|
|
|
|
await _db.TalentListings.Where(t => t.Source == ShiftSource.Aggregated).ExecuteDeleteAsync(ct);
|
|
|
|
|
|
|
|
|
|
|
|
int fetched = 0, queued = 0, published = 0, flagged = 0, spam = 0;
|
|
|
|
|
|
var raws = await _db.RawListings.OrderBy(r => r.Id).ToListAsync(ct);
|
|
|
|
|
|
foreach (var raw in raws)
|
|
|
|
|
|
{
|
|
|
|
|
|
ct.ThrowIfCancellationRequested();
|
|
|
|
|
|
fetched++;
|
|
|
|
|
|
raw.LinkedShiftId = null; raw.LinkedTalentId = null; // old links were just deleted
|
|
|
|
|
|
|
|
|
|
|
|
var parsed = _parser.Parse(raw.RawText, roleNames, cityNames, districtNames);
|
|
|
|
|
|
var val = _validator.Validate(raw.RawText, parsed);
|
|
|
|
|
|
|
|
|
|
|
|
// Stale-applicant filter — age from the Persian "time ago" phrase in the text (Divar).
|
|
|
|
|
|
if (parsed.Kind == ListingKind.Talent
|
|
|
|
|
|
&& HtmlUtil.AgeDaysFromPersianText(raw.RawText) is int age && age > TalentMaxAgeDays)
|
|
|
|
|
|
{
|
|
|
|
|
|
raw.Status = RawListingStatus.Discarded; raw.Confidence = 0;
|
|
|
|
|
|
raw.ValidationNotes = $"آمادهبهکارِ قدیمی ({age} روز) — نادیده گرفته شد";
|
|
|
|
|
|
spam++; continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AiAuditResult? ai = null;
|
|
|
|
|
|
if (settings.AiEnabled && !val.IsSpam)
|
|
|
|
|
|
ai = await _ai.AuditAsync(raw.RawText, settings, ct);
|
|
|
|
|
|
|
|
|
|
|
|
var (status, reason, confidence) = Decide(settings, val, ai);
|
|
|
|
|
|
raw.Status = status; raw.ValidationNotes = reason; raw.Confidence = confidence;
|
|
|
|
|
|
|
|
|
|
|
|
if (status == RawListingStatus.Normalized)
|
|
|
|
|
|
{
|
|
|
|
|
|
try { Publish(parsed, ai, raw, roles, cities, districts, facilities); published++; }
|
|
|
|
|
|
catch (Exception ex) { _log.LogWarning(ex, "Reprocess publish failed; queueing"); raw.Status = RawListingStatus.New; queued++; }
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (status == RawListingStatus.New) queued++;
|
|
|
|
|
|
else if (status == RawListingStatus.Flagged) flagged++;
|
|
|
|
|
|
else spam++;
|
|
|
|
|
|
|
|
|
|
|
|
if (fetched % 50 == 0) await _db.SaveChangesAsync(ct); // incremental progress on long runs
|
|
|
|
|
|
}
|
|
|
|
|
|
await _db.SaveChangesAsync(ct);
|
|
|
|
|
|
|
|
|
|
|
|
_db.IngestionRuns.Add(new IngestionRun
|
|
|
|
|
|
{
|
|
|
|
|
|
Fetched = fetched, Queued = queued, Published = published, Flagged = flagged, Spam = spam, Duplicates = 0,
|
|
|
|
|
|
Detail = $"پردازش مجدد آیتمهای ذخیرهشده — {fetched} آیتم: {published} منتشر، {queued} صف، {flagged} پرچم، {spam} ردشده/قدیمی",
|
|
|
|
|
|
});
|
|
|
|
|
|
await _db.SaveChangesAsync(ct);
|
|
|
|
|
|
_log.LogInformation("Reprocess done: items={F} published={P} queued={Q} flagged={Fl} discarded={S}",
|
|
|
|
|
|
fetched, published, queued, flagged, spam);
|
|
|
|
|
|
|
|
|
|
|
|
return new IngestionSummary(new List<SourceResult>
|
|
|
|
|
|
{ new("پردازش مجدد", fetched, queued, published, flagged, spam, 0) });
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
private static (RawListingStatus status, string? reason, int confidence) Decide(
|
|
|
|
|
|
AppSetting s, ValidationResult val, AiAuditResult? ai)
|
|
|
|
|
|
{
|
|
|
|
|
|
var notes = val.Issues.Count > 0 ? string.Join("؛ ", val.Issues) : null;
|
|
|
|
|
|
|
|
|
|
|
|
if (val.IsSpam)
|
|
|
|
|
|
return (RawListingStatus.Discarded, Join("اسپم", notes), val.Confidence);
|
|
|
|
|
|
|
|
|
|
|
|
if (ai is not null)
|
|
|
|
|
|
{
|
|
|
|
|
|
var aiNote = Join($"AI: {ai.Decision} ({ai.Confidence}٪)" + (ai.Reason is null ? "" : $" — {ai.Reason}"), notes);
|
|
|
|
|
|
if (ai.Reject) return (RawListingStatus.Discarded, aiNote, ai.Confidence);
|
|
|
|
|
|
if (ai.Approve)
|
2026-06-09 21:38:55 +03:30
|
|
|
|
{
|
|
|
|
|
|
// MEDICAL GATE: the rule-validator's medical signal vetoes an AI approval. The AI can
|
|
|
|
|
|
// hallucinate (e.g. approved a GeekVape product ad 95% as a «پرستار» job) — when our
|
|
|
|
|
|
// own keyword/role check sees nothing clinical, never auto-publish; send to review.
|
|
|
|
|
|
if (!val.LooksMedical)
|
|
|
|
|
|
return (RawListingStatus.Flagged, Join("هوش مصنوعی تأیید کرد ولی نشانهٔ کادر درمان یافت نشد — بررسی دستی", aiNote), ai.Confidence);
|
2026-06-03 17:41:02 +03:30
|
|
|
|
return (s.Mode == IngestionMode.Automatic && s.AiAutoApprove
|
|
|
|
|
|
? RawListingStatus.Normalized : RawListingStatus.New, aiNote, ai.Confidence);
|
2026-06-09 21:38:55 +03:30
|
|
|
|
}
|
2026-06-03 17:41:02 +03:30
|
|
|
|
return (RawListingStatus.Flagged, aiNote, ai.Confidence); // review
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!val.IsValid) return (RawListingStatus.Flagged, notes, val.Confidence);
|
|
|
|
|
|
if (s.Mode == IngestionMode.Automatic && val.Confidence >= s.AutoPublishMinConfidence)
|
|
|
|
|
|
return (RawListingStatus.Normalized, notes, val.Confidence);
|
|
|
|
|
|
return (RawListingStatus.New, notes, val.Confidence);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void Publish(ParsedListing parsed, AiAuditResult? ai, RawListing raw,
|
2026-06-08 07:14:48 +03:30
|
|
|
|
List<Role> roles, List<City> cities, List<District> districts, List<Facility> facilities)
|
2026-06-03 17:41:02 +03:30
|
|
|
|
{
|
|
|
|
|
|
var d = ai?.Data;
|
|
|
|
|
|
var cityName = d?.City ?? parsed.CityName;
|
|
|
|
|
|
var districtName = d?.District ?? parsed.DistrictName;
|
|
|
|
|
|
|
2026-06-08 10:58:29 +03:30
|
|
|
|
// One ad can name several roles («پرستار سالمند و کودک و همراه بیمار») — resolve them all
|
|
|
|
|
|
// and publish one listing per role so each is browsable/filterable. Capped to avoid spam.
|
2026-06-09 19:04:24 +03:30
|
|
|
|
// The AI's role (+ its category) is the trusted, possibly-new one; parser names are already
|
|
|
|
|
|
// canonical matches. Unknown roles are CREATED (dynamic taxonomy), not dropped.
|
|
|
|
|
|
var candidates = new List<(string name, string? category)>();
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(d?.Role)) candidates.Add((d!.Role!.Trim(), d.Category));
|
|
|
|
|
|
foreach (var n in parsed.RoleNames) candidates.Add((n, null));
|
|
|
|
|
|
if (parsed.RoleName is not null) candidates.Add((parsed.RoleName, null));
|
|
|
|
|
|
|
|
|
|
|
|
var pubRoles = new List<Role>();
|
|
|
|
|
|
foreach (var (name, category) in candidates)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(name)) continue;
|
|
|
|
|
|
var role = ResolveOrCreateRole(roles, name, category);
|
|
|
|
|
|
if (!pubRoles.Contains(role)) pubRoles.Add(role);
|
|
|
|
|
|
if (pubRoles.Count >= 4) break;
|
|
|
|
|
|
}
|
2026-06-08 10:58:29 +03:30
|
|
|
|
if (pubRoles.Count == 0) pubRoles.Add(roles.First());
|
|
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
var city = cities.FirstOrDefault(c => c.Name == cityName)
|
|
|
|
|
|
?? cities.FirstOrDefault(c => c.IsActive) ?? cities.First();
|
|
|
|
|
|
var district = districts.FirstOrDefault(x => x.Name == districtName && x.CityId == city.Id);
|
|
|
|
|
|
|
2026-06-08 08:01:12 +03:30
|
|
|
|
var kindStr = (d?.Kind ?? parsed.Kind.ToString()).ToLowerInvariant();
|
|
|
|
|
|
|
|
|
|
|
|
// «آماده به کار» — a worker offering themselves. No facility involved.
|
|
|
|
|
|
if (parsed.Kind == ListingKind.Talent || kindStr.Contains("talent") || kindStr.Contains("آماده"))
|
|
|
|
|
|
{
|
2026-06-20 14:24:20 +03:30
|
|
|
|
// ONE person = ONE listing. Do NOT fan out across roles: an applicant has a single
|
|
|
|
|
|
// profession, and «پرستار» + «پرستار کودک» from the same ad were producing duplicate
|
|
|
|
|
|
// cards. Use the primary (AI) role; any secondary role names become searchable tags.
|
|
|
|
|
|
var role = pubRoles[0];
|
|
|
|
|
|
var extraRoleTags = pubRoles.Skip(1).Select(r => r.Name);
|
2026-06-08 08:11:14 +03:30
|
|
|
|
var tPay = d?.PayAmount ?? parsed.PayAmount;
|
|
|
|
|
|
var tShare = d?.SharePercent ?? parsed.SharePercent;
|
2026-06-20 14:24:20 +03:30
|
|
|
|
_db.TalentListings.Add(new TalentListing
|
|
|
|
|
|
{
|
|
|
|
|
|
Role = role, City = city, DistrictId = district?.Id,
|
|
|
|
|
|
PersonName = !string.IsNullOrWhiteSpace(d?.PersonName) ? d!.PersonName!.Trim() : parsed.PersonName,
|
|
|
|
|
|
YearsExperience = d?.YearsExperience ?? parsed.YearsExperience,
|
|
|
|
|
|
IsLicensed = d?.IsLicensed ?? parsed.IsLicensed,
|
|
|
|
|
|
AreaNote = parsed.AreaNote,
|
|
|
|
|
|
Availability = MapEmployment(d?.EmploymentType, parsed.EmploymentType),
|
|
|
|
|
|
Gender = parsed.Gender,
|
|
|
|
|
|
PayType = tShare is not null && tPay is null ? PayType.Percentage
|
|
|
|
|
|
: tPay is null ? PayType.Negotiable : PayType.PerShift,
|
|
|
|
|
|
PayAmount = tPay, SharePercent = tShare,
|
|
|
|
|
|
Phone = !string.IsNullOrWhiteSpace(d?.Phone) ? d!.Phone!.Trim() : parsed.Phone,
|
|
|
|
|
|
Description = raw.RawText,
|
|
|
|
|
|
Status = ShiftStatus.Open, Source = ShiftSource.Aggregated, SourceUrl = raw.SourceUrl,
|
2026-06-20 15:10:05 +03:30
|
|
|
|
Lat = raw.Lat, Lng = raw.Lng, // approx. area from the source ad (Divar)
|
2026-06-20 14:24:20 +03:30
|
|
|
|
Contacts = BuildContacts(d, parsed),
|
|
|
|
|
|
Tags = BuildTags(parsed, d, role, city, extraRoleTags),
|
|
|
|
|
|
});
|
2026-06-08 08:01:12 +03:30
|
|
|
|
raw.Status = RawListingStatus.Normalized;
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-09 21:38:55 +03:30
|
|
|
|
// Never surface the crawl source (e.g. «مدجابز») in a public facility name. An unnamed ad
|
|
|
|
|
|
// falls back to ONE shared placeholder (same string as the manual-review flow, so both
|
|
|
|
|
|
// pipelines reuse a single record). That placeholder is shared by every unnamed ad in a
|
|
|
|
|
|
// city, so it must NEVER receive a single ad's fuzzy coords — that would mis-place dozens of
|
|
|
|
|
|
// unrelated listings on the map and in «near me». Mirrors Review.ResolveFacilityIdAsync.
|
|
|
|
|
|
bool unnamed = string.IsNullOrWhiteSpace(d?.FacilityName) && string.IsNullOrWhiteSpace(parsed.FacilityName);
|
2026-06-03 17:41:02 +03:30
|
|
|
|
var facilityName = !string.IsNullOrWhiteSpace(d?.FacilityName) ? d!.FacilityName!.Trim()
|
2026-06-08 07:14:48 +03:30
|
|
|
|
: !string.IsNullOrWhiteSpace(parsed.FacilityName) ? parsed.FacilityName!.Trim()
|
2026-06-09 21:38:55 +03:30
|
|
|
|
: UnknownFacilityName;
|
2026-06-08 07:14:48 +03:30
|
|
|
|
// Reuse an existing facility (exact or Persian-aware fuzzy match) before creating a new one.
|
|
|
|
|
|
var facility = FacilityMatcher.FindBest(facilities, facilityName, city.Id);
|
2026-06-03 17:41:02 +03:30
|
|
|
|
if (facility is null)
|
|
|
|
|
|
{
|
|
|
|
|
|
facility = new Facility
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = facilityName, Type = FacilityType.Clinic, City = city, DistrictId = district?.Id,
|
2026-06-08 08:11:14 +03:30
|
|
|
|
Phone = !string.IsNullOrWhiteSpace(d?.Phone) ? d!.Phone!.Trim() : parsed.Phone, IsVerified = false,
|
2026-06-09 21:38:55 +03:30
|
|
|
|
Lat = unnamed ? null : raw.Lat, Lng = unnamed ? null : raw.Lng, // approx. Divar map center
|
2026-06-03 17:41:02 +03:30
|
|
|
|
};
|
|
|
|
|
|
_db.Facilities.Add(facility);
|
2026-06-08 07:14:48 +03:30
|
|
|
|
facilities.Add(facility); // so later listings in this run match it too
|
2026-06-03 17:41:02 +03:30
|
|
|
|
}
|
2026-06-09 21:38:55 +03:30
|
|
|
|
else if (!unnamed && facility.Lat is null && facility.Lng is null && raw.Lat is not null)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Backfill coords only when the matched (real, named) facility has none — never overwrite a
|
|
|
|
|
|
// real (employer-set or verified) location with Divar's fuzzy point.
|
|
|
|
|
|
facility.Lat = raw.Lat; facility.Lng = raw.Lng;
|
|
|
|
|
|
}
|
2026-06-03 17:41:02 +03:30
|
|
|
|
|
2026-06-08 08:01:12 +03:30
|
|
|
|
if (kindStr.Contains("job") || kindStr.Contains("استخدام"))
|
2026-06-03 17:41:02 +03:30
|
|
|
|
{
|
2026-06-08 10:58:29 +03:30
|
|
|
|
foreach (var role in pubRoles)
|
|
|
|
|
|
_db.JobOpenings.Add(new JobOpening
|
|
|
|
|
|
{
|
|
|
|
|
|
Facility = facility, Role = role,
|
|
|
|
|
|
Title = !string.IsNullOrWhiteSpace(d?.Title) && pubRoles.Count == 1 ? d!.Title!.Trim() : $"استخدام {role.Name}",
|
|
|
|
|
|
EmploymentType = MapEmployment(d?.EmploymentType, parsed.EmploymentType),
|
|
|
|
|
|
SalaryMin = parsed.PayAmount,
|
|
|
|
|
|
Description = raw.RawText, Status = ShiftStatus.Open, Source = ShiftSource.Aggregated,
|
|
|
|
|
|
SourceUrl = raw.SourceUrl,
|
2026-06-20 15:10:05 +03:30
|
|
|
|
Lat = raw.Lat, Lng = raw.Lng, // approx. area from the source ad (Divar)
|
2026-06-10 21:28:12 +03:30
|
|
|
|
Contacts = BuildContacts(d, parsed), // the ad's OWN number(s) — fresh per listing
|
2026-06-08 10:58:29 +03:30
|
|
|
|
});
|
2026-06-03 17:41:02 +03:30
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
var st = MapShiftType(d?.ShiftType, parsed.ShiftType);
|
|
|
|
|
|
var (start, end) = DefaultTimes(st);
|
2026-06-08 10:58:29 +03:30
|
|
|
|
foreach (var role in pubRoles)
|
|
|
|
|
|
_db.Shifts.Add(new Shift
|
|
|
|
|
|
{
|
|
|
|
|
|
Facility = facility, Role = role,
|
|
|
|
|
|
Date = DateOnly.FromDateTime(DateTime.UtcNow).AddDays(1),
|
|
|
|
|
|
StartTime = start, EndTime = end, ShiftType = st,
|
|
|
|
|
|
SpecialtyRequired = role.Name, Description = raw.RawText,
|
|
|
|
|
|
PayType = parsed.SharePercent is not null && parsed.PayAmount is null ? PayType.Percentage
|
|
|
|
|
|
: parsed.PayAmount is null ? PayType.Negotiable : PayType.PerShift,
|
|
|
|
|
|
PayAmount = parsed.PayAmount, SharePercent = parsed.SharePercent,
|
|
|
|
|
|
Status = ShiftStatus.Open, Source = ShiftSource.Aggregated, SourceUrl = raw.SourceUrl,
|
2026-06-20 15:10:05 +03:30
|
|
|
|
Lat = raw.Lat, Lng = raw.Lng, // approx. area from the source ad (Divar)
|
2026-06-10 21:28:12 +03:30
|
|
|
|
Contacts = BuildContacts(d, parsed), // the ad's OWN number(s) — fresh per listing
|
2026-06-08 10:58:29 +03:30
|
|
|
|
});
|
2026-06-03 17:41:02 +03:30
|
|
|
|
}
|
|
|
|
|
|
raw.Status = RawListingStatus.Normalized;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-09 19:04:24 +03:30
|
|
|
|
/// <summary>Space-separated searchable tags: parsed cert/skill tags + AI-detected skills/requirements
|
2026-06-20 14:24:20 +03:30
|
|
|
|
/// + secondary role names + this listing's role/category + city. Pay/contact/location noise and
|
|
|
|
|
|
/// sentence fragments are filtered out so chips stay clinical. Drives deep search + tag chips.</summary>
|
|
|
|
|
|
private static string BuildTags(ParsedListing parsed, AiStructured? d, Role role, City city,
|
|
|
|
|
|
IEnumerable<string>? extraRoles = null)
|
2026-06-08 11:25:32 +03:30
|
|
|
|
{
|
2026-06-09 19:04:24 +03:30
|
|
|
|
var tags = new List<string>(parsed.Tags) { role.Name, role.Category, city.Name };
|
2026-06-20 14:24:20 +03:30
|
|
|
|
if (extraRoles is not null) tags.AddRange(extraRoles);
|
2026-06-09 19:04:24 +03:30
|
|
|
|
if (d?.Tags is not null)
|
|
|
|
|
|
tags.AddRange(d.Tags.Where(t => !string.IsNullOrWhiteSpace(t)).Select(t => t.Trim()));
|
2026-06-20 14:24:20 +03:30
|
|
|
|
return string.Join(" ", tags
|
|
|
|
|
|
.Where(t => !string.IsNullOrWhiteSpace(t) && !IsNoiseTag(t))
|
|
|
|
|
|
.Select(t => t.Trim())
|
|
|
|
|
|
.Distinct());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Words/phrases that are NOT clinical skills — pay, contact, generic verbs, sentence fragments —
|
|
|
|
|
|
// that were polluting the tag chips («پرداخت توافقی»، «مراقبت از»…).
|
|
|
|
|
|
private static readonly string[] TagStopWords =
|
|
|
|
|
|
{
|
|
|
|
|
|
"توافقی", "پرداخت", "پرداخت توافقی", "حقوق", "دستمزد", "تماس", "شماره", "شماره تماس",
|
|
|
|
|
|
"مراقبت از", "مراقبت", "همکاری", "آماده", "آماده به کار", "نیرو", "استخدام", "جذب",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
private static bool IsNoiseTag(string tag)
|
|
|
|
|
|
{
|
|
|
|
|
|
var t = NormalizeFa(tag);
|
|
|
|
|
|
if (t.Length < 2 || t.EndsWith(" از") || t.EndsWith("-از")) return true; // dangling «… از»
|
|
|
|
|
|
return TagStopWords.Any(w => NormalizeFa(w) == t);
|
2026-06-08 11:25:32 +03:30
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-09 21:38:55 +03:30
|
|
|
|
/// <summary>Resolve a role name to an existing Role; if it's genuinely new, create it (dynamic
|
|
|
|
|
|
/// taxonomy). Matching is layered so a differently-worded-but-same-meaning role maps to the
|
|
|
|
|
|
/// canonical one instead of forking: (1) exact normalized name, (2) synonym/abbreviation alias
|
|
|
|
|
|
/// → canonical (دکتر→پزشک عمومی، نرس→پرستار…), (3) create. Only TRUE synonyms collapse — real
|
|
|
|
|
|
/// sub-specialties («پرستار ICU») stay distinct on purpose.</summary>
|
2026-06-09 19:04:24 +03:30
|
|
|
|
private Role ResolveOrCreateRole(List<Role> roles, string name, string? category)
|
|
|
|
|
|
{
|
|
|
|
|
|
var norm = NormalizeFa(name);
|
2026-06-09 21:38:55 +03:30
|
|
|
|
|
|
|
|
|
|
// (1) Already a known role (same word or spelling variant).
|
2026-06-09 19:04:24 +03:30
|
|
|
|
var match = roles.FirstOrDefault(r => NormalizeFa(r.Name) == norm);
|
|
|
|
|
|
if (match is not null) return match;
|
|
|
|
|
|
|
2026-06-09 21:38:55 +03:30
|
|
|
|
// (2) A synonym of a canonical role → use that role; don't create a duplicate.
|
|
|
|
|
|
if (RoleAliases.TryGetValue(norm, out var canonical))
|
|
|
|
|
|
{
|
|
|
|
|
|
var canonNorm = NormalizeFa(canonical);
|
|
|
|
|
|
var aliased = roles.FirstOrDefault(r => NormalizeFa(r.Name) == canonNorm);
|
|
|
|
|
|
if (aliased is not null) return aliased;
|
|
|
|
|
|
name = canonical; norm = canonNorm; // canonical not seeded yet → create under its proper name
|
|
|
|
|
|
}
|
2026-06-09 19:04:24 +03:30
|
|
|
|
|
2026-06-09 21:38:55 +03:30
|
|
|
|
// (3) Genuinely new role — create it under a canonical-resolved category.
|
2026-06-09 19:04:24 +03:30
|
|
|
|
var created = new Role
|
|
|
|
|
|
{
|
2026-06-09 21:38:55 +03:30
|
|
|
|
Name = Clamp(name.Trim(), 100), // respect Role.Name MaxLength(100)
|
2026-06-20 14:24:20 +03:30
|
|
|
|
Category = Clamp(ResolveCategory(category), 50), // closed set → respect MaxLength(50)
|
2026-06-09 19:04:24 +03:30
|
|
|
|
IsActive = true,
|
|
|
|
|
|
SortOrder = (roles.Count == 0 ? 0 : roles.Max(r => r.SortOrder)) + 1,
|
|
|
|
|
|
};
|
|
|
|
|
|
_db.Roles.Add(created);
|
|
|
|
|
|
roles.Add(created); // reuse within this run (saved with the batch at end of source)
|
|
|
|
|
|
_log.LogInformation("Ingestion introduced new role «{Role}» (category «{Category}») from AI.",
|
|
|
|
|
|
created.Name, created.Category);
|
|
|
|
|
|
return created;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-20 14:24:20 +03:30
|
|
|
|
/// <summary>Map an AI-suggested category to one of the FIXED groups (پزشک/پرستار/ماما/تکنسین/
|
|
|
|
|
|
/// دندانپزشک). Categories are a closed taxonomy — they drive the filter chips — so unlike roles
|
|
|
|
|
|
/// they are NEVER invented: a synonym resolves to its canonical group, anything else → «سایر».
|
|
|
|
|
|
/// (CategoryAliases maps each canonical group to itself, so exact matches resolve here too.)</summary>
|
|
|
|
|
|
private static string ResolveCategory(string? category)
|
|
|
|
|
|
=> CategoryAliases.TryGetValue(NormalizeFa(category), out var canonical) ? canonical : "سایر";
|
2026-06-09 21:38:55 +03:30
|
|
|
|
|
|
|
|
|
|
// Synonyms/abbreviations → canonical ROLE name, so the AI naming a role differently maps onto an
|
|
|
|
|
|
// existing role instead of forking the taxonomy. Keys are matched after NormalizeFa. Add freely.
|
|
|
|
|
|
private static readonly Dictionary<string, string> RoleAliases = BuildAliasMap(new()
|
|
|
|
|
|
{
|
|
|
|
|
|
["پزشک عمومی"] = new[] { "دکتر", "طبیب", "پزشک", "جی پی", "gp", "general practitioner" },
|
|
|
|
|
|
["پزشک متخصص"] = new[] { "متخصص", "فوق تخصص", "اسپشالیست", "specialist" },
|
|
|
|
|
|
["پرستار"] = new[] { "نرس", "nurse", "پرستاری", "کارشناس پرستاری" },
|
|
|
|
|
|
["پرستار سالمندان"] = new[] { "مراقب سالمند", "مراقب سالمندان", "پرستار سالمند", "نگهدار سالمند", "مراقبت سالمند" },
|
|
|
|
|
|
["ماما"] = new[] { "مامایی", "کارشناس مامایی", "midwife" },
|
|
|
|
|
|
["تکنسین اتاق عمل"] = new[] { "اتاق عمل", "اسکراب", "scrub", "تکنولوژیست اتاق عمل" },
|
|
|
|
|
|
["تکنسین فوریتهای پزشکی"] = new[] { "فوریت پزشکی", "تکنسین اورژانس", "پارامدیک", "paramedic", "emt", "اورژانس ۱۱۵" },
|
|
|
|
|
|
["کارشناس آزمایشگاه"] = new[] { "علوم آزمایشگاهی", "تکنسین آزمایشگاه", "آزمایشگاهی", "لابراتوار", "lab", "laboratory" },
|
|
|
|
|
|
["دندانپزشک"] = new[] { "دندان پزشک", "دندون پزشک", "dentist" },
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// Synonyms → canonical CATEGORY (the role-group used for filters/chips).
|
|
|
|
|
|
private static readonly Dictionary<string, string> CategoryAliases = BuildAliasMap(new()
|
|
|
|
|
|
{
|
|
|
|
|
|
["پزشک"] = new[] { "دکتر", "طبیب", "doctor", "پزشکی" },
|
|
|
|
|
|
["پرستار"] = new[] { "پرستاری", "nurse", "nursing" },
|
|
|
|
|
|
["ماما"] = new[] { "مامایی", "midwifery" },
|
|
|
|
|
|
["تکنسین"] = new[] { "تکنیسین", "تکنولوژیست", "technician", "کاردان فنی" },
|
|
|
|
|
|
["دندانپزشک"] = new[] { "دندان پزشک", "دندانپزشکی", "dental" },
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>Flatten {canonical → [synonyms]} into a {normalized synonym → canonical} lookup,
|
|
|
|
|
|
/// also mapping each canonical's own normalized form to itself.</summary>
|
|
|
|
|
|
private static Dictionary<string, string> BuildAliasMap(Dictionary<string, string[]> src)
|
|
|
|
|
|
{
|
|
|
|
|
|
var map = new Dictionary<string, string>();
|
|
|
|
|
|
foreach (var (canonical, aliases) in src)
|
|
|
|
|
|
{
|
|
|
|
|
|
map[NormalizeFa(canonical)] = canonical;
|
|
|
|
|
|
foreach (var a in aliases) map[NormalizeFa(a)] = canonical;
|
|
|
|
|
|
}
|
|
|
|
|
|
return map;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-09 19:04:24 +03:30
|
|
|
|
/// <summary>Normalize a Persian string for dedupe: unify Arabic/Persian ي→ی and ك→ک, drop ZWNJ,
|
|
|
|
|
|
/// collapse whitespace, trim, lowercase (so Latin tags like "ICU"/"icu" also match).</summary>
|
|
|
|
|
|
private static string NormalizeFa(string? s) => Regex.Replace(
|
|
|
|
|
|
(s ?? "").Replace('ي', 'ی').Replace('ك', 'ک').Replace('', ' ').Trim(),
|
|
|
|
|
|
@"\s+", " ").ToLowerInvariant();
|
|
|
|
|
|
|
|
|
|
|
|
private static string Clamp(string s, int max) => s.Length <= max ? s : s[..max].Trim();
|
|
|
|
|
|
|
2026-06-08 11:10:19 +03:30
|
|
|
|
/// <summary>Fresh ContactMethod rows for one talent listing (parser contacts + AI phone).</summary>
|
|
|
|
|
|
private static List<ContactMethod> BuildContacts(AiStructured? d, ParsedListing parsed)
|
|
|
|
|
|
{
|
|
|
|
|
|
var contacts = parsed.Contacts
|
|
|
|
|
|
.Select((c, i) => new ContactMethod { Type = c.Type, Value = c.Value, SortOrder = i })
|
|
|
|
|
|
.ToList();
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(d?.Phone)
|
|
|
|
|
|
&& !contacts.Any(c => c.Type is ContactType.Mobile or ContactType.Phone))
|
|
|
|
|
|
contacts.Insert(0, new ContactMethod { Type = ContactType.Mobile, Value = d!.Phone!.Trim(), SortOrder = -1 });
|
|
|
|
|
|
return contacts;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-03 17:41:02 +03:30
|
|
|
|
private static ShiftType MapShiftType(string? ai, ShiftType? parsed) => (ai?.ToLowerInvariant()) switch
|
|
|
|
|
|
{
|
|
|
|
|
|
"day" => ShiftType.Day, "evening" => ShiftType.Evening, "night" => ShiftType.Night, "oncall" => ShiftType.OnCall,
|
|
|
|
|
|
_ => parsed ?? ShiftType.Day,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
private static EmploymentType MapEmployment(string? ai, EmploymentType? parsed) => (ai?.ToLowerInvariant()) switch
|
|
|
|
|
|
{
|
|
|
|
|
|
"parttime" => EmploymentType.PartTime, "contract" => EmploymentType.Contract,
|
|
|
|
|
|
"plan" => EmploymentType.Plan, "fulltime" => EmploymentType.FullTime,
|
|
|
|
|
|
_ => parsed ?? EmploymentType.FullTime,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
private static (TimeOnly, TimeOnly) DefaultTimes(ShiftType t) => t switch
|
|
|
|
|
|
{
|
|
|
|
|
|
ShiftType.Day => (new TimeOnly(8, 0), new TimeOnly(14, 0)),
|
|
|
|
|
|
ShiftType.Evening => (new TimeOnly(14, 0), new TimeOnly(20, 0)),
|
|
|
|
|
|
ShiftType.Night => (new TimeOnly(20, 0), new TimeOnly(8, 0)),
|
|
|
|
|
|
_ => (new TimeOnly(8, 0), new TimeOnly(8, 0)),
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
private static string? Join(string a, string? b) => string.IsNullOrEmpty(b) ? a : $"{a} | {b}";
|
|
|
|
|
|
|
2026-06-03 08:18:19 +03:30
|
|
|
|
private static string Hash(string text)
|
|
|
|
|
|
{
|
|
|
|
|
|
var normalized = Regex.Replace((text ?? "").Trim(), @"\s+", " ");
|
2026-06-03 17:41:02 +03:30
|
|
|
|
return Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(normalized))).ToLowerInvariant();
|
2026-06-03 08:18:19 +03:30
|
|
|
|
}
|
2026-06-10 21:28:12 +03:30
|
|
|
|
|
|
|
|
|
|
/// <summary>Age of a post in whole days — from the source's real timestamp when present, else a
|
|
|
|
|
|
/// Persian "time ago" phrase in the text (Divar). Null when neither is available (= unknown age,
|
|
|
|
|
|
/// so it's NOT filtered out).</summary>
|
|
|
|
|
|
private static int? PostAgeDays(ScrapedItem item)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (item.PostedAt is DateTime posted)
|
|
|
|
|
|
return Math.Max(0, (int)Math.Floor((DateTime.UtcNow - posted).TotalDays));
|
|
|
|
|
|
return HtmlUtil.AgeDaysFromPersianText(item.RawText);
|
|
|
|
|
|
}
|
2026-06-03 08:18:19 +03:30
|
|
|
|
}
|