| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- // 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/cloudmux/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) GetDescription() string {
- return self.Description
- }
- 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()
- }
|