mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 10:45:45 +01:00
Merge branch 'job_service' into switch_job_service
This commit is contained in:
commit
fee7f6ddef
@ -312,7 +312,7 @@ func GetRepJobByPolicy(policyID int64) ([]*models.RepJob, error) {
|
|||||||
|
|
||||||
// FilterRepJobs ...
|
// FilterRepJobs ...
|
||||||
func FilterRepJobs(policyID int64, repository string, status []string, startTime,
|
func FilterRepJobs(policyID int64, repository string, status []string, startTime,
|
||||||
endTime *time.Time, limit, offset int64) ([]*models.RepJob, int64, error) {
|
endTime *time.Time, limit, offset int64, operations ...string) ([]*models.RepJob, int64, error) {
|
||||||
|
|
||||||
jobs := []*models.RepJob{}
|
jobs := []*models.RepJob{}
|
||||||
|
|
||||||
@ -333,6 +333,9 @@ func FilterRepJobs(policyID int64, repository string, status []string, startTime
|
|||||||
if endTime != nil {
|
if endTime != nil {
|
||||||
qs = qs.Filter("CreationTime__lte", endTime)
|
qs = qs.Filter("CreationTime__lte", endTime)
|
||||||
}
|
}
|
||||||
|
if len(operations) != 0 {
|
||||||
|
qs = qs.Filter("Operation__in", operations)
|
||||||
|
}
|
||||||
|
|
||||||
total, err := qs.Count()
|
total, err := qs.Count()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -31,4 +31,6 @@ const (
|
|||||||
JobRetrying string = "retrying"
|
JobRetrying string = "retrying"
|
||||||
//JobContinue is the status returned by statehandler to tell statemachine to move to next possible state based on trasition table.
|
//JobContinue is the status returned by statehandler to tell statemachine to move to next possible state based on trasition table.
|
||||||
JobContinue string = "_continue"
|
JobContinue string = "_continue"
|
||||||
|
// JobScheduled ...
|
||||||
|
JobScheduled string = "scheduled"
|
||||||
)
|
)
|
||||||
|
@ -26,6 +26,8 @@ const (
|
|||||||
RepOpTransfer string = "transfer"
|
RepOpTransfer string = "transfer"
|
||||||
//RepOpDelete represents the operation of a job to remove repository from a remote registry/harbor instance.
|
//RepOpDelete represents the operation of a job to remove repository from a remote registry/harbor instance.
|
||||||
RepOpDelete string = "delete"
|
RepOpDelete string = "delete"
|
||||||
|
//RepOpSchedule represents the operation of a job to schedule the real replication process
|
||||||
|
RepOpSchedule string = "schedule"
|
||||||
//UISecretCookie is the cookie name to contain the UI secret
|
//UISecretCookie is the cookie name to contain the UI secret
|
||||||
UISecretCookie string = "secret"
|
UISecretCookie string = "secret"
|
||||||
//RepTargetTable is the table name for replication targets
|
//RepTargetTable is the table name for replication targets
|
||||||
|
@ -81,7 +81,7 @@ func (r *Replicator) replicate() error {
|
|||||||
r.logger.Errorf("failed to send the replication request to %s: %v", r.url, err)
|
r.logger.Errorf("failed to send the replication request to %s: %v", r.url, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
r.logger.Infof("the replication request has been sent to %s successfully", r.url)
|
r.logger.Info("the replication request has been sent successfully")
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -96,22 +96,6 @@ func (ctl *DefaultController) Init() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
policies, err := ctl.policyManager.GetPolicies(models.QueryParameter{})
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if policies != nil && len(policies.Policies) > 0 {
|
|
||||||
for _, policy := range policies.Policies {
|
|
||||||
if policy.Trigger == nil || policy.Trigger.Kind != replication.TriggerKindSchedule {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := ctl.triggerManager.SetupTrigger(policy); err != nil {
|
|
||||||
log.Errorf("failed to setup trigger for policy %v: %v", policy, err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Initialize sourcer
|
//Initialize sourcer
|
||||||
ctl.sourcer.Init()
|
ctl.sourcer.Init()
|
||||||
|
|
||||||
|
@ -19,6 +19,8 @@ import (
|
|||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
"github.com/vmware/harbor/src/common/dao"
|
||||||
|
"github.com/vmware/harbor/src/common/utils/test"
|
||||||
"github.com/vmware/harbor/src/replication"
|
"github.com/vmware/harbor/src/replication"
|
||||||
"github.com/vmware/harbor/src/replication/models"
|
"github.com/vmware/harbor/src/replication/models"
|
||||||
)
|
)
|
||||||
@ -66,30 +68,26 @@ func TestCreateTrigger(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestSetupTrigger(t *testing.T) {
|
func TestSetupTrigger(t *testing.T) {
|
||||||
|
dao.DefaultDatabaseWatchItemDAO = &test.FakeWatchItemDAO{}
|
||||||
|
|
||||||
mgr := NewManager(1)
|
mgr := NewManager(1)
|
||||||
|
|
||||||
err := mgr.SetupTrigger(&models.ReplicationPolicy{
|
err := mgr.SetupTrigger(&models.ReplicationPolicy{
|
||||||
Trigger: &models.Trigger{
|
Trigger: &models.Trigger{
|
||||||
Kind: replication.TriggerKindSchedule,
|
Kind: replication.TriggerKindImmediate,
|
||||||
ScheduleParam: &models.ScheduleParam{
|
|
||||||
Type: replication.TriggerScheduleDaily,
|
|
||||||
Offtime: 1,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUnsetTrigger(t *testing.T) {
|
func TestUnsetTrigger(t *testing.T) {
|
||||||
|
dao.DefaultDatabaseWatchItemDAO = &test.FakeWatchItemDAO{}
|
||||||
|
|
||||||
mgr := NewManager(1)
|
mgr := NewManager(1)
|
||||||
|
|
||||||
err := mgr.UnsetTrigger(&models.ReplicationPolicy{
|
err := mgr.UnsetTrigger(&models.ReplicationPolicy{
|
||||||
Trigger: &models.Trigger{
|
Trigger: &models.Trigger{
|
||||||
Kind: replication.TriggerKindSchedule,
|
Kind: replication.TriggerKindImmediate,
|
||||||
ScheduleParam: &models.ScheduleParam{
|
|
||||||
Type: replication.TriggerScheduleDaily,
|
|
||||||
Offtime: 1,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
|
@ -2,12 +2,17 @@ package trigger
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"net/http"
|
||||||
|
|
||||||
"github.com/vmware/harbor/src/common/scheduler"
|
"github.com/vmware/harbor/src/common/dao"
|
||||||
"github.com/vmware/harbor/src/common/scheduler/policy"
|
common_http "github.com/vmware/harbor/src/common/http"
|
||||||
replication_task "github.com/vmware/harbor/src/common/scheduler/task/replication"
|
"github.com/vmware/harbor/src/common/job"
|
||||||
|
job_models "github.com/vmware/harbor/src/common/job/models"
|
||||||
|
"github.com/vmware/harbor/src/common/models"
|
||||||
|
"github.com/vmware/harbor/src/common/utils/log"
|
||||||
"github.com/vmware/harbor/src/replication"
|
"github.com/vmware/harbor/src/replication"
|
||||||
|
"github.com/vmware/harbor/src/ui/config"
|
||||||
|
"github.com/vmware/harbor/src/ui/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
//ScheduleTrigger will schedule a alternate policy to provide 'daily' and 'weekly' trigger ways.
|
//ScheduleTrigger will schedule a alternate policy to provide 'daily' and 'weekly' trigger ways.
|
||||||
@ -29,30 +34,79 @@ func (st *ScheduleTrigger) Kind() string {
|
|||||||
|
|
||||||
//Setup is the implementation of same method defined in Trigger interface
|
//Setup is the implementation of same method defined in Trigger interface
|
||||||
func (st *ScheduleTrigger) Setup() error {
|
func (st *ScheduleTrigger) Setup() error {
|
||||||
config := &policy.AlternatePolicyConfiguration{}
|
metadata := &job_models.JobMetadata{
|
||||||
|
JobKind: job.JobKindPeriodic,
|
||||||
|
}
|
||||||
switch st.params.Type {
|
switch st.params.Type {
|
||||||
case replication.TriggerScheduleDaily:
|
case replication.TriggerScheduleDaily:
|
||||||
config.Duration = 24 * 3600 * time.Second
|
h, m, s := parseOfftime(st.params.Offtime)
|
||||||
config.OffsetTime = st.params.Offtime
|
metadata.Cron = fmt.Sprintf("%d %d %d * * *", s, m, h)
|
||||||
case replication.TriggerScheduleWeekly:
|
case replication.TriggerScheduleWeekly:
|
||||||
config.Duration = 7 * 24 * 3600 * time.Second
|
h, m, s := parseOfftime(st.params.Offtime)
|
||||||
config.OffsetTime = st.params.Offtime
|
metadata.Cron = fmt.Sprintf("%d %d %d * * %d", s, m, h, st.params.Weekday%7)
|
||||||
config.Weekday = st.params.Weekday
|
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("unsupported schedual trigger type: %s", st.params.Type)
|
return fmt.Errorf("unsupported schedual trigger type: %s", st.params.Type)
|
||||||
}
|
}
|
||||||
|
|
||||||
schedulePolicy := policy.NewAlternatePolicy(assembleName(st.params.PolicyID), config)
|
id, err := dao.AddRepJob(models.RepJob{
|
||||||
attachTask := replication_task.NewTask(st.params.PolicyID)
|
Repository: "N/A",
|
||||||
schedulePolicy.AttachTasks(attachTask)
|
PolicyID: st.params.PolicyID,
|
||||||
return scheduler.DefaultScheduler.Schedule(schedulePolicy)
|
Operation: models.RepOpSchedule,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
uuid, err := utils.GetJobServiceClient().SubmitJob(&job_models.JobData{
|
||||||
|
Name: job.ImageReplicate,
|
||||||
|
Parameters: map[string]interface{}{
|
||||||
|
"policy_id": st.params.PolicyID,
|
||||||
|
"url": config.InternalUIURL(),
|
||||||
|
"insecure": true,
|
||||||
|
},
|
||||||
|
Metadata: metadata,
|
||||||
|
StatusHook: fmt.Sprintf("%s/service/notifications/jobs/replication/%d",
|
||||||
|
config.InternalUIURL(), id),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
// clean up the job record in database
|
||||||
|
if e := dao.DeleteRepJob(id); e != nil {
|
||||||
|
log.Errorf("failed to delete job %d: %v", id, e)
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return dao.SetRepJobUUID(id, uuid)
|
||||||
}
|
}
|
||||||
|
|
||||||
//Unset is the implementation of same method defined in Trigger interface
|
//Unset is the implementation of same method defined in Trigger interface
|
||||||
func (st *ScheduleTrigger) Unset() error {
|
func (st *ScheduleTrigger) Unset() error {
|
||||||
return scheduler.DefaultScheduler.UnSchedule(assembleName(st.params.PolicyID))
|
jobs, _, err := dao.FilterRepJobs(st.params.PolicyID, "", nil, nil, nil, 0, 0, models.RepOpSchedule)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if len(jobs) != 1 {
|
||||||
|
log.Warningf("only one job should be found, but found %d now", len(jobs))
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, j := range jobs {
|
||||||
|
if err = utils.GetJobServiceClient().PostAction(j.UUID, job.JobActionStop); err != nil {
|
||||||
|
// if the job specified by UUID is not found in jobservice, delete the job
|
||||||
|
// record from database
|
||||||
|
if e, ok := err.(*common_http.Error); !ok || e.Code != http.StatusNotFound {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err = dao.DeleteRepJob(j.ID); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func assembleName(policyID int64) string {
|
func parseOfftime(offtime int64) (hour, minite, second int) {
|
||||||
return fmt.Sprintf("replication_policy_%d", policyID)
|
offtime = offtime % (3600 * 24)
|
||||||
|
hour = int(offtime / 3600)
|
||||||
|
offtime = offtime % 3600
|
||||||
|
minite = int(offtime / 60)
|
||||||
|
second = int(offtime % 60)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
@ -16,48 +16,35 @@ package trigger
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
|
||||||
"github.com/vmware/harbor/src/common/scheduler"
|
|
||||||
"github.com/vmware/harbor/src/replication"
|
"github.com/vmware/harbor/src/replication"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestAssembleName(t *testing.T) {
|
|
||||||
assert.Equal(t, "replication_policy_1", assembleName(1))
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestKindOfScheduleTrigger(t *testing.T) {
|
func TestKindOfScheduleTrigger(t *testing.T) {
|
||||||
trigger := NewScheduleTrigger(ScheduleParam{})
|
trigger := NewScheduleTrigger(ScheduleParam{})
|
||||||
assert.Equal(t, replication.TriggerKindSchedule, trigger.Kind())
|
assert.Equal(t, replication.TriggerKindSchedule, trigger.Kind())
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSetupAndUnSetOfScheduleTrigger(t *testing.T) {
|
func TestParseOfftime(t *testing.T) {
|
||||||
// invalid schedule param
|
cases := []struct {
|
||||||
trigger := NewScheduleTrigger(ScheduleParam{})
|
offtime int64
|
||||||
assert.NotNil(t, trigger.Setup())
|
hour int
|
||||||
|
minite int
|
||||||
|
second int
|
||||||
|
}{
|
||||||
|
{0, 0, 0, 0},
|
||||||
|
{1, 0, 0, 1},
|
||||||
|
{60, 0, 1, 0},
|
||||||
|
{3600, 1, 0, 0},
|
||||||
|
{3661, 1, 1, 1},
|
||||||
|
{3600*24 + 60, 0, 1, 0},
|
||||||
|
}
|
||||||
|
|
||||||
// valid schedule param
|
for _, c := range cases {
|
||||||
var policyID int64 = 1
|
h, m, s := parseOfftime(c.offtime)
|
||||||
trigger = NewScheduleTrigger(ScheduleParam{
|
assert.Equal(t, c.hour, h)
|
||||||
BasicParam: BasicParam{
|
assert.Equal(t, c.minite, m)
|
||||||
PolicyID: policyID,
|
assert.Equal(t, c.second, s)
|
||||||
},
|
}
|
||||||
Type: replication.TriggerScheduleWeekly,
|
|
||||||
Weekday: (int8(time.Now().Weekday()) + 1) % 7,
|
|
||||||
Offtime: 0,
|
|
||||||
})
|
|
||||||
|
|
||||||
count := scheduler.DefaultScheduler.PolicyCount()
|
|
||||||
require.Nil(t, scheduler.DefaultScheduler.GetPolicy(assembleName(policyID)))
|
|
||||||
|
|
||||||
require.Nil(t, trigger.Setup())
|
|
||||||
|
|
||||||
assert.Equal(t, count+1, scheduler.DefaultScheduler.PolicyCount())
|
|
||||||
assert.NotNil(t, scheduler.DefaultScheduler.GetPolicy(assembleName(policyID)))
|
|
||||||
|
|
||||||
require.Nil(t, trigger.Unset())
|
|
||||||
assert.Equal(t, count, scheduler.DefaultScheduler.PolicyCount())
|
|
||||||
assert.Nil(t, scheduler.DefaultScheduler.GetPolicy(assembleName(policyID)))
|
|
||||||
}
|
}
|
||||||
|
@ -64,7 +64,8 @@ func (r *ReplicationAPI) Post() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_, count, err := dao.FilterRepJobs(replication.PolicyID, "",
|
_, count, err := dao.FilterRepJobs(replication.PolicyID, "",
|
||||||
[]string{models.JobRunning, models.JobPending}, nil, nil, 1, 0)
|
[]string{models.JobRunning, models.JobPending}, nil, nil, 1, 0,
|
||||||
|
models.RepOpTransfer, models.RepOpDelete)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.HandleInternalServerError(fmt.Sprintf("failed to filter jobs of policy %d: %v",
|
r.HandleInternalServerError(fmt.Sprintf("failed to filter jobs of policy %d: %v",
|
||||||
replication.PolicyID, err))
|
replication.PolicyID, err))
|
||||||
|
@ -32,6 +32,7 @@ var statusMap = map[string]string{
|
|||||||
job.JobServiceStatusCancelled: models.JobCanceled,
|
job.JobServiceStatusCancelled: models.JobCanceled,
|
||||||
job.JobServiceStatusError: models.JobError,
|
job.JobServiceStatusError: models.JobError,
|
||||||
job.JobServiceStatusSuccess: models.JobFinished,
|
job.JobServiceStatusSuccess: models.JobFinished,
|
||||||
|
job.JobServiceStatusScheduled: models.JobScheduled,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handler handles reqeust on /service/notifications/jobs/*, which listens to the webhook of jobservice.
|
// Handler handles reqeust on /service/notifications/jobs/*, which listens to the webhook of jobservice.
|
||||||
@ -58,9 +59,9 @@ func (h *Handler) Prepare() {
|
|||||||
h.Abort("200")
|
h.Abort("200")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Debugf("Received scan job status update for job: %d, status: %s", id, data.Status)
|
|
||||||
status, ok := statusMap[data.Status]
|
status, ok := statusMap[data.Status]
|
||||||
if !ok {
|
if !ok {
|
||||||
|
log.Debugf("drop the job status update event: job id-%d, status-%s", id, status)
|
||||||
h.Abort("200")
|
h.Abort("200")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -69,6 +70,7 @@ func (h *Handler) Prepare() {
|
|||||||
|
|
||||||
// HandleScan handles the webhook of scan job
|
// HandleScan handles the webhook of scan job
|
||||||
func (h *Handler) HandleScan() {
|
func (h *Handler) HandleScan() {
|
||||||
|
log.Debugf("received san job status update event: job-%d, status-%s", h.id, h.status)
|
||||||
if err := dao.UpdateScanJobStatus(h.id, h.status); err != nil {
|
if err := dao.UpdateScanJobStatus(h.id, h.status); err != nil {
|
||||||
log.Errorf("Failed to update job status, id: %d, status: %s", h.id, h.status)
|
log.Errorf("Failed to update job status, id: %d, status: %s", h.id, h.status)
|
||||||
h.HandleInternalServerError(err.Error())
|
h.HandleInternalServerError(err.Error())
|
||||||
@ -78,6 +80,7 @@ func (h *Handler) HandleScan() {
|
|||||||
|
|
||||||
//HandleReplication handles the webhook of replication job
|
//HandleReplication handles the webhook of replication job
|
||||||
func (h *Handler) HandleReplication() {
|
func (h *Handler) HandleReplication() {
|
||||||
|
log.Debugf("received replication job status update event: job-%d, status-%s", h.id, h.status)
|
||||||
if err := dao.UpdateRepJobStatus(h.id, h.status); err != nil {
|
if err := dao.UpdateRepJobStatus(h.id, h.status); err != nil {
|
||||||
log.Errorf("Failed to update job status, id: %d, status: %s", h.id, h.status)
|
log.Errorf("Failed to update job status, id: %d, status: %s", h.id, h.status)
|
||||||
h.HandleInternalServerError(err.Error())
|
h.HandleInternalServerError(err.Error())
|
||||||
|
Loading…
Reference in New Issue
Block a user