2021-05-13 00:56:31 +02:00
|
|
|
package bolt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ansible-semaphore/semaphore/db"
|
2021-05-13 15:49:32 +02:00
|
|
|
"go.etcd.io/bbolt"
|
|
|
|
"time"
|
2021-05-13 00:56:31 +02:00
|
|
|
)
|
|
|
|
|
2021-05-13 15:49:32 +02:00
|
|
|
func (d *BoltDb) CreateTask(task db.Task) (newTask db.Task, err error) {
|
|
|
|
task.Created = time.Now()
|
2021-06-24 19:45:28 +02:00
|
|
|
res, err := d.createObject(0, db.TaskProps, task)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
newTask = res.(db.Task)
|
2021-05-13 15:49:32 +02:00
|
|
|
return
|
2021-05-13 00:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *BoltDb) UpdateTask(task db.Task) error {
|
2021-05-13 21:45:54 +02:00
|
|
|
return d.updateObject(0, db.TaskProps, task)
|
2021-05-13 00:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *BoltDb) CreateTaskOutput(output db.TaskOutput) (db.TaskOutput, error) {
|
2021-05-13 21:45:54 +02:00
|
|
|
newOutput, err := d.createObject(output.TaskID, db.TaskOutputProps, output)
|
2021-05-13 15:49:32 +02:00
|
|
|
if err != nil {
|
|
|
|
return db.TaskOutput{}, err
|
|
|
|
}
|
|
|
|
return newOutput.(db.TaskOutput), nil
|
2021-05-13 00:56:31 +02:00
|
|
|
}
|
|
|
|
|
2022-01-28 11:45:31 +01:00
|
|
|
func (d *BoltDb) getTasks(projectID int, templateID *int, params db.RetrieveQueryParams) (tasksWithTpl []db.TaskWithTpl, err error) {
|
2021-06-24 19:45:28 +02:00
|
|
|
var tasks []db.Task
|
|
|
|
|
|
|
|
err = d.getObjects(0, db.TaskProps, params, func(tsk interface{}) bool {
|
|
|
|
task := tsk.(db.Task)
|
2021-05-13 15:49:32 +02:00
|
|
|
|
|
|
|
if task.ProjectID != projectID {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-28 11:45:31 +01:00
|
|
|
if templateID != nil && task.TemplateID != *templateID {
|
2021-05-13 15:49:32 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}, &tasks)
|
|
|
|
|
2021-10-13 19:14:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 15:49:32 +02:00
|
|
|
var templates = make(map[int]db.Template)
|
|
|
|
var users = make(map[int]db.User)
|
|
|
|
|
2021-06-24 19:45:28 +02:00
|
|
|
tasksWithTpl = make([]db.TaskWithTpl, len(tasks))
|
|
|
|
for i, task := range tasks {
|
2021-05-13 15:49:32 +02:00
|
|
|
tpl, ok := templates[task.TemplateID]
|
|
|
|
if !ok {
|
2022-01-28 11:45:31 +01:00
|
|
|
if templateID == nil {
|
2022-01-29 10:14:42 +01:00
|
|
|
tpl, _ = d.getRawTemplate(task.ProjectID, task.TemplateID)
|
2021-10-13 16:07:22 +02:00
|
|
|
} else {
|
2022-01-29 10:14:42 +01:00
|
|
|
tpl, _ = d.getRawTemplate(task.ProjectID, *templateID)
|
2021-05-13 15:49:32 +02:00
|
|
|
}
|
|
|
|
templates[task.TemplateID] = tpl
|
|
|
|
}
|
2021-06-24 19:45:28 +02:00
|
|
|
tasksWithTpl[i] = db.TaskWithTpl{Task: task}
|
|
|
|
tasksWithTpl[i].TemplatePlaybook = tpl.Playbook
|
|
|
|
tasksWithTpl[i].TemplateAlias = tpl.Alias
|
2021-10-13 21:26:19 +02:00
|
|
|
tasksWithTpl[i].TemplateType = tpl.Type
|
2021-05-13 15:49:32 +02:00
|
|
|
if task.UserID != nil {
|
|
|
|
usr, ok := users[*task.UserID]
|
|
|
|
if !ok {
|
|
|
|
usr, err = d.GetUser(*task.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
users[*task.UserID] = usr
|
|
|
|
}
|
2021-06-24 19:45:28 +02:00
|
|
|
tasksWithTpl[i].UserName = &usr.Name
|
2021-05-13 15:49:32 +02:00
|
|
|
}
|
2021-10-20 13:56:29 +02:00
|
|
|
|
|
|
|
err = tasksWithTpl[i].Fill(d)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2021-05-13 00:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *BoltDb) GetTask(projectID int, taskID int) (task db.Task, err error) {
|
2021-05-13 21:45:54 +02:00
|
|
|
err = d.getObject(0, db.TaskProps, intObjectID(taskID), &task)
|
2021-05-13 00:56:31 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2021-10-20 13:56:29 +02:00
|
|
|
|
2021-05-13 15:49:32 +02:00
|
|
|
if task.ProjectID != projectID {
|
|
|
|
task = db.Task{}
|
2021-05-13 00:56:31 +02:00
|
|
|
err = db.ErrNotFound
|
2021-10-20 13:56:29 +02:00
|
|
|
return
|
2021-05-13 00:56:31 +02:00
|
|
|
}
|
2021-10-20 13:56:29 +02:00
|
|
|
|
2021-05-13 00:56:31 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-28 11:45:31 +01:00
|
|
|
func (d *BoltDb) GetTemplateTasks(projectID int, templateID int, params db.RetrieveQueryParams) ([]db.TaskWithTpl, error) {
|
|
|
|
return d.getTasks(projectID, &templateID, params)
|
2021-05-13 00:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *BoltDb) GetProjectTasks(projectID int, params db.RetrieveQueryParams) ([]db.TaskWithTpl, error) {
|
|
|
|
return d.getTasks(projectID, nil, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *BoltDb) DeleteTaskWithOutputs(projectID int, taskID int) (err error) {
|
|
|
|
// check if task exists in the project
|
|
|
|
_, err = d.GetTask(projectID, taskID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 21:45:54 +02:00
|
|
|
err = d.deleteObject(0, db.TaskProps, intObjectID(taskID))
|
2021-05-13 00:56:31 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-24 19:45:28 +02:00
|
|
|
_ = d.db.Update(func(tx *bbolt.Tx) error {
|
2021-05-13 21:45:54 +02:00
|
|
|
return tx.DeleteBucket(makeBucketId(db.TaskOutputProps, taskID))
|
2021-05-13 15:49:32 +02:00
|
|
|
})
|
|
|
|
|
2021-05-13 00:56:31 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 15:49:32 +02:00
|
|
|
func (d *BoltDb) GetTaskOutputs(projectID int, taskID int) (outputs []db.TaskOutput, err error) {
|
2021-05-13 00:56:31 +02:00
|
|
|
// check if task exists in the project
|
|
|
|
_, err = d.GetTask(projectID, taskID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-13 21:45:54 +02:00
|
|
|
err = d.getObjects(taskID, db.TaskOutputProps, db.RetrieveQueryParams{}, nil, &outputs)
|
2021-05-13 15:49:32 +02:00
|
|
|
|
2021-05-13 00:56:31 +02:00
|
|
|
return
|
|
|
|
}
|