2019-02-21 09:52:53 +01:00
|
|
|
// Copyright Project Harbor Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
// Package ng ...
|
|
|
|
// TODO rename the package name after removing ng
|
|
|
|
package ng
|
|
|
|
|
|
|
|
import (
|
2019-03-26 12:00:00 +01:00
|
|
|
"github.com/goharbor/harbor/src/common/job"
|
2019-03-22 03:54:25 +01:00
|
|
|
"github.com/goharbor/harbor/src/common/utils/log"
|
|
|
|
cfg "github.com/goharbor/harbor/src/core/config"
|
|
|
|
"github.com/goharbor/harbor/src/replication/ng/config"
|
2019-03-26 12:00:00 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/event"
|
2019-03-10 04:14:23 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/operation"
|
2019-03-26 07:59:58 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/operation/execution"
|
2019-03-26 12:00:00 +01:00
|
|
|
task_scheduler "github.com/goharbor/harbor/src/replication/ng/operation/scheduler"
|
2019-02-28 09:43:07 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/policy"
|
2019-03-26 12:00:00 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/policy/controller"
|
2019-03-10 04:14:23 +01:00
|
|
|
"github.com/goharbor/harbor/src/replication/ng/registry"
|
2019-03-26 07:59:58 +01:00
|
|
|
|
2019-03-11 11:52:57 +01:00
|
|
|
// register the Harbor adapter
|
|
|
|
_ "github.com/goharbor/harbor/src/replication/ng/adapter/harbor"
|
2019-02-21 09:52:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-03-26 12:00:00 +01:00
|
|
|
// PolicyCtl is a global policy controller
|
|
|
|
PolicyCtl policy.Controller
|
2019-02-21 09:52:53 +01:00
|
|
|
// RegistryMgr is a global registry manager
|
|
|
|
RegistryMgr registry.Manager
|
|
|
|
// OperationCtl is a global operation controller
|
|
|
|
OperationCtl operation.Controller
|
2019-03-26 12:00:00 +01:00
|
|
|
// EventHandler handles images/chart pull/push events
|
|
|
|
EventHandler event.Handler
|
2019-02-21 09:52:53 +01:00
|
|
|
)
|
|
|
|
|
2019-03-22 03:54:25 +01:00
|
|
|
// Init the global variables and configurations
|
2019-02-21 09:52:53 +01:00
|
|
|
func Init() error {
|
2019-03-22 03:54:25 +01:00
|
|
|
// init config
|
|
|
|
registryURL, err := cfg.RegistryURL()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
secretKey, err := cfg.SecretKey()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
config.Config = &config.Configuration{
|
|
|
|
CoreURL: cfg.InternalCoreURL(),
|
|
|
|
RegistryURL: registryURL,
|
|
|
|
TokenServiceURL: cfg.InternalTokenServiceEndpoint(),
|
|
|
|
JobserviceURL: cfg.InternalJobServiceURL(),
|
|
|
|
SecretKey: secretKey,
|
|
|
|
Secret: cfg.CoreSecret(),
|
|
|
|
}
|
2019-03-26 12:00:00 +01:00
|
|
|
// TODO use a global http transport
|
|
|
|
js := job.NewDefaultClient(config.Config.JobserviceURL, config.Config.Secret)
|
|
|
|
// init registry manager
|
2019-02-25 08:41:54 +01:00
|
|
|
RegistryMgr = registry.NewDefaultManager()
|
2019-03-26 12:00:00 +01:00
|
|
|
// init policy controller
|
|
|
|
PolicyCtl = controller.NewController(js)
|
|
|
|
// init operation controller
|
2019-03-22 03:54:25 +01:00
|
|
|
OperationCtl = operation.NewController(execution.NewDefaultManager(), RegistryMgr,
|
2019-03-26 12:00:00 +01:00
|
|
|
task_scheduler.NewScheduler(js))
|
|
|
|
// init event handler
|
|
|
|
EventHandler = event.NewHandler(PolicyCtl, OperationCtl)
|
2019-03-22 03:54:25 +01:00
|
|
|
log.Debug("the replication initialization completed")
|
2019-02-21 09:52:53 +01:00
|
|
|
return nil
|
|
|
|
}
|