98 lines
2.6 KiB
Rust
Raw Normal View History

use chrono::{prelude::*, Duration as ChronoDuration};
use job_scheduler::{Job, JobScheduler};
2024-09-22 04:10:29 -04:00
// use once_cell::sync::Lazy;
use sqlx::{postgres::PgPoolOptions, Pool, Postgres};
use tasks::import_posts::{self, import_posts};
2024-09-21 23:57:37 -04:00
use std::env;
use std::time::Duration;
2024-09-21 23:57:37 -04:00
//mod config;
2024-09-21 23:57:37 -04:00
mod tasks;
mod utils;
2024-09-21 23:57:37 -04:00
2024-09-22 04:10:29 -04:00
pub struct TaskManager<'a> {
pool: Pool<Postgres>,
jobs: Vec<TaskJob>,
2024-09-21 23:57:37 -04:00
last_activated: Option<chrono::DateTime<Utc>>,
2024-09-22 04:10:29 -04:00
last_job: Option<TaskJob>,
scheduler: job_scheduler::JobScheduler<'a>,
2024-09-21 23:57:37 -04:00
}
pub struct TaskLog {
task_log_id: u8,
task_id: u8,
created_at: chrono::DateTime<Utc>,
task_status: TaskStatus,
}
enum TaskStatus {
Pending,
Completed,
Failed,
}
#[derive(Debug, sqlx::FromRow, Clone)]
2024-09-22 04:10:29 -04:00
pub struct TaskJob {
pub task_id: i32,
pub task_name: String,
2024-09-21 23:57:37 -04:00
pub schedule: String,
2024-09-22 04:10:29 -04:00
pub is_active: bool,
pub created_at: chrono::DateTime<Utc>,
pub deleted_at: Option<chrono::DateTime<Utc>>,
2024-09-21 23:57:37 -04:00
}
#[tokio::main]
async fn main() {
2024-09-03 01:17:19 -04:00
println!("Hello, world!");
2024-09-22 04:10:29 -04:00
dotenvy::dotenv().unwrap();
let database_url =
env::var("DATABASE_URL").expect("Environment variable DATABASE_URL is not found");
let pool = PgPoolOptions::new()
.max_connections(10)
.acquire_timeout(Duration::from_secs(5))
2024-09-22 04:10:29 -04:00
.connect(&database_url)
.await
.expect("Failed to connect to the database");
let mut manager = TaskManager::new(pool);
manager.register_jobs().await;
loop {
manager.scheduler.tick();
std::thread::sleep(std::time::Duration::from_millis(500));
2024-09-22 04:10:29 -04:00
}
2024-09-03 01:17:19 -04:00
}
2024-09-21 23:57:37 -04:00
2024-09-22 04:10:29 -04:00
impl<'a> TaskManager<'a> {
fn new(pool: Pool<Postgres>) -> Self {
TaskManager {
pool,
2024-09-21 23:57:37 -04:00
jobs: Vec::new(),
last_activated: None,
last_job: None,
2024-09-22 04:10:29 -04:00
scheduler: job_scheduler::JobScheduler::new(),
2024-09-21 23:57:37 -04:00
}
}
2024-09-22 04:10:29 -04:00
pub async fn register_jobs(&self) {
// let jobs: Vec<Job> = Vec::new();
let results = sqlx::query_as::<_, TaskJob>("SELECT task_id, task_name, schedule, is_active, created_at, deleted_at FROM tasks WHERE is_active = true AND deleted_at IS NULL")
.fetch_all(&self.pool)
.await
.unwrap();
let mut scheduler = job_scheduler::JobScheduler::new();
for result in results {
let r = result.clone();
scheduler.add(job_scheduler::Job::new(r.schedule.parse().unwrap(), move || {
println!("Registering job: {}", r.task_name);
match r.task_id {
1 => async { import_posts::import_posts("/app", &self.pool).await },
_ => panic!(),
};
}));
}
2024-09-21 23:57:37 -04:00
}
}