49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/charmbracelet/log"
|
|
_ "github.com/lib/pq"
|
|
|
|
"git.andr3h3nriqu3s.com/andr3/fyp/logic/db"
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/models"
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/stats"
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/tasks"
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/tasks/runner"
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/users"
|
|
. "git.andr3h3nriqu3s.com/andr3/fyp/logic/utils"
|
|
)
|
|
|
|
func main() {
|
|
|
|
config := LoadConfig()
|
|
log.Info("Config loaded!", "config", config)
|
|
|
|
psqlInfo := fmt.Sprintf("host=%s port=%d user=%s "+
|
|
"password=%s dbname=%s sslmode=disable",
|
|
config.DbInfo.Host, config.DbInfo.Port, config.DbInfo.User, config.DbInfo.Password, config.DbInfo.Dbname)
|
|
|
|
db := db.StartUp(psqlInfo)
|
|
defer db.Close()
|
|
|
|
config.GenerateToken(db)
|
|
|
|
//TODO check if file structure exists to save data
|
|
handle := NewHandler(db, config)
|
|
|
|
StartRunners(db, config, handle)
|
|
|
|
config.Cleanup(db)
|
|
|
|
// TODO Handle this in other way
|
|
handle.ReadTypesFilesApi("/savedData/", ".", []string{".png", ".jpeg"}, []string{"image/png", "image/jpeg"})
|
|
|
|
UsersEndpints(db, handle)
|
|
HandleModels(handle)
|
|
HandleTasks(handle)
|
|
HandleStats(handle)
|
|
|
|
handle.Startup()
|
|
}
|