* Working on refactoring jobs service * Making more consistent with the previous existing code * Remove no longer needed functions * Making a base PeridicScheduler to use it in most of the schedulers implementations * Removing accidental complexity from on of the jobs * Removing accidental complexity from expirynotify * Fixing compilation from previous commit * Remove accidental complexity from the export_delete job * Simplifying the workers by making a reusable worker * Using simple worker for export_delete job * Simpliying export process job * Simpliying extract content job * Simpliying import delete job * Simpliying import process job * Simpliying product noticies job * Simpliying fix crt channel unreads job (only removing the uneeded register function) * Simpliying migrations job (only removing the uneeded register function) * fixup * Simpliying plugins job (only removing the uneeded register function) * Simpliying bleve indexing job (only removing the uneeded register function) * Simpliying resend invitation email job (only removing the uneeded register function) * Fixing tests * Simplifying migration tests infrastructure * Adding missed license to files * Adding an empty file to imports package to ensure this package exist even without enterprise repo * Regenerating einterfaces mocks * Adding missed license to files * Updating i18n/en.json file * help fixing enterprise tests compilation * Adding new DailyScheduler * Fixing typo and changing the waitTime type for periodic sechduler * Making the daily scheduler more generic * Adding comments to clarify not used parameters in interface scheduler interface implementations * Using merror to handle multiple errors in jobs workers * Fixing linter errors * Addressing PR review comments * Reverting go.tools.mod changes * Removing the static check for worker type in the model (moving it to the insertion of new jobs * Moving migrations job to the jobs directory * Fixing (and improving a bit) tests * Apply suggestions from code review Co-authored-by: Doug Lauder <wiggin77@warpmail.net> * Fixing enterprise tests * Removing unneeded InitWorkers/InitSchedulers calls * Fix expirenotify job when error happens * Fixing govet errors Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
107 строки
3.2 KiB
Go
107 строки
3.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
JobTypeDataRetention = "data_retention"
|
|
JobTypeMessageExport = "message_export"
|
|
JobTypeElasticsearchPostIndexing = "elasticsearch_post_indexing"
|
|
JobTypeElasticsearchPostAggregation = "elasticsearch_post_aggregation"
|
|
JobTypeBlevePostIndexing = "bleve_post_indexing"
|
|
JobTypeLdapSync = "ldap_sync"
|
|
JobTypeMigrations = "migrations"
|
|
JobTypePlugins = "plugins"
|
|
JobTypeExpiryNotify = "expiry_notify"
|
|
JobTypeProductNotices = "product_notices"
|
|
JobTypeActiveUsers = "active_users"
|
|
JobTypeImportProcess = "import_process"
|
|
JobTypeImportDelete = "import_delete"
|
|
JobTypeExportProcess = "export_process"
|
|
JobTypeExportDelete = "export_delete"
|
|
JobTypeCloud = "cloud"
|
|
JobTypeResendInvitationEmail = "resend_invitation_email"
|
|
JobTypeExtractContent = "extract_content"
|
|
|
|
JobStatusPending = "pending"
|
|
JobStatusInProgress = "in_progress"
|
|
JobStatusSuccess = "success"
|
|
JobStatusError = "error"
|
|
JobStatusCancelRequested = "cancel_requested"
|
|
JobStatusCanceled = "canceled"
|
|
JobStatusWarning = "warning"
|
|
)
|
|
|
|
var AllJobTypes = [...]string{
|
|
JobTypeDataRetention,
|
|
JobTypeMessageExport,
|
|
JobTypeElasticsearchPostIndexing,
|
|
JobTypeElasticsearchPostAggregation,
|
|
JobTypeBlevePostIndexing,
|
|
JobTypeLdapSync,
|
|
JobTypeMigrations,
|
|
JobTypePlugins,
|
|
JobTypeExpiryNotify,
|
|
JobTypeProductNotices,
|
|
JobTypeActiveUsers,
|
|
JobTypeImportProcess,
|
|
JobTypeImportDelete,
|
|
JobTypeExportProcess,
|
|
JobTypeExportDelete,
|
|
JobTypeCloud,
|
|
JobTypeExtractContent,
|
|
}
|
|
|
|
type Job struct {
|
|
Id string `json:"id"`
|
|
Type string `json:"type"`
|
|
Priority int64 `json:"priority"`
|
|
CreateAt int64 `json:"create_at"`
|
|
StartAt int64 `json:"start_at"`
|
|
LastActivityAt int64 `json:"last_activity_at"`
|
|
Status string `json:"status"`
|
|
Progress int64 `json:"progress"`
|
|
Data StringMap `json:"data"`
|
|
}
|
|
|
|
func (j *Job) IsValid() *AppError {
|
|
if !IsValidId(j.Id) {
|
|
return NewAppError("Job.IsValid", "model.job.is_valid.id.app_error", nil, "id="+j.Id, http.StatusBadRequest)
|
|
}
|
|
|
|
if j.CreateAt == 0 {
|
|
return NewAppError("Job.IsValid", "model.job.is_valid.create_at.app_error", nil, "id="+j.Id, http.StatusBadRequest)
|
|
}
|
|
|
|
switch j.Status {
|
|
case JobStatusPending:
|
|
case JobStatusInProgress:
|
|
case JobStatusSuccess:
|
|
case JobStatusError:
|
|
case JobStatusCancelRequested:
|
|
case JobStatusCanceled:
|
|
default:
|
|
return NewAppError("Job.IsValid", "model.job.is_valid.status.app_error", nil, "id="+j.Id, http.StatusBadRequest)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type Worker interface {
|
|
Run()
|
|
Stop()
|
|
JobChannel() chan<- Job
|
|
IsEnabled(cfg *Config) bool
|
|
}
|
|
|
|
type Scheduler interface {
|
|
Enabled(cfg *Config) bool
|
|
NextScheduleTime(cfg *Config, now time.Time, pendingJobs bool, lastSuccessfulJob *Job) *time.Time
|
|
ScheduleJob(cfg *Config, pendingJobs bool, lastSuccessfulJob *Job) (*Job, *AppError)
|
|
}
|