summaryrefslogtreecommitdiffstats
path: root/jobs/jobs.go
blob: 8c84f4eea3c46bb2a5df1252069c53594ccb82ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package jobs

import (
	"sync"

	l4g "github.com/alecthomas/log4go"
	ejobs "github.com/mattermost/platform/einterfaces/jobs"
	"github.com/mattermost/platform/model"
	"github.com/mattermost/platform/store"
	"github.com/mattermost/platform/utils"
)

type Jobs struct {
	startOnce sync.Once

	DataRetention model.Job
	// SearchIndexing model.Job

	listenerId string
}

func InitJobs(s store.Store) *Jobs {
	jobs := &Jobs{
	// 	SearchIndexing: MakeTestJob(s, "SearchIndexing"),
	}

	if dataRetentionInterface := ejobs.GetDataRetentionInterface(); dataRetentionInterface != nil {
		jobs.DataRetention = dataRetentionInterface.MakeJob(s)
	}

	return jobs
}

func (jobs *Jobs) Start() *Jobs {
	l4g.Info("Starting jobs")

	jobs.startOnce.Do(func() {
		if jobs.DataRetention != nil && *utils.Cfg.DataRetentionSettings.Enable {
			go jobs.DataRetention.Run()
		}

		// go jobs.SearchIndexing.Run()
	})

	jobs.listenerId = utils.AddConfigListener(jobs.handleConfigChange)

	return jobs
}

func (jobs *Jobs) handleConfigChange(oldConfig *model.Config, newConfig *model.Config) {
	if jobs.DataRetention != nil {
		if !*oldConfig.DataRetentionSettings.Enable && *newConfig.DataRetentionSettings.Enable {
			go jobs.DataRetention.Run()
		} else if *oldConfig.DataRetentionSettings.Enable && !*newConfig.DataRetentionSettings.Enable {
			jobs.DataRetention.Stop()
		}
	}
}

func (jobs *Jobs) Stop() *Jobs {
	utils.RemoveConfigListener(jobs.listenerId)

	if jobs.DataRetention != nil && *utils.Cfg.DataRetentionSettings.Enable {
		jobs.DataRetention.Stop()
	}
	// jobs.SearchIndexing.Stop()

	l4g.Info("Stopped jobs")

	return jobs
}