mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Adding files commiting to do something else * Stashing to merge master * Adding files, commit of working code, pre-test * Changing up logic according to new conversations, adding template and functions for 7 day and 14 day emails * Add subscription active check * Add a comment around subscription status * Fix i18n * Update jobs/cloud/worker.go Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com> * Add a check for cloud license and exit early * remove log * Update jobs/cloud/worker.go Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com> * Remove case for 91st day * Change var name * Fix i18n * Change value for dates in email * Add email template and send logic for support email on 30th day of arrears * Fix EETests? * add one to the day so the count starts on first day of next cycle * use the license for the enabled check * Moved scheduler and worker into enterprise * Add the user count to the support email * remove a line * Use the date for the 14 day email * Fix for design review * More font changes * Fixes for PR * Change feature flag name * Add cloud_interface to einterfaces/jobs * Add back & for running job server * Remove unused constant Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com> Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package jobs
|
|
|
|
import (
|
|
ejobs "github.com/mattermost/mattermost-server/v5/einterfaces/jobs"
|
|
tjobs "github.com/mattermost/mattermost-server/v5/jobs/interfaces"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/services/configservice"
|
|
"github.com/mattermost/mattermost-server/v5/store"
|
|
)
|
|
|
|
type JobServer struct {
|
|
ConfigService configservice.ConfigService
|
|
Store store.Store
|
|
Workers *Workers
|
|
Schedulers *Schedulers
|
|
|
|
DataRetentionJob ejobs.DataRetentionJobInterface
|
|
MessageExportJob ejobs.MessageExportJobInterface
|
|
ElasticsearchAggregator ejobs.ElasticsearchAggregatorInterface
|
|
ElasticsearchIndexer tjobs.IndexerJobInterface
|
|
LdapSync ejobs.LdapSyncInterface
|
|
Migrations tjobs.MigrationsJobInterface
|
|
Plugins tjobs.PluginsJobInterface
|
|
BleveIndexer tjobs.IndexerJobInterface
|
|
ExpiryNotify tjobs.ExpiryNotifyJobInterface
|
|
ProductNotices tjobs.ProductNoticesJobInterface
|
|
ActiveUsers tjobs.ActiveUsersJobInterface
|
|
Cloud ejobs.CloudJobInterface
|
|
}
|
|
|
|
func NewJobServer(configService configservice.ConfigService, store store.Store) *JobServer {
|
|
return &JobServer{
|
|
ConfigService: configService,
|
|
Store: store,
|
|
}
|
|
}
|
|
|
|
func (srv *JobServer) Config() *model.Config {
|
|
return srv.ConfigService.Config()
|
|
}
|
|
|
|
func (srv *JobServer) StartWorkers() {
|
|
srv.Workers = srv.Workers.Start()
|
|
}
|
|
|
|
func (srv *JobServer) StartSchedulers() {
|
|
srv.Schedulers = srv.Schedulers.Start()
|
|
}
|
|
|
|
func (srv *JobServer) StopWorkers() {
|
|
if srv.Workers != nil {
|
|
srv.Workers.Stop()
|
|
}
|
|
}
|
|
|
|
func (srv *JobServer) StopSchedulers() {
|
|
if srv.Schedulers != nil {
|
|
srv.Schedulers.Stop()
|
|
}
|
|
}
|