Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
97f41285c3 | |||
72430a2d8e | |||
b87065b548 | |||
d86d54d2ec | |||
8d77819f57 | |||
7029d039a3 |
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
target*
|
||||
source*
|
||||
go-gluon-publish
|
8
main.go
8
main.go
@ -19,9 +19,9 @@ func main() {
|
||||
sdir := *source_dir
|
||||
tdir := *target_dir
|
||||
br := *branch
|
||||
|
||||
var source_dir_branch string = sdir + br + "/"
|
||||
var target_dir_branch string = tdir + br + "/"
|
||||
version := readVersions(*branch)
|
||||
var source_dir_branch string = sdir + br + "/images/"
|
||||
var target_dir_branch string = tdir + br
|
||||
|
||||
if is_firmware_folder(source_dir_branch) {
|
||||
//generate manifest file for branch
|
||||
@ -31,7 +31,7 @@ func main() {
|
||||
log.Println("Error generating Manifest file: ", err)
|
||||
}
|
||||
}
|
||||
release_branch(*branch, source_dir_branch, target_dir_branch, *dryrun)
|
||||
release_branch(*branch, source_dir_branch, target_dir_branch, *dryrun, version)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@ func split_filenames(files []fs.FileInfo, dir string) []Files {
|
||||
func build_manifest(files []Files, dir string) error {
|
||||
// Datei zum Schreiben öffnen
|
||||
release := strings.Split(files[0].Release, "-")
|
||||
file, err := os.Create(dir + release[0] + ".manifest")
|
||||
file, err := os.Create(dir + release[1] + ".manifest")
|
||||
if err != nil {
|
||||
fmt.Println("error creating manifest file")
|
||||
return err
|
||||
@ -72,7 +72,7 @@ func build_manifest(files []Files, dir string) error {
|
||||
// Datum im gewünschten Format formatieren
|
||||
formatted := now.Format("2006-01-02 15:04:05-07:00")
|
||||
|
||||
branch_line := "BRANCH=" + release[0] + "\n"
|
||||
branch_line := "BRANCH=" + release[1] + "\n"
|
||||
date_line := "DATE=" + formatted + "\n"
|
||||
prio_line := "PRIORITY=0" + "\n"
|
||||
|
||||
@ -104,6 +104,6 @@ func build_manifest(files []Files, dir string) error {
|
||||
return err
|
||||
}
|
||||
}
|
||||
log.Println("Manifest file " + release[0] + ".manifest" + " generated")
|
||||
log.Println("Manifest file " + release[1] + ".manifest" + " generated")
|
||||
return err
|
||||
}
|
||||
|
87
release.go
87
release.go
@ -1,23 +1,50 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func release_branch(branch string, source_dir string, target_dir string, dryrun bool) {
|
||||
checkOldFolder, _ := os.ReadDir(source_dir)
|
||||
checkNewFolder, _ := os.ReadDir(target_dir)
|
||||
func release_branch(b string, sDir string, tDir string, dryrun bool, v string) {
|
||||
check_sDir, _ := os.ReadDir(sDir)
|
||||
check_tDir, _ := os.ReadDir(tDir)
|
||||
var newImages bool = false
|
||||
if len(checkOldFolder) > 0 {
|
||||
if len(check_sDir) > 0 {
|
||||
newImages = true
|
||||
}
|
||||
sVersion := GetGluonVersion(sDir)
|
||||
tVersion := GetGluonVersion(tDir)
|
||||
fmt.Println("Target Version:", b, tVersion)
|
||||
fmt.Println("Source Version:", b, sVersion)
|
||||
fmt.Println("Wanted Version:", b, v)
|
||||
//check wanted version in target
|
||||
if tVersion == v {
|
||||
log.Println(b, "wanted version is already published!")
|
||||
os.Exit(0)
|
||||
}
|
||||
log.Println(b, "published version is outdated, try to update from source folder")
|
||||
if sVersion != v {
|
||||
log.Println(b, "wanted Version is not availible in source folder")
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
if newImages {
|
||||
// delete old firmware files in public folder
|
||||
for _, file := range checkNewFolder {
|
||||
// if we are in stable branch, move images to archive
|
||||
if b == "stable" {
|
||||
err := os.Rename(tDir+"/*", tDir+"/archive/"+v)
|
||||
if err != nil {
|
||||
log.Fatalln(err)
|
||||
}
|
||||
} else {
|
||||
for _, file := range check_tDir {
|
||||
if !(dryrun) {
|
||||
err := os.RemoveAll(target_dir + file.Name())
|
||||
err := os.RemoveAll(tDir + "/" + file.Name())
|
||||
if err != nil {
|
||||
log.Println("error deleting file: ", err)
|
||||
} else {
|
||||
@ -27,11 +54,12 @@ func release_branch(branch string, source_dir string, target_dir string, dryrun
|
||||
log.Println("DRYRUN: delete folder :", file.Name())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//move new files to folder
|
||||
for _, file := range checkOldFolder {
|
||||
for _, file := range check_sDir {
|
||||
if !(dryrun) {
|
||||
os.Rename(source_dir+file.Name(), target_dir+file.Name())
|
||||
os.Rename(sDir+file.Name(), tDir+file.Name())
|
||||
log.Println("moved file: ", file.Name())
|
||||
} else {
|
||||
log.Println("DRYRUN: move folder: ", file.Name())
|
||||
@ -39,3 +67,46 @@ func release_branch(branch string, source_dir string, target_dir string, dryrun
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func GetGluonVersion(path string) string {
|
||||
image_folder := path + "/sysupgrade/"
|
||||
files, err := filepath.Glob(filepath.Join(image_folder, "gluon-tdf-*"))
|
||||
if err != nil {
|
||||
fmt.Println("Error reading directory: ", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
if len(files) > 0 {
|
||||
fileName := filepath.Base(files[0])
|
||||
parts := strings.Split(fileName, "-")
|
||||
if len(parts) >= 4 {
|
||||
version := parts[2]
|
||||
return version
|
||||
}
|
||||
}
|
||||
|
||||
return ""
|
||||
}
|
||||
|
||||
func readVersions(branch string) string {
|
||||
filePath := "/srv/fwuploads-tmp/bin/release_state.json"
|
||||
v, err := ioutil.ReadFile(filePath)
|
||||
if err != nil {
|
||||
log.Fatalln("Error reading version JSON file!")
|
||||
}
|
||||
|
||||
var data Versions
|
||||
err = json.Unmarshal(v, &data)
|
||||
if err != nil {
|
||||
log.Fatalln("Error in JSON data!")
|
||||
}
|
||||
switch branch {
|
||||
case "stable":
|
||||
return data.Stable
|
||||
case "beta":
|
||||
return data.Beta
|
||||
case "experimental":
|
||||
return data.Experimental
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
5
release_state.json
Normal file
5
release_state.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"stable": "v2022.1.4",
|
||||
"beta": "v2022.1.5",
|
||||
"experimental": "v2022.1.4"
|
||||
}
|
Loading…
Reference in New Issue
Block a user