| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- // 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 compute
- import (
- "fmt"
- "strings"
- "yunion.io/x/jsonutils"
- "yunion.io/x/onecloud/pkg/mcclient/options"
- )
- type AclEntry struct {
- Cidr string
- Comment string
- }
- type AclEntries []*AclEntry
- func NewAclEntry(s string) *AclEntry {
- tu := strings.SplitN(s, "#", 2)
- cidr := strings.TrimSpace(tu[0])
- comment := ""
- if len(tu) > 1 {
- comment = tu[1]
- }
- aclEntry := &AclEntry{
- Cidr: cidr,
- Comment: comment,
- }
- return aclEntry
- }
- func NewAclEntries(ss []string) AclEntries {
- aclEntries := AclEntries{}
- for _, s := range ss {
- aclEntry := NewAclEntry(s)
- aclEntries = append(aclEntries, aclEntry)
- }
- return aclEntries
- }
- func (entry *AclEntry) String() string {
- cidr := entry.Cidr
- comment := entry.Comment
- if comment != "" {
- comment = " # " + comment
- }
- return fmt.Sprintf("%-15s%s", cidr, comment)
- }
- func (entries AclEntries) String() string {
- ss := []string{}
- for _, entry := range entries {
- ss = append(ss, entry.String())
- }
- lines := strings.Join(ss, "\n")
- return lines
- }
- type LoadbalancerAclCreateOptions struct {
- options.SharableProjectizedResourceBaseCreateInput
- NAME string
- AclEntry []string `help:"acl entry with cidr and comment separated by #, e.g. 10.9.0.0/16#no comment" json:"-"`
- Manager string `json:"manager_id"`
- Region string `json:"cloudregion"`
- }
- type LoadbalancerAclListOptions struct {
- options.BaseListOptions
- Cloudregion string
- }
- func (opts *LoadbalancerAclListOptions) Params() (jsonutils.JSONObject, error) {
- return options.ListStructToParams(opts)
- }
- type LoadbalancerAclUpdateOptions struct {
- LoadbalancerAclIdOptions
- Name string
- AclEntry []string `help:"acl entry with cidr and comment separated by #, e.g. 10.9.0.0/16#no comment" json:"-"`
- }
- type LoadbalancerAclActionPatchOptions struct {
- LoadbalancerAclIdOptions
- Add []string `help:"acl entry with cidr and comment separated by #, e.g. 10.9.0.0/16#no comment" json:"-"`
- Del []string `help:"acl entry with cidr and comment separated by #, e.g. 10.9.0.0/16#no comment" json:"-"`
- }
- type LoadbalancerAclPublicOptions struct {
- options.SharableResourcePublicBaseOptions
- LoadbalancerAclIdOptions
- }
- func (opts *LoadbalancerAclPublicOptions) Params() (jsonutils.JSONObject, error) {
- return jsonutils.Marshal(opts.SharableResourcePublicBaseOptions), nil
- }
- type LoadbalancerAclIdOptions struct {
- ID string `json:"-"`
- }
- func (opts *LoadbalancerAclIdOptions) GetId() string {
- return opts.ID
- }
- func (opts *LoadbalancerAclIdOptions) Params() (jsonutils.JSONObject, error) {
- return nil, nil
- }
- func (opts *LoadbalancerAclCreateOptions) Params() (jsonutils.JSONObject, error) {
- params, err := options.StructToParams(opts)
- if err != nil {
- return nil, err
- }
- sp, err := opts.SharableProjectizedResourceBaseCreateInput.Params()
- if err != nil {
- return nil, err
- }
- params.Update(sp)
- aclEntries := NewAclEntries(opts.AclEntry)
- aclEntriesJson := jsonutils.Marshal(aclEntries)
- params.Set("acl_entries", aclEntriesJson)
- return params, nil
- }
- func (opts *LoadbalancerAclUpdateOptions) Params() (jsonutils.JSONObject, error) {
- params, err := options.StructToParams(opts)
- if err != nil {
- return nil, err
- }
- // - when it's nil, we leave it alone without updating
- // - when it's non-nil, we update it as a whole
- if opts.AclEntry != nil {
- aclEntries := NewAclEntries(opts.AclEntry)
- aclEntriesJson := jsonutils.Marshal(aclEntries)
- params.Set("acl_entries", aclEntriesJson)
- }
- return params, nil
- }
- func (opts *LoadbalancerAclActionPatchOptions) Params() (jsonutils.JSONObject, error) {
- params, err := options.StructToParams(opts)
- if err != nil {
- return nil, err
- }
- m := map[string][]string{
- "adds": opts.Add,
- "dels": opts.Del,
- }
- for k, ss := range m {
- aclEntries := NewAclEntries(ss)
- aclEntriesJson := jsonutils.Marshal(aclEntries)
- params.Set(k, aclEntriesJson)
- }
- return params, nil
- }
- type CachedLoadbalancerAclListOptions struct {
- LoadbalancerAclListOptions
- AclId string `help:"local acl id" `
- }
- func (opts *CachedLoadbalancerAclListOptions) Params() (jsonutils.JSONObject, error) {
- return options.StructToParams(opts)
- }
- type LoadbalancerCachedAclCreateOptions struct {
- CLOUDPROVIDER string `help:"cloud provider id"`
- CLOUDREGION string `help:"cloud region id"`
- ACL string `help:"acl id"`
- Listener string `help:"cloud listener id, required by huawei"`
- }
- func (opts *LoadbalancerCachedAclCreateOptions) Params() (jsonutils.JSONObject, error) {
- return options.StructToParams(opts)
- }
|