mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-09 23:28:20 +08:00
78 lines
1.9 KiB
Go
78 lines
1.9 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// 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 db
|
|
|
|
type SOwnerId struct {
|
|
Domain string `json:"project_domain"`
|
|
DomainId string `json:"project_domain_id"`
|
|
Project string `json:"tenant"`
|
|
ProjectId string `json:"tenant_id"`
|
|
|
|
User string `json:"user"`
|
|
UserId string `json:"user_id"`
|
|
UserDomain string `json:"domain"`
|
|
UserDomainId string `json:"domain_id"`
|
|
}
|
|
|
|
func (o *SOwnerId) GetProjectId() string {
|
|
return o.ProjectId
|
|
}
|
|
|
|
func (o *SOwnerId) GetUserId() string {
|
|
return o.UserId
|
|
}
|
|
|
|
func (o *SOwnerId) GetTenantId() string {
|
|
return o.ProjectId
|
|
}
|
|
|
|
func (o *SOwnerId) GetProjectDomainId() string {
|
|
return o.DomainId
|
|
}
|
|
|
|
func (o *SOwnerId) GetUserName() string {
|
|
return o.User
|
|
}
|
|
|
|
func (o *SOwnerId) GetProjectName() string {
|
|
return o.Project
|
|
}
|
|
|
|
func (o *SOwnerId) GetTenantName() string {
|
|
return o.Project
|
|
}
|
|
|
|
func (o *SOwnerId) GetProjectDomain() string {
|
|
return o.Domain
|
|
}
|
|
|
|
func (o *SOwnerId) GetDomainId() string {
|
|
return o.UserDomainId
|
|
}
|
|
|
|
func (o *SOwnerId) GetDomainName() string {
|
|
return o.UserDomain
|
|
}
|
|
|
|
func (ownerId SOwnerId) IsValid() bool {
|
|
if len(ownerId.User) > 0 && len(ownerId.UserId) > 0 &&
|
|
len(ownerId.UserDomain) > 0 && len(ownerId.UserDomainId) > 0 &&
|
|
len(ownerId.Project) > 0 && len(ownerId.ProjectId) > 0 &&
|
|
len(ownerId.Domain) > 0 && len(ownerId.DomainId) > 0 {
|
|
return true
|
|
}
|
|
return false
|
|
}
|