2019-12-17 05:25:56 -05:00
//go:generate mapstructure-to-hcl2 -type Config
2020-06-24 08:31:05 -04:00
//go:generate struct-markdown
2019-12-17 05:25:56 -05:00
2019-10-12 04:46:21 -04:00
package ucloudimport
import (
"context"
"fmt"
2019-12-17 05:25:56 -05:00
"log"
"net/url"
"strings"
"time"
"github.com/hashicorp/hcl/v2/hcldec"
2019-10-12 04:46:21 -04:00
ucloudcommon "github.com/hashicorp/packer/builder/ucloud/common"
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/common/retry"
"github.com/hashicorp/packer/helper/config"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/template/interpolate"
"github.com/ucloud/ucloud-sdk-go/services/ufile"
"github.com/ucloud/ucloud-sdk-go/services/uhost"
"github.com/ucloud/ucloud-sdk-go/ucloud"
ufsdk "github.com/ufilesdk-dev/ufile-gosdk"
)
const (
2019-10-24 05:10:48 -04:00
BuilderId = "packer.post-processor.ucloud-import"
ImageFileFormatRAW = "raw"
ImageFileFormatVHD = "vhd"
ImageFileFormatVMDK = "vmdk"
ImageFileFormatQCOW2 = "qcow2"
2019-10-12 04:46:21 -04:00
)
var imageFormatMap = ucloudcommon . NewStringConverter ( map [ string ] string {
"raw" : "RAW" ,
"vhd" : "VHD" ,
"vmdk" : "VMDK" ,
} )
// Configuration of this post processor
type Config struct {
common . PackerConfig ` mapstructure:",squash" `
ucloudcommon . AccessConfig ` mapstructure:",squash" `
2020-06-24 08:31:05 -04:00
// The name of the UFile bucket where the RAW, VHD, VMDK, or qcow2 file will be copied to for import.
// This bucket must exist when the post-processor is run.
UFileBucket string ` mapstructure:"ufile_bucket_name" required:"true" `
// The name of the object key in
// `ufile_bucket_name` where the RAW, VHD, VMDK, or qcow2 file will be copied
// to import. This is a [template engine](/docs/templates/engine).
// Therefore, you may use user variables and template functions in this field.
UFileKey string ` mapstructure:"ufile_key_name" required:"false" `
// Whether we should skip removing the RAW, VHD, VMDK, or qcow2 file uploaded to
// UFile after the import process has completed. Possible values are: `true` to
// leave it in the UFile bucket, `false` to remove it. (Default: `false`).
SkipClean bool ` mapstructure:"skip_clean" required:"false" `
// The name of the user-defined image, which contains 1-63 characters and only
// supports Chinese, English, numbers, '-\_,.:[]'.
ImageName string ` mapstructure:"image_name" required:"true" `
// The description of the image.
ImageDescription string ` mapstructure:"image_description" required:"false" `
// Type of the OS. Possible values are: `CentOS`, `Ubuntu`, `Windows`, `RedHat`, `Debian`, `Other`.
// You may refer to [ucloud_api_docs](https://docs.ucloud.cn/api/uhost-api/import_custom_image) for detail.
OSType string ` mapstructure:"image_os_type" required:"true" `
// The name of OS. Such as: `CentOS 7.2 64位`, set `Other` When `image_os_type` is `Other`.
// You may refer to [ucloud_api_docs](https://docs.ucloud.cn/api/uhost-api/import_custom_image) for detail.
OSName string ` mapstructure:"image_os_name" required:"true" `
// The format of the import image , Possible values are: `raw`, `vhd`, `vmdk`, or `qcow2`.
Format string ` mapstructure:"format" required:"true" `
// Timeout of importing image. The default timeout is 3600 seconds if this option is not set or is set.
WaitImageReadyTimeout int ` mapstructure:"wait_image_ready_timeout" required:"false" `
2019-10-12 04:46:21 -04:00
ctx interpolate . Context
}
type PostProcessor struct {
config Config
}
2019-12-17 05:25:56 -05:00
func ( p * PostProcessor ) ConfigSpec ( ) hcldec . ObjectSpec { return p . config . FlatMapstructure ( ) . HCL2Spec ( ) }
2019-10-12 04:46:21 -04:00
func ( p * PostProcessor ) Configure ( raws ... interface { } ) error {
err := config . Decode ( & p . config , & config . DecodeOpts {
2020-10-21 19:07:18 -04:00
PluginType : BuilderId ,
Interpolate : true ,
2019-10-12 04:46:21 -04:00
InterpolateContext : & p . config . ctx ,
InterpolateFilter : & interpolate . RenderFilter {
Exclude : [ ] string {
"ufile_key_name" ,
} ,
} ,
} , raws ... )
if err != nil {
return err
}
// Set defaults
if p . config . UFileKey == "" {
p . config . UFileKey = "packer-import-{{timestamp}}." + p . config . Format
}
2019-10-18 02:52:20 -04:00
if p . config . WaitImageReadyTimeout <= 0 {
2019-10-24 05:10:48 -04:00
p . config . WaitImageReadyTimeout = ucloudcommon . DefaultCreateImageTimeout
2019-10-18 02:52:20 -04:00
}
2019-10-12 04:46:21 -04:00
errs := new ( packer . MultiError )
// Check and render ufile_key_name
if err = interpolate . Validate ( p . config . UFileKey , & p . config . ctx ) ; err != nil {
errs = packer . MultiErrorAppend (
errs , fmt . Errorf ( "Error parsing ufile_key_name template: %s" , err ) )
}
// Check we have ucloud access variables defined somewhere
errs = packer . MultiErrorAppend ( errs , p . config . AccessConfig . Prepare ( & p . config . ctx ) ... )
// define all our required parameters
templates := map [ string ] * string {
"ufile_bucket_name" : & p . config . UFileBucket ,
"image_name" : & p . config . ImageName ,
2019-10-18 02:52:20 -04:00
"image_os_type" : & p . config . OSType ,
"image_os_name" : & p . config . OSName ,
"format" : & p . config . Format ,
2019-10-12 04:46:21 -04:00
}
// Check out required params are defined
for key , ptr := range templates {
if * ptr == "" {
errs = packer . MultiErrorAppend (
errs , fmt . Errorf ( "%s must be set" , key ) )
}
}
2019-10-18 02:52:20 -04:00
imageName := p . config . ImageName
if ! ucloudcommon . ImageNamePattern . MatchString ( imageName ) {
errs = packer . MultiErrorAppend ( errs , fmt . Errorf ( "expected %q to be 1-63 characters and only support chinese, english, numbers, '-_,.:[]', got %q" , "image_name" , imageName ) )
}
2019-10-12 04:46:21 -04:00
switch p . config . Format {
2019-10-24 05:10:48 -04:00
case ImageFileFormatVHD , ImageFileFormatRAW , ImageFileFormatVMDK , ImageFileFormatQCOW2 :
2019-10-12 04:46:21 -04:00
default :
errs = packer . MultiErrorAppend (
2019-10-18 02:52:20 -04:00
errs , fmt . Errorf ( "expected %q only be one of 'raw', 'vhd', 'vmdk', or 'qcow2', got %q" , "format" , p . config . Format ) )
2019-10-12 04:46:21 -04:00
}
// Anything which flagged return back up the stack
if len ( errs . Errors ) > 0 {
return errs
}
packer . LogSecretFilter . Set ( p . config . PublicKey , p . config . PrivateKey )
log . Println ( p . config )
return nil
}
func ( p * PostProcessor ) PostProcess ( ctx context . Context , ui packer . Ui , artifact packer . Artifact ) ( packer . Artifact , bool , bool , error ) {
var err error
2020-01-30 05:27:58 -05:00
generatedData := artifact . State ( "generated_data" )
if generatedData == nil {
// Make sure it's not a nil map so we can assign to it later.
generatedData = make ( map [ string ] interface { } )
}
p . config . ctx . Data = generatedData
2019-10-12 04:46:21 -04:00
client , err := p . config . Client ( )
if err != nil {
2019-10-18 02:52:20 -04:00
return nil , false , false , fmt . Errorf ( "Failed to connect ucloud client %s" , err )
2019-10-12 04:46:21 -04:00
}
uhostconn := client . UHostConn
ufileconn := client . UFileConn
// Render this key since we didn't in the configure phase
p . config . UFileKey , err = interpolate . Render ( p . config . UFileKey , & p . config . ctx )
if err != nil {
return nil , false , false , fmt . Errorf ( "Error rendering ufile_key_name template: %s" , err )
}
2019-10-18 02:52:20 -04:00
ui . Message ( fmt . Sprintf ( "Rendered ufile_key_name as %s" , p . config . UFileKey ) )
2019-10-12 04:46:21 -04:00
2019-10-18 02:52:20 -04:00
ui . Message ( "Looking for image in artifact" )
2019-10-12 04:46:21 -04:00
// Locate the files output from the builder
var source string
for _ , path := range artifact . Files ( ) {
if strings . HasSuffix ( path , "." + p . config . Format ) {
source = path
break
}
}
// Hope we found something useful
if source == "" {
return nil , false , false , fmt . Errorf ( "No %s image file found in artifact from builder" , p . config . Format )
}
keyName := p . config . UFileKey
bucketName := p . config . UFileBucket
2019-10-25 05:24:55 -04:00
// query bucket
domain , err := queryBucket ( ufileconn , bucketName )
if err != nil {
return nil , false , false , fmt . Errorf ( "Failed to query bucket, %s" , err )
}
var bucketHost string
if p . config . BaseUrl != "" {
// skip error because it has been validated by prepare
urlObj , _ := url . Parse ( p . config . BaseUrl )
bucketHost = urlObj . Host
} else {
bucketHost = "api.ucloud.cn"
}
fileHost := strings . SplitN ( domain , "." , 2 ) [ 1 ]
2019-10-12 04:46:21 -04:00
config := & ufsdk . Config {
PublicKey : p . config . PublicKey ,
PrivateKey : p . config . PrivateKey ,
BucketName : bucketName ,
2019-10-25 05:24:55 -04:00
FileHost : fileHost ,
BucketHost : bucketHost ,
2019-10-12 04:46:21 -04:00
}
2019-10-25 05:24:55 -04:00
ui . Say ( fmt . Sprintf ( "Waiting for uploading image file %s to UFile: %s/%s..." , source , bucketName , keyName ) )
2019-10-12 04:46:21 -04:00
2019-10-18 02:52:20 -04:00
// upload file to bucket
ufileUrl , err := uploadFile ( ufileconn , config , keyName , source )
2019-10-12 04:46:21 -04:00
if err != nil {
2019-10-18 02:52:20 -04:00
return nil , false , false , fmt . Errorf ( "Failed to Upload image file, %s" , err )
2019-10-12 04:46:21 -04:00
}
2019-10-25 05:24:55 -04:00
ui . Say ( fmt . Sprintf ( "Image file %s has been uploaded to UFile: %s/%s" , source , bucketName , keyName ) )
2019-10-12 04:46:21 -04:00
2019-10-18 02:52:20 -04:00
importImageRequest := p . buildImportImageRequest ( uhostconn , ufileUrl )
2019-10-12 04:46:21 -04:00
importImageResponse , err := uhostconn . ImportCustomImage ( importImageRequest )
if err != nil {
2019-10-25 05:24:55 -04:00
return nil , false , false , fmt . Errorf ( "Failed to import image from UFile: %s/%s, %s" , bucketName , keyName , err )
2019-10-12 04:46:21 -04:00
}
2019-10-25 05:24:55 -04:00
ui . Say ( fmt . Sprintf ( "Waiting for importing image from UFile: %s/%s ..." , bucketName , keyName ) )
2019-10-12 04:46:21 -04:00
2019-10-18 02:52:20 -04:00
imageId := importImageResponse . ImageId
2019-10-12 04:46:21 -04:00
err = retry . Config {
2019-10-18 02:52:20 -04:00
StartTimeout : time . Duration ( p . config . WaitImageReadyTimeout ) * time . Second ,
2019-10-12 04:46:21 -04:00
ShouldRetry : func ( err error ) bool {
return ucloudcommon . IsExpectedStateError ( err )
} ,
2019-10-18 02:52:20 -04:00
RetryDelay : ( & retry . Backoff { InitialBackoff : 2 * time . Second , MaxBackoff : 12 * time . Second , Multiplier : 2 } ) . Linear ,
2019-10-12 04:46:21 -04:00
} . Run ( ctx , func ( ctx context . Context ) error {
image , err := client . DescribeImageById ( imageId )
if err != nil {
return err
}
if image . State == ucloudcommon . ImageStateUnavailable {
2019-10-18 02:52:20 -04:00
return fmt . Errorf ( "Unavailable importing image %q" , imageId )
2019-10-12 04:46:21 -04:00
}
if image . State != ucloudcommon . ImageStateAvailable {
return ucloudcommon . NewExpectedStateError ( "image" , imageId )
}
return nil
} )
if err != nil {
2019-10-25 05:24:55 -04:00
return nil , false , false , fmt . Errorf ( "Error on waiting for importing image %q from UFile: %s/%s, %s" ,
imageId , bucketName , keyName , err )
2019-10-12 04:46:21 -04:00
}
// Add the reported UCloud image ID to the artifact list
2019-10-18 02:52:20 -04:00
ui . Say ( fmt . Sprintf ( "Importing created ucloud image %q in region %q Complete." , imageId , p . config . Region ) )
2019-10-12 04:46:21 -04:00
images := [ ] ucloudcommon . ImageInfo {
{
ImageId : imageId ,
ProjectId : p . config . ProjectId ,
Region : p . config . Region ,
} ,
}
artifact = & ucloudcommon . Artifact {
UCloudImages : ucloudcommon . NewImageInfoSet ( images ) ,
BuilderIdValue : BuilderId ,
Client : client ,
}
if ! p . config . SkipClean {
2019-10-18 02:52:20 -04:00
ui . Message ( fmt . Sprintf ( "Deleting import source UFile: %s/%s" , p . config . UFileBucket , p . config . UFileKey ) )
2019-10-12 04:46:21 -04:00
if err = deleteFile ( config , p . config . UFileKey ) ; err != nil {
2019-10-18 02:52:20 -04:00
return nil , false , false , fmt . Errorf ( "Failed to delete UFile: %s/%s, %s" , p . config . UFileBucket , p . config . UFileKey , err )
2019-10-12 04:46:21 -04:00
}
}
return artifact , false , false , nil
}
func ( p * PostProcessor ) buildImportImageRequest ( conn * uhost . UHostClient , privateUrl string ) * uhost . ImportCustomImageRequest {
req := conn . NewImportCustomImageRequest ( )
req . ImageName = ucloud . String ( p . config . ImageName )
req . ImageDescription = ucloud . String ( p . config . ImageDescription )
req . UFileUrl = ucloud . String ( privateUrl )
req . OsType = ucloud . String ( p . config . OSType )
req . OsName = ucloud . String ( p . config . OSName )
req . Format = ucloud . String ( imageFormatMap . Convert ( p . config . Format ) )
req . Auth = ucloud . Bool ( true )
return req
}
2019-10-25 05:24:55 -04:00
func queryBucket ( conn * ufile . UFileClient , bucketName string ) ( string , error ) {
req := conn . NewDescribeBucketRequest ( )
req . BucketName = ucloud . String ( bucketName )
resp , err := conn . DescribeBucket ( req )
if err != nil {
return "" , fmt . Errorf ( "error on reading bucket %q when create bucket, %s" , bucketName , err )
2019-10-12 04:46:21 -04:00
}
2019-10-25 05:24:55 -04:00
if len ( resp . DataSet ) < 1 {
return "" , fmt . Errorf ( "the bucket %s is not exit" , bucketName )
2019-10-12 04:46:21 -04:00
}
2019-10-25 05:24:55 -04:00
return resp . DataSet [ 0 ] . Domain . Src [ 0 ] , nil
2019-10-12 04:46:21 -04:00
}
2019-10-18 02:52:20 -04:00
func uploadFile ( conn * ufile . UFileClient , config * ufsdk . Config , keyName , source string ) ( string , error ) {
2019-10-12 04:46:21 -04:00
reqFile , err := ufsdk . NewFileRequest ( config , nil )
if err != nil {
2019-10-18 02:52:20 -04:00
return "" , fmt . Errorf ( "error on building upload file request, %s" , err )
2019-10-12 04:46:21 -04:00
}
2019-10-18 02:52:20 -04:00
// upload file in segments
err = reqFile . AsyncMPut ( source , keyName , "" )
2019-10-12 04:46:21 -04:00
if err != nil {
2019-10-18 02:52:20 -04:00
return "" , fmt . Errorf ( "error on upload file, %s, details: %s" , err , reqFile . DumpResponse ( true ) )
2019-10-12 04:46:21 -04:00
}
2019-10-18 02:52:20 -04:00
reqBucket := conn . NewDescribeBucketRequest ( )
reqBucket . BucketName = ucloud . String ( config . BucketName )
resp , err := conn . DescribeBucket ( reqBucket )
2019-10-12 04:46:21 -04:00
if err != nil {
2019-10-18 02:52:20 -04:00
return "" , fmt . Errorf ( "error on reading bucket list when upload file, %s" , err )
2019-10-12 04:46:21 -04:00
}
2019-10-18 02:52:20 -04:00
if resp . DataSet [ 0 ] . Type == "private" {
2019-10-22 22:41:38 -04:00
return reqFile . GetPrivateURL ( keyName , time . Duration ( 24 * 60 * 60 ) * time . Second ) , nil
2019-10-12 04:46:21 -04:00
}
2019-10-18 02:52:20 -04:00
return reqFile . GetPublicURL ( keyName ) , nil
2019-10-12 04:46:21 -04:00
}
func deleteFile ( config * ufsdk . Config , keyName string ) error {
req , err := ufsdk . NewFileRequest ( config , nil )
if err != nil {
return fmt . Errorf ( "error on new deleting file, %s" , err )
}
req . DeleteFile ( keyName )
if err != nil {
return fmt . Errorf ( "error on deleting file, %s" , err )
}
return nil
}