mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-20 23:57:42 +01:00
58afd8e14b
- implement scan controller - add scan resource and update role bindings - update registration model and related interfaces Signed-off-by: Steven Zou <szou@vmware.com> - implement scan API to do scan/get report/get log - update repository rest API to produce scan report summary - update scan job hook handler - update some UT cases - update robot account making content - hidden credential in the job log Commnet scan related API test cases which will be re-activate later fix #8985 fix the issues found by codacy Signed-off-by: Steven Zou <szou@vmware.com>
88 lines
2.8 KiB
Go
88 lines
2.8 KiB
Go
// 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 models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/goharbor/harbor/src/common/utils/notary/model"
|
|
"github.com/theupdateframework/notary/tuf/data"
|
|
)
|
|
|
|
// RepoTable is the table name for repository
|
|
const RepoTable = "repository"
|
|
|
|
// RepoRecord holds the record of an repository in DB, all the infors are from the registry notification event.
|
|
type RepoRecord struct {
|
|
RepositoryID int64 `orm:"pk;auto;column(repository_id)" json:"repository_id"`
|
|
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"`
|
|
}
|
|
|
|
// TableName is required by by beego orm to map RepoRecord to table repository
|
|
func (rp *RepoRecord) TableName() string {
|
|
return RepoTable
|
|
}
|
|
|
|
// RepositoryQuery : query parameters for repository
|
|
type RepositoryQuery struct {
|
|
Name string
|
|
ProjectIDs []int64
|
|
ProjectName string
|
|
LabelID int64
|
|
Pagination
|
|
Sorting
|
|
}
|
|
|
|
// TagResp holds the information of one image tag
|
|
type TagResp struct {
|
|
TagDetail
|
|
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"`
|
|
}
|
|
|
|
// 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"`
|
|
}
|