mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
87 lines
2.1 KiB
Go
87 lines
2.1 KiB
Go
package deployer
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/aliyun/aliyun-oss-go-sdk/oss"
|
|
xerrors "github.com/pkg/errors"
|
|
|
|
"github.com/usual2970/certimate/internal/domain"
|
|
)
|
|
|
|
type AliyunOSSDeployer struct {
|
|
option *DeployerOption
|
|
infos []string
|
|
|
|
sdkClient *oss.Client
|
|
}
|
|
|
|
func NewAliyunOSSDeployer(option *DeployerOption) (Deployer, error) {
|
|
access := &domain.AliyunAccess{}
|
|
if err := json.Unmarshal([]byte(option.Access), access); err != nil {
|
|
return nil, xerrors.Wrap(err, "failed to get access")
|
|
}
|
|
|
|
client, err := (&AliyunOSSDeployer{}).createSdkClient(
|
|
access.AccessKeyId,
|
|
access.AccessKeySecret,
|
|
option.DeployConfig.GetConfigAsString("endpoint"),
|
|
)
|
|
if err != nil {
|
|
return nil, xerrors.Wrap(err, "failed to create sdk client")
|
|
}
|
|
|
|
return &AliyunOSSDeployer{
|
|
option: option,
|
|
infos: make([]string, 0),
|
|
sdkClient: client,
|
|
}, nil
|
|
}
|
|
|
|
func (d *AliyunOSSDeployer) GetID() string {
|
|
return fmt.Sprintf("%s-%s", d.option.AccessRecord.GetString("name"), d.option.AccessRecord.Id)
|
|
}
|
|
|
|
func (d *AliyunOSSDeployer) GetInfos() []string {
|
|
return d.infos
|
|
}
|
|
|
|
func (d *AliyunOSSDeployer) Deploy(ctx context.Context) error {
|
|
aliBucket := d.option.DeployConfig.GetConfigAsString("bucket")
|
|
if aliBucket == "" {
|
|
return errors.New("`bucket` is required")
|
|
}
|
|
|
|
// 为存储空间绑定自定义域名
|
|
// REF: https://help.aliyun.com/zh/oss/developer-reference/putcname
|
|
err := d.sdkClient.PutBucketCnameWithCertificate(aliBucket, oss.PutBucketCname{
|
|
Cname: d.option.DeployConfig.GetConfigAsString("domain"),
|
|
CertificateConfiguration: &oss.CertificateConfiguration{
|
|
Certificate: d.option.Certificate.Certificate,
|
|
PrivateKey: d.option.Certificate.PrivateKey,
|
|
Force: true,
|
|
},
|
|
})
|
|
if err != nil {
|
|
return xerrors.Wrap(err, "failed to execute sdk request 'oss.PutBucketCnameWithCertificate'")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (d *AliyunOSSDeployer) createSdkClient(accessKeyId, accessKeySecret, endpoint string) (*oss.Client, error) {
|
|
if endpoint == "" {
|
|
endpoint = "oss.aliyuncs.com"
|
|
}
|
|
|
|
client, err := oss.New(endpoint, accessKeyId, accessKeySecret)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return client, nil
|
|
}
|