summaryrefslogtreecommitdiffstats
path: root/app/job.go
blob: c625ce15fd5eaae34ea0348a529bb25ae1833735 (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
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package app

import (
	"github.com/mattermost/platform/model"
)

func GetJob(id string) (*model.Job, *model.AppError) {
	if result := <-Srv.Store.Job().Get(id); result.Err != nil {
		return nil, result.Err
	} else {
		return result.Data.(*model.Job), nil
	}
}

func GetJobsByTypePage(jobType string, page int, perPage int) ([]*model.Job, *model.AppError) {
	return GetJobsByType(jobType, page*perPage, perPage)
}

func GetJobsByType(jobType string, offset int, limit int) ([]*model.Job, *model.AppError) {
	if result := <-Srv.Store.Job().GetAllByTypePage(jobType, offset, limit); result.Err != nil {
		return nil, result.Err
	} else {
		return result.Data.([]*model.Job), nil
	}
}