mirror of https://github.com/mindoc-org/mindoc.git
49 lines
804 B
Go
49 lines
804 B
Go
package commands
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/astaxie/beego/logs"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/mindoc-org/mindoc/conf"
|
|
)
|
|
|
|
//检查最新版本.
|
|
func CheckUpdate() {
|
|
|
|
resp, err := http.Get("https://api.github.com/repos/lifei6671/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"`
|
|
}
|
|
|
|
err = json.Unmarshal(body, &result)
|
|
fmt.Println("MinDoc current version => ", conf.VERSION)
|
|
if err != nil {
|
|
logs.Error("CheckUpdate => ", err)
|
|
os.Exit(0)
|
|
}
|
|
|
|
if len(result) > 0 {
|
|
fmt.Println("MinDoc last version => ", result[0].Name)
|
|
}
|
|
|
|
os.Exit(0)
|
|
|
|
}
|