Files
cloudpods/pkg/multicloud/hcso/project.go
2022-09-23 16:48:16 +08:00

107 lines
2.6 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 hcso
import (
"fmt"
"strings"
"yunion.io/x/jsonutils"
api "yunion.io/x/onecloud/pkg/apis/compute"
)
// https://support.huaweicloud.com/api-iam/zh-cn_topic_0057845625.html
type SProject struct {
client *SHuaweiClient
IsDomain bool `json:"is_domain"`
Description string `json:"description"`
Enabled bool `json:"enabled"`
ID string `json:"id"`
ParentID string `json:"parent_id"`
DomainID string `json:"domain_id"`
Name string `json:"name"`
}
func (self *SProject) GetRegionID() string {
return strings.Split(self.Name, "_")[0]
}
func (self *SProject) GetHealthStatus() string {
if self.Enabled {
return api.CLOUD_PROVIDER_HEALTH_NORMAL
}
return api.CLOUD_PROVIDER_HEALTH_SUSPENDED
}
func (self *SHuaweiClient) fetchProjects() ([]SProject, error) {
if self.projects != nil {
return self.projects, nil
}
huawei, _ := self.newGeneralAPIClient()
projects := make([]SProject, 0)
err := doListAll(huawei.Projects.List, nil, &projects)
if err == nil {
self.projects = projects
}
return projects, err
}
// obs 权限必须赋予到mos project之上
func (self *SHuaweiClient) GetMosProjectId() string {
projects, err := self.GetProjects()
if err != nil {
return ""
}
for i := range projects {
if strings.ToLower(projects[i].Name) == "mos" {
return projects[i].ID
}
}
return ""
}
func (self *SHuaweiClient) GetMosRoles(groupId string) ([]SRole, error) {
client, _ := self.newGeneralAPIClient()
resp, err := client.Projects.ListRoles(self.GetMosProjectId(), groupId)
if err != nil {
return nil, err
}
ret := []SRole{}
return ret, jsonutils.Update(&ret, resp.Data)
}
func (self *SHuaweiClient) GetProjectById(projectId string) (SProject, error) {
projects, err := self.fetchProjects()
if err != nil {
return SProject{}, err
}
for _, project := range projects {
if project.ID == projectId {
return project, nil
}
}
return SProject{}, fmt.Errorf("project %s not found", projectId)
}
func (self *SHuaweiClient) GetProjects() ([]SProject, error) {
return self.fetchProjects()
}