2018-09-19 18:57:15 +02:00
|
|
|
// Copyright Project Harbor Authors
|
2017-04-13 12:54:58 +02:00
|
|
|
//
|
|
|
|
// 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.
|
2016-08-29 15:21:49 +02:00
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2019-07-19 07:11:11 +02:00
|
|
|
|
|
|
|
"github.com/goharbor/harbor/src/common/utils/notary/model"
|
|
|
|
"github.com/theupdateframework/notary/tuf/data"
|
2016-08-29 15:21:49 +02:00
|
|
|
)
|
|
|
|
|
2018-09-05 10:16:31 +02:00
|
|
|
// RepoTable is the table name for repository
|
2017-08-07 06:53:55 +02:00
|
|
|
const RepoTable = "repository"
|
|
|
|
|
2016-08-29 15:21:49 +02:00
|
|
|
// RepoRecord holds the record of an repository in DB, all the infors are from the registry notification event.
|
|
|
|
type RepoRecord struct {
|
2017-04-27 12:19:28 +02:00
|
|
|
RepositoryID int64 `orm:"pk;auto;column(repository_id)" json:"repository_id"`
|
2016-08-29 15:21:49 +02:00
|
|
|
Name string `orm:"column(name)" json:"name"`
|
|
|
|
ProjectID int64 `orm:"column(project_id)" json:"project_id"`
|
|
|
|
Description string `orm:"column(description)" json:"description"`
|
|
|
|
PullCount int64 `orm:"column(pull_count)" json:"pull_count"`
|
|
|
|
StarCount int64 `orm:"column(star_count)" json:"star_count"`
|
|
|
|
CreationTime time.Time `orm:"column(creation_time);auto_now_add" json:"creation_time"`
|
|
|
|
UpdateTime time.Time `orm:"column(update_time);auto_now" json:"update_time"`
|
|
|
|
}
|
|
|
|
|
2018-09-05 10:16:31 +02:00
|
|
|
// TableName is required by by beego orm to map RepoRecord to table repository
|
2016-08-29 15:21:49 +02:00
|
|
|
func (rp *RepoRecord) TableName() string {
|
2017-08-07 06:53:55 +02:00
|
|
|
return RepoTable
|
2016-08-29 15:21:49 +02:00
|
|
|
}
|
2018-03-15 09:56:43 +01:00
|
|
|
|
|
|
|
// RepositoryQuery : query parameters for repository
|
|
|
|
type RepositoryQuery struct {
|
|
|
|
Name string
|
|
|
|
ProjectIDs []int64
|
|
|
|
ProjectName string
|
|
|
|
LabelID int64
|
|
|
|
Pagination
|
2018-08-28 12:11:03 +02:00
|
|
|
Sorting
|
2018-03-15 09:56:43 +01:00
|
|
|
}
|
2019-07-19 07:11:11 +02:00
|
|
|
|
|
|
|
// TagResp holds the information of one image tag
|
|
|
|
type TagResp struct {
|
|
|
|
TagDetail
|
2019-09-24 09:17:40 +02:00
|
|
|
Signature *model.Target `json:"signature"`
|
|
|
|
ScanOverview map[string]interface{} `json:"scan_overview,omitempty"`
|
|
|
|
Labels []*Label `json:"labels"`
|
|
|
|
PushTime time.Time `json:"push_time"`
|
|
|
|
PullTime time.Time `json:"pull_time"`
|
2019-07-19 07:11:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TagDetail ...
|
|
|
|
type TagDetail struct {
|
|
|
|
Digest string `json:"digest"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Size int64 `json:"size"`
|
|
|
|
Architecture string `json:"architecture"`
|
|
|
|
OS string `json:"os"`
|
|
|
|
OSVersion string `json:"os.version"`
|
|
|
|
DockerVersion string `json:"docker_version"`
|
|
|
|
Author string `json:"author"`
|
|
|
|
Created time.Time `json:"created"`
|
|
|
|
Config *TagCfg `json:"config"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// TagCfg ...
|
|
|
|
type TagCfg struct {
|
|
|
|
Labels map[string]string `json:"labels"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signature ...
|
|
|
|
type Signature struct {
|
|
|
|
Tag string `json:"tag"`
|
|
|
|
Hashes data.Hashes `json:"hashes"`
|
|
|
|
}
|