5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 14:52:30 +00:00
matterbridge/vendor/github.com/mattermost/platform/model/job.go

128 lines
3.2 KiB
Go
Raw Normal View History

2017-08-16 21:37:37 +00:00
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
2016-06-23 18:28:05 +00:00
// See License.txt for license information.
package model
import (
2017-08-16 21:37:37 +00:00
"encoding/json"
"io"
"net/http"
2018-02-08 23:11:04 +00:00
"time"
2016-06-23 18:28:05 +00:00
)
2017-08-16 21:37:37 +00:00
const (
2018-02-08 23:11:04 +00:00
JOB_TYPE_DATA_RETENTION = "data_retention"
JOB_TYPE_MESSAGE_EXPORT = "message_export"
JOB_TYPE_ELASTICSEARCH_POST_INDEXING = "elasticsearch_post_indexing"
JOB_TYPE_ELASTICSEARCH_POST_AGGREGATION = "elasticsearch_post_aggregation"
JOB_TYPE_LDAP_SYNC = "ldap_sync"
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
JOB_STATUS_PENDING = "pending"
JOB_STATUS_IN_PROGRESS = "in_progress"
JOB_STATUS_SUCCESS = "success"
JOB_STATUS_ERROR = "error"
JOB_STATUS_CANCEL_REQUESTED = "cancel_requested"
JOB_STATUS_CANCELED = "canceled"
)
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
type Job struct {
2018-02-08 23:11:04 +00:00
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 map[string]string `json:"data"`
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
func (j *Job) IsValid() *AppError {
if len(j.Id) != 26 {
return NewAppError("Job.IsValid", "model.job.is_valid.id.app_error", nil, "id="+j.Id, http.StatusBadRequest)
2016-07-22 21:14:13 +00:00
}
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
if j.CreateAt == 0 {
return NewAppError("Job.IsValid", "model.job.is_valid.create_at.app_error", nil, "id="+j.Id, http.StatusBadRequest)
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
switch j.Type {
case JOB_TYPE_DATA_RETENTION:
case JOB_TYPE_ELASTICSEARCH_POST_INDEXING:
2018-02-08 23:11:04 +00:00
case JOB_TYPE_ELASTICSEARCH_POST_AGGREGATION:
case JOB_TYPE_LDAP_SYNC:
case JOB_TYPE_MESSAGE_EXPORT:
2017-08-16 21:37:37 +00:00
default:
return NewAppError("Job.IsValid", "model.job.is_valid.type.app_error", nil, "id="+j.Id, http.StatusBadRequest)
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
switch j.Status {
case JOB_STATUS_PENDING:
case JOB_STATUS_IN_PROGRESS:
case JOB_STATUS_SUCCESS:
case JOB_STATUS_ERROR:
case JOB_STATUS_CANCEL_REQUESTED:
case JOB_STATUS_CANCELED:
default:
return NewAppError("Job.IsValid", "model.job.is_valid.status.app_error", nil, "id="+j.Id, http.StatusBadRequest)
}
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
return nil
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
func (js *Job) ToJson() string {
if b, err := json.Marshal(js); err != nil {
return ""
} else {
return string(b)
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
}
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
func JobFromJson(data io.Reader) *Job {
var job Job
if err := json.NewDecoder(data).Decode(&job); err == nil {
return &job
} else {
return nil
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
}
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
func JobsToJson(jobs []*Job) string {
if b, err := json.Marshal(jobs); err != nil {
return ""
} else {
return string(b)
}
}
2016-06-23 18:28:05 +00:00
2017-08-16 21:37:37 +00:00
func JobsFromJson(data io.Reader) []*Job {
var jobs []*Job
if err := json.NewDecoder(data).Decode(&jobs); err == nil {
return jobs
} else {
return nil
}
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
func (js *Job) DataToJson() string {
if b, err := json.Marshal(js.Data); err != nil {
return ""
} else {
return string(b)
}
2016-06-23 18:28:05 +00:00
}
2017-08-16 21:37:37 +00:00
type Worker interface {
Run()
Stop()
JobChannel() chan<- Job
2016-08-15 16:47:31 +00:00
}
2017-08-16 21:37:37 +00:00
type Scheduler interface {
2018-02-08 23:11:04 +00:00
Name() string
JobType() string
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)
2016-06-23 18:28:05 +00:00
}