This commit is contained in:
parent
e8e715aa37
commit
e15992e865
@ -20,6 +20,8 @@ func Check() {
|
|||||||
|
|
||||||
apiUrl := fmt.Sprintf("%s/api/v1/repos/%s/%s/releases/latest", baseUrl, repoOwner, repoName)
|
apiUrl := fmt.Sprintf("%s/api/v1/repos/%s/%s/releases/latest", baseUrl, repoOwner, repoName)
|
||||||
|
|
||||||
|
log.Info("Initiating PIS Check")
|
||||||
|
|
||||||
resp, err := http.Get(apiUrl)
|
resp, err := http.Get(apiUrl)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("Error GETting Gitea API", zap.Error(err))
|
log.Error("Error GETting Gitea API", zap.Error(err))
|
||||||
|
@ -9,10 +9,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.fjla.uk/owlboard/timetable-mgr/dbAccess"
|
|
||||||
"git.fjla.uk/owlboard/timetable-mgr/log"
|
|
||||||
"go.uber.org/zap"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -50,24 +46,24 @@ func runUpdate(tarballUrl string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println(&pisSlice)
|
fmt.Println(&pisSlice)
|
||||||
|
/*
|
||||||
|
err = dbAccess.DropCollection(dbAccess.PisCollection)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
err = dbAccess.DropCollection(dbAccess.PisCollection)
|
count, err := dbAccess.PutPisData(pisSlice)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
count, err := dbAccess.PutPisData(pisSlice)
|
log.Info("Insterted new PIS Data", zap.Int64("PIS Codes", count))
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Info("Insterted new PIS Data", zap.Int64("PIS Codes", count))
|
|
||||||
|
|
||||||
err = dbAccess.CreatePisIndeces()
|
|
||||||
if err != nil {
|
|
||||||
log.Error("Failed to create PIS Indeces, poor performance expected", zap.Error(err))
|
|
||||||
}
|
|
||||||
|
|
||||||
|
err = dbAccess.CreatePisIndeces()
|
||||||
|
if err != nil {
|
||||||
|
log.Error("Failed to create PIS Indeces, poor performance expected", zap.Error(err))
|
||||||
|
}
|
||||||
|
*/
|
||||||
// Cleanup files
|
// Cleanup files
|
||||||
cleanupFiles(destPath, extractPath)
|
cleanupFiles(destPath, extractPath)
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user