api: add version checking

This commit is contained in:
Adhityaa Chandrasekar 2018-08-16 23:45:59 +05:30
parent 9f14a9389c
commit 03e0b11e4e
3 changed files with 83 additions and 0 deletions

4
api/constants.go Normal file
View File

@ -0,0 +1,4 @@
package main
var edition = "ce"
var version = "v1.0.0"

View File

@ -10,6 +10,7 @@ func main() {
exitIfError(oauthConfigure()) exitIfError(oauthConfigure())
exitIfError(markdownRendererCreate()) exitIfError(markdownRendererCreate())
exitIfError(sigintCleanupSetup()) exitIfError(sigintCleanupSetup())
exitIfError(versionCheckStart())
exitIfError(routesServe()) exitIfError(routesServe())
} }

78
api/version.go Normal file
View File

@ -0,0 +1,78 @@
package main
import (
"bytes"
"encoding/json"
"io/ioutil"
"net/http"
"net/url"
"os"
"time"
)
func versionCheckStart() error {
go func() {
printedError := false
errorCount := 0
for {
time.Sleep(5 * time.Minute)
data := url.Values{
"origin": {os.Getenv("ORIGIN")},
"edition": {edition},
"version": {version},
}
resp, err := http.Post("https://version.commento.io/api/check", "application/x-www-form-urlencoded", bytes.NewBufferString(data.Encode()))
if err != nil {
errorCount++
// print the error only once; we don't want to spam the logs with this
// every five minutes
if !printedError && errorCount > 5 {
logger.Errorf("error checking version: %v", err)
printedError = true
}
continue
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
errorCount++
if !printedError && errorCount > 5 {
logger.Errorf("error reading body: %s", err)
printedError = true
}
continue
}
type response struct {
Success bool `json:"success"`
Message string `json:"message"`
Latest string `json:"latest"`
NewUpdate bool `json:"newUpdate"`
}
r := response{}
json.Unmarshal(body, &r)
if r.Success == false {
errorCount++
if !printedError && errorCount > 5 {
logger.Errorf("error checking version: %s", r.Message)
printedError = true
}
continue
}
if r.NewUpdate {
logger.Infof("New update available! Latest version: %s", r.Latest)
}
errorCount = 0
printedError = false
}
}()
return nil
}