Initial commit — Hamkadr (همکادر) healthcare-staffing marketplace

ASP.NET Core 10 Razor Pages + PostgreSQL/EF Core. RTL Persian, Jalali dates, self-hosted Vazirmatn, teal/coral brand.

Features:
- Shift listings: browse/filter (city, district, role, type, pay), weekly Jalali calendar, detail + interest handoff, near-me distance sort
- Hiring (استخدام) listings with employment type + salary range
- Pattern-engine recommendations + anonymous interest tracking (visitor cookie)
- Heuristic Persian listing-parser + admin queue (raw channel post → shift/job)
- Phone-OTP cookie auth + visitor-history linking + profile

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-03 01:43:55 +03:30
commit 2fb86a435e
150 changed files with 90993 additions and 0 deletions
@@ -0,0 +1,78 @@
using JobsMedical.Web.Data;
using JobsMedical.Web.Models;
using JobsMedical.Web.Services;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.EntityFrameworkCore;
namespace JobsMedical.Web.Pages.Shifts;
public class DetailsModel : PageModel
{
private readonly AppDbContext _db;
private readonly InterestService _interest;
public DetailsModel(AppDbContext db, InterestService interest)
{
_db = db;
_interest = interest;
}
public Shift? Shift { get; private set; }
public List<Shift> MoreAtFacility { get; private set; } = new();
// Set after the visitor taps "interested" — reveals the facility contact (handoff model).
public bool ShowContact { get; private set; }
public bool Saved { get; private set; }
public async Task<IActionResult> OnGetAsync(int id)
{
await LoadAsync(id);
if (Shift is null) return NotFound();
await _interest.LogAsync(InterestEventType.View, id); // behavioral signal for recommendations
return Page();
}
public async Task<IActionResult> OnPostInterestAsync(int id)
{
await LoadAsync(id);
if (Shift is null) return NotFound();
await _interest.LogAsync(InterestEventType.Apply, id);
ShowContact = true; // MVP handoff: reveal contact. Records an Application once auth lands.
return Page();
}
public async Task<IActionResult> OnPostSaveAsync(int id)
{
await LoadAsync(id);
if (Shift is null) return NotFound();
await _interest.LogAsync(InterestEventType.Save, id);
Saved = true;
return Page();
}
public async Task<IActionResult> OnPostDismissAsync(int id)
{
await _interest.LogAsync(InterestEventType.Dismiss, id);
return RedirectToPage("/Shifts/Index"); // not interested → back to the list
}
private async Task LoadAsync(int id)
{
Shift = await _db.Shifts
.Include(s => s.Facility).ThenInclude(f => f.City)
.Include(s => s.Role)
.FirstOrDefaultAsync(s => s.Id == id);
if (Shift is not null)
{
var today = DateOnly.FromDateTime(DateTime.UtcNow);
MoreAtFacility = await _db.Shifts
.Include(s => s.Facility).ThenInclude(f => f.City)
.Include(s => s.Role)
.Where(s => s.FacilityId == Shift.FacilityId && s.Id != id
&& s.Status == ShiftStatus.Open && s.Date >= today)
.OrderBy(s => s.Date).Take(3).ToListAsync();
}
}
}