summaryrefslogtreecommitdiffstats
path: root/mattermost.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-10-15 11:16:26 -0700
committer=Corey Hulen <corey@hulen.com>2015-10-15 11:16:26 -0700
commitde717aef56dfaa0b9b676ce82d4b9d7abdb12428 (patch)
treee35cbb702a1c6d508f3295865739186a1b3f44c9 /mattermost.go
parentadc20981e2c370f09467d4fa249065d23f533a0a (diff)
downloadchat-de717aef56dfaa0b9b676ce82d4b9d7abdb12428.tar.gz
chat-de717aef56dfaa0b9b676ce82d4b9d7abdb12428.tar.bz2
chat-de717aef56dfaa0b9b676ce82d4b9d7abdb12428.zip
Marking when user ran the unit tests
Diffstat (limited to 'mattermost.go')
-rw-r--r--mattermost.go14
1 files changed, 10 insertions, 4 deletions
diff --git a/mattermost.go b/mattermost.go
index d2a0567f4..48487ee73 100644
--- a/mattermost.go
+++ b/mattermost.go
@@ -84,16 +84,16 @@ func securityAndDiagnosticsJob() {
if *utils.Cfg.ServiceSettings.EnableSecurityFixAlert {
if result := <-api.Srv.Store.System().Get(); result.Err == nil {
props := result.Data.(model.StringMap)
- lastSecurityTime, _ := strconv.ParseInt(props["LastSecurityTime"], 10, 0)
+ lastSecurityTime, _ := strconv.ParseInt(props[model.SYSTEM_LAST_SECURITY_TIME], 10, 0)
currentTime := model.GetMillis()
if (currentTime - lastSecurityTime) > 1000*60*60*24*1 {
l4g.Debug("Checking for security update from Mattermost")
- id := props["DiagnosticId"]
+ id := props[model.SYSTEM_DIAGNOSTIC_ID]
if len(id) == 0 {
id = model.NewId()
- systemId := &model.System{Name: "DiagnosticId", Value: id}
+ systemId := &model.System{Name: model.SYSTEM_DIAGNOSTIC_ID, Value: id}
<-api.Srv.Store.System().Save(systemId)
}
@@ -104,7 +104,13 @@ func securityAndDiagnosticsJob() {
v.Set(utils.PROP_DIAGNOSTIC_OS, runtime.GOOS)
v.Set(utils.PROP_DIAGNOSTIC_CATEGORY, utils.VAL_DIAGNOSTIC_CATEGORY_DEFAULT)
- systemSecurityLastTime := &model.System{Name: "LastSecurityTime", Value: strconv.FormatInt(currentTime, 10)}
+ if len(props[model.SYSTEM_RAN_UNIT_TESTS]) > 0 {
+ v.Set(utils.PROP_DIAGNOSTIC_UNIT_TESTS, "1")
+ } else {
+ v.Set(utils.PROP_DIAGNOSTIC_UNIT_TESTS, "0")
+ }
+
+ systemSecurityLastTime := &model.System{Name: model.SYSTEM_LAST_SECURITY_TIME, Value: strconv.FormatInt(currentTime, 10)}
if lastSecurityTime == 0 {
<-api.Srv.Store.System().Save(systemSecurityLastTime)
} else {