2019-12-20 02:24:57 +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 repository
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-03-23 03:38:47 +01:00
|
|
|
|
2019-12-20 02:24:57 +01:00
|
|
|
"github.com/goharbor/harbor/src/common/models"
|
2020-01-21 07:11:56 +01:00
|
|
|
"github.com/goharbor/harbor/src/common/utils"
|
2020-03-23 03:38:47 +01:00
|
|
|
"github.com/goharbor/harbor/src/common/utils/log"
|
2020-03-24 13:45:45 +01:00
|
|
|
"github.com/goharbor/harbor/src/controller/artifact"
|
|
|
|
ierror "github.com/goharbor/harbor/src/lib/error"
|
|
|
|
"github.com/goharbor/harbor/src/lib/orm"
|
|
|
|
"github.com/goharbor/harbor/src/lib/q"
|
2020-03-23 03:38:47 +01:00
|
|
|
art "github.com/goharbor/harbor/src/pkg/artifact"
|
2020-01-21 07:11:56 +01:00
|
|
|
"github.com/goharbor/harbor/src/pkg/project"
|
2019-12-20 02:24:57 +01:00
|
|
|
"github.com/goharbor/harbor/src/pkg/repository"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Ctl is a global repository controller instance
|
2020-01-21 07:11:56 +01:00
|
|
|
Ctl = NewController()
|
2019-12-20 02:24:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Controller defines the operations related with repositories
|
|
|
|
type Controller interface {
|
2020-01-21 07:11:56 +01:00
|
|
|
// Ensure the repository specified by the "name" exists, creates it if it doesn't exist.
|
|
|
|
// The "name" should contain the namespace part. The "created" will be set as true
|
|
|
|
// when the repository is created
|
|
|
|
Ensure(ctx context.Context, name string) (created bool, id int64, err error)
|
2020-02-18 08:51:38 +01:00
|
|
|
// Count returns the total count of repositories according to the query
|
|
|
|
Count(ctx context.Context, query *q.Query) (total int64, err error)
|
2020-01-22 11:28:08 +01:00
|
|
|
// List repositories according to the query
|
2020-02-18 08:51:38 +01:00
|
|
|
List(ctx context.Context, query *q.Query) (repositories []*models.RepoRecord, err error)
|
2019-12-20 02:24:57 +01:00
|
|
|
// Get the repository specified by ID
|
|
|
|
Get(ctx context.Context, id int64) (repository *models.RepoRecord, err error)
|
2020-01-22 11:28:08 +01:00
|
|
|
// GetByName gets the repository specified by name
|
|
|
|
GetByName(ctx context.Context, name string) (repository *models.RepoRecord, err error)
|
2020-02-07 02:11:54 +01:00
|
|
|
// Delete the repository specified by ID
|
|
|
|
Delete(ctx context.Context, id int64) (err error)
|
2020-02-18 08:51:38 +01:00
|
|
|
// Update the repository. Specify the properties or all properties will be updated
|
|
|
|
Update(ctx context.Context, repository *models.RepoRecord, properties ...string) (err error)
|
2020-03-18 11:38:37 +01:00
|
|
|
// AddPullCount increase one pull count for the specified repository
|
|
|
|
AddPullCount(ctx context.Context, id int64) error
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewController creates an instance of the default repository controller
|
2020-01-21 07:11:56 +01:00
|
|
|
func NewController() Controller {
|
2019-12-20 02:24:57 +01:00
|
|
|
return &controller{
|
2020-01-21 07:11:56 +01:00
|
|
|
proMgr: project.Mgr,
|
|
|
|
repoMgr: repository.Mgr,
|
2020-03-23 03:38:47 +01:00
|
|
|
artMgr: art.Mgr,
|
2020-02-07 02:11:54 +01:00
|
|
|
artCtl: artifact.Ctl,
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type controller struct {
|
2020-01-21 07:11:56 +01:00
|
|
|
proMgr project.Manager
|
2019-12-20 02:24:57 +01:00
|
|
|
repoMgr repository.Manager
|
2020-03-23 03:38:47 +01:00
|
|
|
artMgr art.Manager
|
2020-02-07 02:11:54 +01:00
|
|
|
artCtl artifact.Controller
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
|
|
|
|
2020-01-21 07:11:56 +01:00
|
|
|
func (c *controller) Ensure(ctx context.Context, name string) (bool, int64, error) {
|
2020-02-28 09:33:19 +01:00
|
|
|
// the repository already exists, return directly
|
|
|
|
repository, err := c.repoMgr.GetByName(ctx, name)
|
|
|
|
if err == nil {
|
|
|
|
return false, repository.RepositoryID, nil
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
2020-02-28 09:33:19 +01:00
|
|
|
|
|
|
|
// got other error when get the repository, return the error
|
|
|
|
if !ierror.IsErr(err, ierror.NotFoundCode) {
|
2019-12-20 02:24:57 +01:00
|
|
|
return false, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// the repository doesn't exist, create it first
|
2020-01-21 07:11:56 +01:00
|
|
|
projectName, _ := utils.ParseRepository(name)
|
|
|
|
project, err := c.proMgr.Get(projectName)
|
|
|
|
if err != nil {
|
|
|
|
return false, 0, err
|
|
|
|
}
|
2020-02-28 09:33:19 +01:00
|
|
|
|
|
|
|
var (
|
|
|
|
created bool
|
|
|
|
id int64
|
|
|
|
)
|
|
|
|
// use orm.WithTransaction here to avoid the issue:
|
|
|
|
// https://www.postgresql.org/message-id/002e01c04da9%24a8f95c20%2425efe6c1%40lasting.ro
|
|
|
|
if err = orm.WithTransaction(func(ctx context.Context) error {
|
|
|
|
id, err = c.repoMgr.Create(ctx, &models.RepoRecord{
|
|
|
|
ProjectID: project.ProjectID,
|
|
|
|
Name: name,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
// if got conflict error, try to get again
|
|
|
|
if ierror.IsConflictErr(err) {
|
|
|
|
var e error
|
|
|
|
repository, e = c.repoMgr.GetByName(ctx, name)
|
|
|
|
if e != nil {
|
|
|
|
err = e
|
|
|
|
} else {
|
|
|
|
id = repository.RepositoryID
|
|
|
|
}
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
2020-02-28 09:33:19 +01:00
|
|
|
return err
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
2020-02-28 09:33:19 +01:00
|
|
|
created = true
|
|
|
|
return nil
|
|
|
|
})(ctx); err != nil && !ierror.IsConflictErr(err) {
|
2019-12-20 02:24:57 +01:00
|
|
|
return false, 0, err
|
|
|
|
}
|
2020-02-28 09:33:19 +01:00
|
|
|
|
|
|
|
return created, id, nil
|
2019-12-20 02:24:57 +01:00
|
|
|
}
|
|
|
|
|
2020-02-18 08:51:38 +01:00
|
|
|
func (c *controller) Count(ctx context.Context, query *q.Query) (int64, error) {
|
|
|
|
return c.repoMgr.Count(ctx, query)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *controller) List(ctx context.Context, query *q.Query) ([]*models.RepoRecord, error) {
|
2020-01-22 11:28:08 +01:00
|
|
|
return c.repoMgr.List(ctx, query)
|
|
|
|
}
|
|
|
|
|
2019-12-20 02:24:57 +01:00
|
|
|
func (c *controller) Get(ctx context.Context, id int64) (*models.RepoRecord, error) {
|
|
|
|
return c.repoMgr.Get(ctx, id)
|
|
|
|
}
|
2020-01-22 11:28:08 +01:00
|
|
|
|
|
|
|
func (c *controller) GetByName(ctx context.Context, name string) (*models.RepoRecord, error) {
|
|
|
|
return c.repoMgr.GetByName(ctx, name)
|
|
|
|
}
|
2020-02-07 02:11:54 +01:00
|
|
|
|
|
|
|
func (c *controller) Delete(ctx context.Context, id int64) error {
|
2020-03-23 03:38:47 +01:00
|
|
|
candidates, err := c.artCtl.List(ctx, &q.Query{
|
2020-02-07 02:11:54 +01:00
|
|
|
Keywords: map[string]interface{}{
|
|
|
|
"RepositoryID": id,
|
|
|
|
},
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-03-23 03:38:47 +01:00
|
|
|
for len(candidates) > 0 {
|
|
|
|
artifacts := candidates
|
|
|
|
candidates = nil
|
|
|
|
for _, artifact := range artifacts {
|
|
|
|
parents, err := c.artMgr.ListReferences(ctx, &q.Query{
|
|
|
|
Keywords: map[string]interface{}{
|
|
|
|
"ChildID": artifact.ID,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(parents) > 0 {
|
|
|
|
// if the artifact is referenced by others, put it into the artifacts
|
|
|
|
// list again, and try to delete it in the next loop
|
|
|
|
log.Debugf("the artifact %d is referenced by others, put it into the backlog and try to delete it in the next loop",
|
|
|
|
artifact.ID)
|
|
|
|
candidates = append(candidates, artifact)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err = c.artCtl.Delete(ctx, artifact.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debugf("the artifact %d is deleted", artifact.ID)
|
2020-02-07 02:11:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return c.repoMgr.Delete(ctx, id)
|
|
|
|
}
|
2020-02-18 08:51:38 +01:00
|
|
|
|
|
|
|
func (c *controller) Update(ctx context.Context, repository *models.RepoRecord, properties ...string) error {
|
|
|
|
return c.repoMgr.Update(ctx, repository, properties...)
|
|
|
|
}
|
2020-03-18 11:38:37 +01:00
|
|
|
|
|
|
|
func (c *controller) AddPullCount(ctx context.Context, id int64) error {
|
|
|
|
return c.repoMgr.AddPullCount(ctx, id)
|
|
|
|
}
|