99e5cfb76b
Closes #41 - Add RequireKeywordInAnchor per-provider flag (default true); set false for ejobs.ro and bestjobs.eu so Stage 2 anchor-text filter is skipped — their search URL already filters by relevance server-side - Update AI system prompts (en + ro) to extract concise job-board-friendly keywords (role title + key tech, not abstract concepts) and candidate location - Propagate location through JobMatchResponse -> CreateJobSearchTokenRequest -> JobSearchTokenEntity -> JobSearchSessionEntity - Add {location} and {location-slug} substitution in HtmlJobSearcher - Update provider SearchUrlTemplates to include location: ejobs.ro: /locuri-de-munca/{location-slug}?q={keywords} bestjobs.eu: /ro/locuri-de-munca-in-{location-slug}?keywords={keywords} linkedin.com: ?keywords={keywords}&location={location} - Three new migrations: AddRequireKeywordInAnchorAndLocation, ImproveKeywordsAndAddLocation, AddLocationToProviders Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
189 lines
7.1 KiB
C#
189 lines
7.1 KiB
C#
using System.Text.RegularExpressions;
|
|
using System.Web;
|
|
using CvMatcher.Models.Settings;
|
|
using Microsoft.Playwright;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace CvSearchJob.Services;
|
|
|
|
/// <summary>
|
|
/// Config-driven HTML scraper that fetches a provider's job listing page and extracts matching job URLs.
|
|
/// Uses a two-stage anchor filter: href must contain the provider's link pattern, and anchor text must
|
|
/// contain at least one CV keyword.
|
|
/// Supports both plain HTTP GET (default) and headless Chromium rendering for JS-heavy SPAs.
|
|
/// </summary>
|
|
public sealed class HtmlJobSearcher
|
|
{
|
|
private readonly HttpClient _http;
|
|
private readonly ILogger<HtmlJobSearcher> _logger;
|
|
|
|
public HtmlJobSearcher(HttpClient http, ILogger<HtmlJobSearcher> logger)
|
|
{
|
|
_http = http;
|
|
_logger = logger;
|
|
_http.Timeout = TimeSpan.FromSeconds(20);
|
|
_http.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; MyAi.ro CV-Search/1.0)");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Fetches the provider's search result page for the combined initial + CV keywords, parses all anchor
|
|
/// tags, applies the two-stage filter, and returns up to <see cref="JobProviderConfig.MaxResults"/> absolute URLs.
|
|
/// Returns an empty list when the HTTP request fails rather than throwing.
|
|
/// </summary>
|
|
public async Task<IReadOnlyList<string>> SearchJobUrlsAsync(
|
|
JobProviderConfig provider,
|
|
IReadOnlyList<string> cvKeywords,
|
|
string? location,
|
|
CancellationToken ct)
|
|
{
|
|
var allKeywords = provider.InitialKeywords
|
|
.Concat(cvKeywords)
|
|
.Where(k => !string.IsNullOrWhiteSpace(k))
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
|
.ToList();
|
|
|
|
if (allKeywords.Count == 0)
|
|
{
|
|
_logger.LogWarning("Provider {Provider}: no keywords available (CV keywords empty, InitialKeywords empty), skipping", provider.Name);
|
|
return [];
|
|
}
|
|
|
|
var keywordsEncoded = HttpUtility.UrlEncode(string.Join(" ", allKeywords));
|
|
var locationEncoded = HttpUtility.UrlEncode(location ?? string.Empty);
|
|
var locationSlug = (location ?? string.Empty)
|
|
.ToLowerInvariant()
|
|
.Replace(",", "")
|
|
.Replace(" ", "-")
|
|
.Trim('-');
|
|
var searchUrl = provider.SearchUrlTemplate
|
|
.Replace("{keywords}", keywordsEncoded)
|
|
.Replace("{location}", locationEncoded)
|
|
.Replace("{location-slug}", locationSlug);
|
|
|
|
_logger.LogInformation(
|
|
"Provider {Provider}: fetching {Url} [{Mode}] | CV keywords: [{Keywords}] | Location: {Location}",
|
|
provider.Name, searchUrl,
|
|
provider.UseHeadlessBrowser ? "headless" : "http",
|
|
string.Join(", ", cvKeywords),
|
|
location ?? "(none)");
|
|
|
|
string? html;
|
|
if (provider.UseHeadlessBrowser)
|
|
html = await FetchWithPlaywrightAsync(provider.Name, searchUrl, ct);
|
|
else
|
|
html = await FetchWithHttpAsync(provider.Name, searchUrl, ct);
|
|
|
|
if (html is null) return [];
|
|
|
|
_logger.LogInformation("Provider {Provider}: received {Length} chars of HTML", provider.Name, html.Length);
|
|
|
|
var baseUri = new Uri(searchUrl);
|
|
var results = new List<string>();
|
|
var seen = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
var anchorPattern = new Regex(@"<a[^>]+href=[""']([^""']+)[""'][^>]*>(.*?)</a>",
|
|
RegexOptions.IgnoreCase | RegexOptions.Singleline);
|
|
|
|
var allAnchors = anchorPattern.Matches(html);
|
|
var stage1Pass = 0;
|
|
var stage2Pass = 0;
|
|
|
|
foreach (Match match in allAnchors)
|
|
{
|
|
if (results.Count >= provider.MaxResults) break;
|
|
|
|
var href = match.Groups[1].Value.Trim();
|
|
var anchorText = Regex.Replace(match.Groups[2].Value, "<[^>]+>", " ").Trim();
|
|
|
|
if (!href.Contains(provider.JobLinkContains, StringComparison.OrdinalIgnoreCase))
|
|
continue;
|
|
|
|
stage1Pass++;
|
|
|
|
if (provider.RequireKeywordInAnchor &&
|
|
!cvKeywords.Any(k => anchorText.Contains(k, StringComparison.OrdinalIgnoreCase)))
|
|
{
|
|
_logger.LogDebug(
|
|
"Provider {Provider}: stage-2 reject | href={Href} | text={Text}",
|
|
provider.Name, href, anchorText.Length > 100 ? anchorText[..100] : anchorText);
|
|
continue;
|
|
}
|
|
|
|
stage2Pass++;
|
|
|
|
if (!Uri.TryCreate(href, UriKind.Absolute, out var absoluteUri))
|
|
{
|
|
if (!Uri.TryCreate(baseUri, href, out absoluteUri))
|
|
continue;
|
|
}
|
|
|
|
var url = absoluteUri.GetLeftPart(UriPartial.Path);
|
|
if (seen.Add(url))
|
|
results.Add(url);
|
|
}
|
|
|
|
_logger.LogInformation(
|
|
"Provider {Provider}: {TotalAnchors} anchors found | {Stage1} passed href filter ('{LinkPattern}') | {Stage2} passed keyword filter | {Unique} unique URLs returned",
|
|
provider.Name, allAnchors.Count, stage1Pass, provider.JobLinkContains, stage2Pass, results.Count);
|
|
|
|
return results;
|
|
}
|
|
|
|
private async Task<string?> FetchWithHttpAsync(string providerName, string url, CancellationToken ct)
|
|
{
|
|
try
|
|
{
|
|
return await _http.GetStringAsync(url, ct);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Provider {Provider}: HTTP fetch failed for {Url}", providerName, url);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
private async Task<string?> FetchWithPlaywrightAsync(string providerName, string url, CancellationToken ct)
|
|
{
|
|
try
|
|
{
|
|
using var playwright = await Playwright.CreateAsync();
|
|
await using var browser = await playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOptions
|
|
{
|
|
Headless = true,
|
|
Args = ["--no-sandbox", "--disable-setuid-sandbox", "--disable-dev-shm-usage"]
|
|
});
|
|
|
|
var page = await browser.NewPageAsync();
|
|
|
|
IResponse? response;
|
|
try
|
|
{
|
|
response = await page.GotoAsync(url, new PageGotoOptions
|
|
{
|
|
WaitUntil = WaitUntilState.NetworkIdle,
|
|
Timeout = 30_000
|
|
});
|
|
}
|
|
catch (TimeoutException)
|
|
{
|
|
// NetworkIdle timed out — use whatever content rendered so far
|
|
_logger.LogWarning("Provider {Provider}: Playwright NetworkIdle timeout for {Url}, using partial content", providerName, url);
|
|
return await page.ContentAsync();
|
|
}
|
|
|
|
if (response is null || response.Status >= 400)
|
|
{
|
|
_logger.LogWarning("Provider {Provider}: Playwright got HTTP {Status} for {Url}", providerName, response?.Status, url);
|
|
return null;
|
|
}
|
|
|
|
return await page.ContentAsync();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Provider {Provider}: Playwright fetch failed for {Url}", providerName, url);
|
|
return null;
|
|
}
|
|
}
|
|
}
|