9d32ef7fd6
Backend: - Migration 0003_job_error: adds error_message and error_code columns to jobs table - models/job.go: add ErrorMessage, ErrorCode fields to Job struct; SetError method; update all SELECT queries - models/job_log.go: GetAllFiltered also reads error_message and error_code (via Job embed) - syncengine/engine.go: setJobError() helper; capture errors at Wol timeout (wol_timeout), rsync error (rsync_error), and exit_code failure points - api/dto.go: add ErrorMessage and ErrorCode to JobResponse - api/handlers_jobs.go: jobToResp propagates error fields Frontend: - api/client.ts: add error_message? and error_code? to Job interface - lib/status.ts: add ERROR_CODES map with friendly titles/hints; getErrorCodeInfo() - components/ErrorDetailsModal.tsx: new modal showing error title, hint, full message, job metadata, and stderr log; copy-all and download-log buttons - pages/JobDetail.tsx: error banner for failed jobs with title/hint; View error button opens ErrorDetailsModal; SSE updates error_message in real-time
183 lines
5.0 KiB
Go
183 lines
5.0 KiB
Go
package models
|
|
|
|
import (
|
|
"database/sql"
|
|
"time"
|
|
)
|
|
|
|
type Job struct {
|
|
ID int64 `db:"id" json:"id"`
|
|
SyncPairID int64 `db:"sync_pair_id" json:"sync_pair_id"`
|
|
TriggerType string `db:"trigger_type" json:"trigger_type"`
|
|
Status string `db:"status" json:"status"`
|
|
StartedAt *time.Time `db:"started_at" json:"started_at"`
|
|
FinishedAt *time.Time `db:"finished_at" json:"finished_at"`
|
|
LogFile *string `db:"log_file" json:"log_file"`
|
|
ErrorMessage *string `db:"error_message" json:"error_message,omitempty"`
|
|
ErrorCode *string `db:"error_code" json:"error_code,omitempty"`
|
|
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
}
|
|
|
|
type JobRepository struct {
|
|
db *sql.DB
|
|
}
|
|
|
|
func NewJobRepository(db *sql.DB) *JobRepository {
|
|
return &JobRepository{db: db}
|
|
}
|
|
|
|
func (r *JobRepository) Create(syncPairID int64, triggerType, status string) (int64, error) {
|
|
res, err := r.db.Exec(`
|
|
INSERT INTO jobs (sync_pair_id, trigger_type, status) VALUES (?, ?, ?)`,
|
|
syncPairID, triggerType, status,
|
|
)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return res.LastInsertId()
|
|
}
|
|
|
|
func (r *JobRepository) GetByID(id int64) (*Job, error) {
|
|
var j Job
|
|
var started, finished sql.NullTime
|
|
var logFile, errMsg, errCode sql.NullString
|
|
err := r.db.QueryRow(`
|
|
SELECT id, sync_pair_id, trigger_type, status, started_at, finished_at,
|
|
log_file, error_message, error_code, created_at FROM jobs WHERE id = ?`, id).Scan(
|
|
&j.ID, &j.SyncPairID, &j.TriggerType, &j.Status, &started, &finished,
|
|
&logFile, &errMsg, &errCode, &j.CreatedAt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if started.Valid {
|
|
j.StartedAt = &started.Time
|
|
}
|
|
if finished.Valid {
|
|
j.FinishedAt = &finished.Time
|
|
}
|
|
if logFile.Valid {
|
|
j.LogFile = &logFile.String
|
|
}
|
|
if errMsg.Valid {
|
|
j.ErrorMessage = &errMsg.String
|
|
}
|
|
if errCode.Valid {
|
|
j.ErrorCode = &errCode.String
|
|
}
|
|
return &j, nil
|
|
}
|
|
|
|
func (r *JobRepository) GetAll(limit, offset int) ([]Job, error) {
|
|
rows, err := r.db.Query(`
|
|
SELECT id, sync_pair_id, trigger_type, status, started_at, finished_at,
|
|
log_file, error_message, error_code, created_at
|
|
FROM jobs ORDER BY created_at DESC LIMIT ? OFFSET ?`,
|
|
limit, offset)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
|
|
var jobs []Job
|
|
for rows.Next() {
|
|
var j Job
|
|
var started, finished sql.NullTime
|
|
var logFile, errMsg, errCode sql.NullString
|
|
if err := rows.Scan(&j.ID, &j.SyncPairID, &j.TriggerType, &j.Status,
|
|
&started, &finished, &logFile, &errMsg, &errCode, &j.CreatedAt); err != nil {
|
|
return nil, err
|
|
}
|
|
if started.Valid {
|
|
j.StartedAt = &started.Time
|
|
}
|
|
if finished.Valid {
|
|
j.FinishedAt = &finished.Time
|
|
}
|
|
if logFile.Valid {
|
|
j.LogFile = &logFile.String
|
|
}
|
|
if errMsg.Valid {
|
|
j.ErrorMessage = &errMsg.String
|
|
}
|
|
if errCode.Valid {
|
|
j.ErrorCode = &errCode.String
|
|
}
|
|
jobs = append(jobs, j)
|
|
}
|
|
return jobs, rows.Err()
|
|
}
|
|
|
|
func (r *JobRepository) UpdateStatus(id int64, status string) error {
|
|
var query string
|
|
var args []interface{}
|
|
switch status {
|
|
case "running", "waking_up":
|
|
query = "UPDATE jobs SET status = ?, started_at = COALESCE(started_at, CURRENT_TIMESTAMP) WHERE id = ?"
|
|
args = []interface{}{status, id}
|
|
case "success", "failed", "cancelled":
|
|
query = "UPDATE jobs SET status = ?, finished_at = CURRENT_TIMESTAMP WHERE id = ?"
|
|
args = []interface{}{status, id}
|
|
default:
|
|
query = "UPDATE jobs SET status = ? WHERE id = ?"
|
|
args = []interface{}{status, id}
|
|
}
|
|
_, err := r.db.Exec(query, args...)
|
|
return err
|
|
}
|
|
|
|
func (r *JobRepository) SetLogFile(id int64, path string) error {
|
|
_, err := r.db.Exec("UPDATE jobs SET log_file = ? WHERE id = ?", path, id)
|
|
return err
|
|
}
|
|
|
|
func (r *JobRepository) SetError(id int64, code, message string) error {
|
|
_, err := r.db.Exec(
|
|
"UPDATE jobs SET error_code = ?, error_message = ? WHERE id = ?",
|
|
code, message, id,
|
|
)
|
|
return err
|
|
}
|
|
|
|
func (r *JobRepository) GetRunningBySyncPair(syncPairID int64) (*Job, error) {
|
|
var j Job
|
|
var started sql.NullTime
|
|
var logFile, errMsg, errCode sql.NullString
|
|
err := r.db.QueryRow(`
|
|
SELECT id, sync_pair_id, trigger_type, status, started_at, finished_at,
|
|
log_file, error_message, error_code, created_at FROM jobs
|
|
WHERE sync_pair_id = ? AND status IN ('queued','waking_up','running')
|
|
ORDER BY created_at DESC LIMIT 1`, syncPairID).Scan(
|
|
&j.ID, &j.SyncPairID, &j.TriggerType, &j.Status, &started,
|
|
&j.FinishedAt, &logFile, &errMsg, &errCode, &j.CreatedAt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if started.Valid {
|
|
j.StartedAt = &started.Time
|
|
}
|
|
if logFile.Valid {
|
|
j.LogFile = &logFile.String
|
|
}
|
|
if errMsg.Valid {
|
|
j.ErrorMessage = &errMsg.String
|
|
}
|
|
if errCode.Valid {
|
|
j.ErrorCode = &errCode.String
|
|
}
|
|
return &j, nil
|
|
}
|
|
|
|
func (r *JobRepository) Count() (int64, error) {
|
|
var n int64
|
|
err := r.db.QueryRow("SELECT COUNT(*) FROM jobs").Scan(&n)
|
|
return n, err
|
|
}
|
|
|
|
func (r *JobRepository) DeleteFinishedBefore(before time.Time) (int64, error) {
|
|
res, err := r.db.Exec("DELETE FROM jobs WHERE finished_at IS NOT NULL AND finished_at < ?", before)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return res.RowsAffected()
|
|
}
|