mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
147 lines
3.2 KiB
Go
147 lines
3.2 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
|
|
_ "github.com/jackc/pgx/v4/stdlib"
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
type Application struct {
|
|
ID int
|
|
PublicURL string
|
|
Online bool
|
|
}
|
|
|
|
func main() {
|
|
if err := godotenv.Load(); err != nil {
|
|
fmt.Println("No env vars found")
|
|
}
|
|
|
|
dbURL := os.Getenv("DATABASE_URL")
|
|
if dbURL == "" {
|
|
panic("DATABASE_URL not set")
|
|
}
|
|
|
|
db, err := sql.Open("pgx", dbURL)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("Database connection failed: %v\n", err))
|
|
}
|
|
defer db.Close()
|
|
|
|
go func() {
|
|
deletionTicker := time.NewTicker(1 * time.Hour)
|
|
defer deletionTicker.Stop()
|
|
|
|
for range deletionTicker.C {
|
|
if err := deleteOldEntries(db); err != nil {
|
|
fmt.Printf("Error deleting old entries: %v\n", err)
|
|
}
|
|
}
|
|
}()
|
|
|
|
ticker := time.NewTicker(1 * time.Second)
|
|
defer ticker.Stop()
|
|
|
|
client := &http.Client{
|
|
Timeout: 4 * time.Second,
|
|
}
|
|
|
|
for now := range ticker.C {
|
|
if now.Second()%10 != 0 {
|
|
continue
|
|
}
|
|
|
|
apps := getApplications(db)
|
|
checkAndUpdateStatus(db, client, apps)
|
|
}
|
|
}
|
|
|
|
func deleteOldEntries(db *sql.DB) error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
res, err := db.ExecContext(ctx,
|
|
`DELETE FROM uptime_history WHERE "createdAt" < now() - interval '30 days'`)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
affected, _ := res.RowsAffected()
|
|
fmt.Printf("Deleted %d old entries from uptime_history\n", affected)
|
|
return nil
|
|
}
|
|
|
|
func getApplications(db *sql.DB) []Application {
|
|
rows, err := db.Query(`
|
|
SELECT id, "publicURL", online
|
|
FROM application
|
|
WHERE "publicURL" IS NOT NULL
|
|
`)
|
|
if err != nil {
|
|
fmt.Printf("Error fetching applications: %v\n", err)
|
|
return nil
|
|
}
|
|
defer rows.Close()
|
|
|
|
var apps []Application
|
|
for rows.Next() {
|
|
var app Application
|
|
err := rows.Scan(&app.ID, &app.PublicURL, &app.Online)
|
|
if err != nil {
|
|
fmt.Printf("Error scanning row: %v\n", err)
|
|
continue
|
|
}
|
|
apps = append(apps, app)
|
|
}
|
|
return apps
|
|
}
|
|
|
|
func checkAndUpdateStatus(db *sql.DB, client *http.Client, apps []Application) {
|
|
for _, app := range apps {
|
|
// Context for HTTP request
|
|
httpCtx, httpCancel := context.WithTimeout(context.Background(), 4*time.Second)
|
|
defer httpCancel()
|
|
|
|
req, err := http.NewRequestWithContext(httpCtx, "HEAD", app.PublicURL, nil)
|
|
if err != nil {
|
|
fmt.Printf("Error creating request: %v\n", err)
|
|
continue
|
|
}
|
|
|
|
resp, err := client.Do(req)
|
|
isOnline := false
|
|
if err == nil && resp.StatusCode >= 200 && resp.StatusCode < 300 {
|
|
isOnline = true
|
|
}
|
|
|
|
// Create a new context for database operations with a separate timeout
|
|
dbCtx, dbCancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer dbCancel()
|
|
|
|
// Update application status
|
|
_, err = db.ExecContext(dbCtx,
|
|
`UPDATE application SET online = $1 WHERE id = $2`,
|
|
isOnline,
|
|
app.ID,
|
|
)
|
|
if err != nil {
|
|
fmt.Printf("Update failed for app %d: %v\n", app.ID, err)
|
|
}
|
|
|
|
// Insert into uptime_history
|
|
_, err = db.ExecContext(dbCtx,
|
|
`INSERT INTO uptime_history ("applicationId", online, "createdAt") VALUES ($1, $2, now())`,
|
|
app.ID,
|
|
isOnline,
|
|
)
|
|
if err != nil {
|
|
fmt.Printf("Insert into uptime_history failed for app %d: %v\n", app.ID, err)
|
|
}
|
|
}
|
|
}
|