packer-cn/builder/vsphere/driver/driver.go

98 lines
2.4 KiB
Go
Raw Normal View History

package driver
2017-07-01 23:46:38 -04:00
import (
"context"
"fmt"
"net/url"
"time"
2018-10-31 17:42:24 -04:00
"github.com/vmware/govmomi"
"github.com/vmware/govmomi/find"
2017-07-01 23:46:38 -04:00
"github.com/vmware/govmomi/object"
2017-08-15 19:49:44 -04:00
"github.com/vmware/govmomi/session"
"github.com/vmware/govmomi/vapi/rest"
2017-08-15 19:49:44 -04:00
"github.com/vmware/govmomi/vim25"
2018-10-31 17:42:24 -04:00
"github.com/vmware/govmomi/vim25/soap"
2017-07-01 23:46:38 -04:00
)
type Driver struct {
// context that controls the authenticated sessions used to run the VM commands
2017-07-01 23:46:38 -04:00
ctx context.Context
client *govmomi.Client
2020-08-20 11:55:25 -04:00
restClient *RestClient
2017-07-01 23:46:38 -04:00
finder *find.Finder
2017-07-02 16:29:50 -04:00
datacenter *object.Datacenter
2017-07-01 23:46:38 -04:00
}
type ConnectConfig struct {
VCenterServer string
Username string
Password string
InsecureConnection bool
Datacenter string
}
func NewDriver(config *ConnectConfig) (*Driver, error) {
ctx := context.TODO()
2019-07-08 10:48:37 -04:00
vcenterUrl, err := url.Parse(fmt.Sprintf("https://%v/sdk", config.VCenterServer))
2017-07-01 23:46:38 -04:00
if err != nil {
2017-07-02 16:29:50 -04:00
return nil, err
2017-07-01 23:46:38 -04:00
}
2017-08-15 19:49:44 -04:00
credentials := url.UserPassword(config.Username, config.Password)
2019-07-08 10:48:37 -04:00
vcenterUrl.User = credentials
2017-08-15 19:49:44 -04:00
2019-07-08 10:48:37 -04:00
soapClient := soap.NewClient(vcenterUrl, config.InsecureConnection)
2017-08-15 19:49:44 -04:00
vimClient, err := vim25.NewClient(ctx, soapClient)
if err != nil {
return nil, err
}
vimClient.RoundTripper = session.KeepAlive(vimClient.RoundTripper, 10*time.Minute)
client := &govmomi.Client{
Client: vimClient,
SessionManager: session.NewManager(vimClient),
}
err = client.SessionManager.Login(ctx, credentials)
2017-07-01 23:46:38 -04:00
if err != nil {
2017-07-02 16:29:50 -04:00
return nil, err
2017-07-01 23:46:38 -04:00
}
finder := find.NewFinder(client.Client, false)
datacenter, err := finder.DatacenterOrDefault(ctx, config.Datacenter)
if err != nil {
2017-07-02 16:29:50 -04:00
return nil, err
2017-07-01 23:46:38 -04:00
}
finder.SetDatacenter(datacenter)
d := Driver{
2020-08-20 11:55:25 -04:00
ctx: ctx,
client: client,
restClient: &RestClient{
client: rest.NewClient(vimClient),
credentials: credentials,
},
2017-07-01 23:46:38 -04:00
datacenter: datacenter,
finder: finder,
}
2017-07-02 16:29:50 -04:00
return &d, nil
2017-07-01 23:46:38 -04:00
}
2020-08-20 11:55:25 -04:00
// The rest.Client requires vCenter.
// RestClient is to modularize the rest.Client session and use it only when is necessary.
// This will allow users without vCenter to use the other features that doesn't use the rest.Client.
// To use the client login/logout must be done to create an authenticated session.
type RestClient struct {
client *rest.Client
credentials *url.Userinfo
}
func (r *RestClient) Login(ctx context.Context) error {
return r.client.Login(ctx, r.credentials)
}
func (r *RestClient) Logout(ctx context.Context) error {
return r.client.Logout(ctx)
}