2026-06-03 17:41:02 +03:30
|
|
|
using JobsMedical.Web.Models;
|
|
|
|
|
using JobsMedical.Web.Services.Scraping;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
|
|
|
|
|
|
namespace JobsMedical.Web.Pages.Admin;
|
|
|
|
|
|
|
|
|
|
[Authorize(Roles = "Admin")]
|
|
|
|
|
public class SettingsModel : PageModel
|
|
|
|
|
{
|
|
|
|
|
private readonly SettingsService _settings;
|
|
|
|
|
public SettingsModel(SettingsService settings) => _settings = settings;
|
|
|
|
|
|
|
|
|
|
[BindProperty] public IngestionMode Mode { get; set; }
|
|
|
|
|
[BindProperty] public int AutoPublishMinConfidence { get; set; }
|
|
|
|
|
[BindProperty] public bool AiEnabled { get; set; }
|
|
|
|
|
[BindProperty] public string? AiEndpoint { get; set; }
|
|
|
|
|
[BindProperty] public string? AiApiKey { get; set; }
|
|
|
|
|
[BindProperty] public string? AiModel { get; set; }
|
|
|
|
|
[BindProperty] public string AiSystemPrompt { get; set; } = "";
|
|
|
|
|
[BindProperty] public bool AiAutoApprove { get; set; }
|
2026-06-04 00:44:11 +03:30
|
|
|
// Channel scraping sources
|
|
|
|
|
[BindProperty] public bool AutoIngestEnabled { get; set; }
|
|
|
|
|
[BindProperty] public int IngestIntervalMinutes { get; set; } = 30;
|
|
|
|
|
[BindProperty] public bool TelegramEnabled { get; set; }
|
|
|
|
|
[BindProperty] public string? TelegramChannels { get; set; }
|
|
|
|
|
[BindProperty] public bool BaleEnabled { get; set; }
|
|
|
|
|
[BindProperty] public string? BaleBotToken { get; set; }
|
|
|
|
|
[BindProperty] public bool DivarEnabled { get; set; }
|
|
|
|
|
[BindProperty] public string? DivarCity { get; set; }
|
|
|
|
|
[BindProperty] public string? DivarQueries { get; set; }
|
2026-06-04 06:12:10 +03:30
|
|
|
[BindProperty] public bool MedjobsEnabled { get; set; }
|
|
|
|
|
[BindProperty] public int MedjobsMaxAds { get; set; } = 40;
|
2026-06-03 17:41:02 +03:30
|
|
|
[TempData] public string? Saved { get; set; }
|
|
|
|
|
|
|
|
|
|
public async Task OnGetAsync()
|
|
|
|
|
{
|
|
|
|
|
var s = await _settings.GetAsync();
|
|
|
|
|
Mode = s.Mode;
|
|
|
|
|
AutoPublishMinConfidence = s.AutoPublishMinConfidence;
|
|
|
|
|
AiEnabled = s.AiEnabled;
|
|
|
|
|
AiEndpoint = s.AiEndpoint;
|
|
|
|
|
AiApiKey = s.AiApiKey;
|
|
|
|
|
AiModel = s.AiModel;
|
|
|
|
|
AiSystemPrompt = s.AiSystemPrompt;
|
|
|
|
|
AiAutoApprove = s.AiAutoApprove;
|
2026-06-04 00:44:11 +03:30
|
|
|
AutoIngestEnabled = s.AutoIngestEnabled;
|
|
|
|
|
IngestIntervalMinutes = s.IngestIntervalMinutes;
|
|
|
|
|
TelegramEnabled = s.TelegramEnabled;
|
|
|
|
|
TelegramChannels = s.TelegramChannels;
|
|
|
|
|
BaleEnabled = s.BaleEnabled;
|
|
|
|
|
BaleBotToken = s.BaleBotToken;
|
|
|
|
|
DivarEnabled = s.DivarEnabled;
|
|
|
|
|
DivarCity = s.DivarCity;
|
|
|
|
|
DivarQueries = s.DivarQueries;
|
2026-06-04 06:12:10 +03:30
|
|
|
MedjobsEnabled = s.MedjobsEnabled;
|
|
|
|
|
MedjobsMaxAds = s.MedjobsMaxAds;
|
2026-06-03 17:41:02 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> OnPostAsync()
|
|
|
|
|
{
|
|
|
|
|
await _settings.SaveAsync(new AppSetting
|
|
|
|
|
{
|
|
|
|
|
Mode = Mode,
|
|
|
|
|
AutoPublishMinConfidence = AutoPublishMinConfidence,
|
|
|
|
|
AiEnabled = AiEnabled,
|
|
|
|
|
AiEndpoint = AiEndpoint,
|
|
|
|
|
AiApiKey = AiApiKey,
|
|
|
|
|
AiModel = AiModel,
|
|
|
|
|
AiSystemPrompt = AiSystemPrompt,
|
|
|
|
|
AiAutoApprove = AiAutoApprove,
|
2026-06-04 00:44:11 +03:30
|
|
|
AutoIngestEnabled = AutoIngestEnabled,
|
|
|
|
|
IngestIntervalMinutes = IngestIntervalMinutes,
|
|
|
|
|
TelegramEnabled = TelegramEnabled,
|
|
|
|
|
TelegramChannels = TelegramChannels,
|
|
|
|
|
BaleEnabled = BaleEnabled,
|
|
|
|
|
BaleBotToken = BaleBotToken,
|
|
|
|
|
DivarEnabled = DivarEnabled,
|
|
|
|
|
DivarCity = DivarCity,
|
|
|
|
|
DivarQueries = DivarQueries,
|
2026-06-04 06:12:10 +03:30
|
|
|
MedjobsEnabled = MedjobsEnabled,
|
|
|
|
|
MedjobsMaxAds = MedjobsMaxAds,
|
2026-06-03 17:41:02 +03:30
|
|
|
});
|
|
|
|
|
Saved = "تنظیمات ذخیره شد.";
|
|
|
|
|
return RedirectToPage();
|
|
|
|
|
}
|
|
|
|
|
}
|