mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-23 16:11:24 +01:00
587459df15
Signed-off-by: clouderati <35942204+clouderati@users.noreply.github.com>
93 lines
3.0 KiB
Go
93 lines
3.0 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 (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/astaxie/beego/validation"
|
|
"github.com/goharbor/harbor/src/common"
|
|
)
|
|
|
|
// Label holds information used for a label
|
|
type Label struct {
|
|
ID int64 `orm:"pk;auto;column(id)" json:"id"`
|
|
Name string `orm:"column(name)" json:"name"`
|
|
Description string `orm:"column(description)" json:"description"`
|
|
Color string `orm:"column(color)" json:"color"`
|
|
Level string `orm:"column(level)" json:"-"`
|
|
Scope string `orm:"column(scope)" json:"scope"`
|
|
ProjectID int64 `orm:"column(project_id)" json:"project_id"`
|
|
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"`
|
|
Deleted bool `orm:"column(deleted)" json:"deleted"`
|
|
}
|
|
|
|
// TableName ...
|
|
func (l *Label) TableName() string {
|
|
return "harbor_label"
|
|
}
|
|
|
|
// LabelQuery : query parameters for labels
|
|
type LabelQuery struct {
|
|
Name string
|
|
FuzzyMatchName bool // the property is used to determine the query for lable name is fuzzy matching or exaxt matching
|
|
Level string
|
|
Scope string
|
|
ProjectID int64
|
|
Pagination
|
|
}
|
|
|
|
// Valid ...
|
|
func (l *Label) Valid(v *validation.Validation) {
|
|
if len(l.Name) == 0 {
|
|
v.SetError("name", "cannot be empty")
|
|
}
|
|
if len(l.Name) > 128 {
|
|
v.SetError("name", "max length is 128")
|
|
}
|
|
|
|
if l.Scope != common.LabelScopeGlobal && l.Scope != common.LabelScopeProject {
|
|
v.SetError("scope", fmt.Sprintf("invalid: %s", l.Scope))
|
|
} else if l.Scope == common.LabelScopeProject && l.ProjectID <= 0 {
|
|
v.SetError("project_id", fmt.Sprintf("invalid: %d", l.ProjectID))
|
|
}
|
|
}
|
|
|
|
// ResourceLabel records the relationship between resource and label
|
|
type ResourceLabel struct {
|
|
ID int64 `orm:"pk;auto;column(id)"`
|
|
LabelID int64 `orm:"column(label_id)"`
|
|
ResourceID int64 `orm:"column(resource_id)"`
|
|
ResourceName string `orm:"column(resource_name)"`
|
|
ResourceType string `orm:"column(resource_type)"`
|
|
CreationTime time.Time `orm:"column(creation_time);auto_now_add"`
|
|
UpdateTime time.Time `orm:"column(update_time);auto_now"`
|
|
}
|
|
|
|
// TableName ...
|
|
func (r *ResourceLabel) TableName() string {
|
|
return "harbor_resource_label"
|
|
}
|
|
|
|
// ResourceLabelQuery : query parameters for the mapping relationships of resource and label
|
|
type ResourceLabelQuery struct {
|
|
LabelID int64
|
|
ResourceID int64
|
|
ResourceName string
|
|
ResourceType string
|
|
}
|