| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // 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 options
- import (
- "fmt"
- "io/ioutil"
- "yunion.io/x/jsonutils"
- )
- type ServiceCertificateCreateOptions struct {
- NAME string
- Cert string `required:"true" json:"-" help:"path to certificate file"`
- Pkey string `required:"true" json:"-" help:"path to private key file"`
- CaCert string `help:"path to ca certificate file" json:"-"`
- CaPkey string `help:"paht to ca private key file" json:"-"`
- }
- func serviceCertificateLoadFiles(pathM map[string]string, allowEmpty bool) (*jsonutils.JSONDict, error) {
- params := jsonutils.NewDict()
- for fieldName, path := range pathM {
- if path == "" {
- if allowEmpty {
- continue
- } else {
- return nil, fmt.Errorf("%s: empty path", fieldName)
- }
- }
- d, err := ioutil.ReadFile(path)
- if err != nil {
- return nil, fmt.Errorf("%s: read %s: %s", fieldName, path, err)
- }
- if len(d) == 0 {
- return nil, fmt.Errorf("%s: empty file %s", fieldName, path)
- }
- params.Set(fieldName, jsonutils.NewString(string(d)))
- }
- return params, nil
- }
- func (opts *ServiceCertificateCreateOptions) Params() (*jsonutils.JSONDict, error) {
- params, err := StructToParams(opts)
- if err != nil {
- return nil, err
- }
- pathM := map[string]string{
- "certificate": opts.Cert,
- "private_key": opts.Pkey,
- }
- paramsCertKey, err := serviceCertificateLoadFiles(pathM, false)
- if err != nil {
- return nil, err
- }
- params.Update(paramsCertKey)
- pathM = map[string]string{
- "ca_certificate": opts.CaCert,
- "ca_private_key": opts.CaPkey,
- }
- paramsCertKey, err = serviceCertificateLoadFiles(pathM, false)
- if err != nil {
- return nil, err
- }
- params.Update(paramsCertKey)
- return params, nil
- }
|