mindoc/commands/update.go

72 lines
1.2 KiB
Go
Raw Normal View History

2017-05-05 18:02:52 +08:00
package commands
import (
"encoding/json"
"fmt"
"github.com/mindoc-org/mindoc/models"
"io/ioutil"
"net/http"
"os"
"github.com/beego/beego/v2/client/orm"
"github.com/beego/beego/v2/core/logs"
"github.com/mindoc-org/mindoc/conf"
2017-05-05 18:02:52 +08:00
)
// 检查最新版本.
2017-05-05 18:02:52 +08:00
func CheckUpdate() {
2021-06-29 13:56:41 +08:00
fmt.Println("MinDoc current version => ", conf.VERSION)
resp, err := http.Get("https://api.github.com/repos/mindoc-org/mindoc/tags")
if err != nil {
logs.Error("CheckUpdate => ", err)
os.Exit(1)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
logs.Error("CheckUpdate => ", err)
os.Exit(1)
}
var result []*struct {
Name string `json:"name"`
2017-05-05 18:02:52 +08:00
}
err = json.Unmarshal(body, &result)
if err != nil {
logs.Error("CheckUpdate => ", err)
2017-06-02 16:44:44 +08:00
os.Exit(0)
}
2017-06-02 16:44:44 +08:00
2017-06-14 09:26:32 +08:00
if len(result) > 0 {
fmt.Println("MinDoc last version => ", result[0].Name)
}
os.Exit(0)
2017-05-31 10:52:53 +08:00
}
func Update() {
fmt.Println("Update...")
RegisterDataBase()
RegisterModel()
err := orm.RunSyncdb("default", false, true)
if err == nil {
UpdateInitialization()
} else {
panic(err.Error())
}
fmt.Println("Update Successfully!")
os.Exit(0)
}
func UpdateInitialization() {
err := models.NewOption().Update()
if err != nil {
panic(err.Error())
}
}