mindoc/commands/update.go

49 lines
801 B
Go
Raw Normal View History

2017-05-05 18:02:52 +08:00
package commands
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"github.com/astaxie/beego"
2017-06-14 09:23:29 +08:00
"github.com/lifei6671/mindoc/conf"
2017-05-05 18:02:52 +08:00
)
//检查最新版本.
func CheckUpdate() {
2017-06-14 09:16:18 +08:00
resp, err := http.Get("https://api.github.com/repos/lifei6671/mindoc/tags")
if err != nil {
beego.Error("CheckUpdate => ", err)
os.Exit(1)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
beego.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)
2017-06-02 16:44:44 +08:00
fmt.Println("MinDoc current version => ", conf.VERSION)
if err != nil {
beego.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
}