-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhandlers.go
78 lines (70 loc) · 2.07 KB
/
handlers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
///////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
///////////////////////////////////////////////////////////////////////
package main
import (
"github.com/vmware/govmomi/vim25/types"
)
// NO TESTS
func processEventMetadata(e types.BaseEvent) interface{} {
// TODO: Implement automated way of generating payload based on vSphere API WSDL
switch concreteEvent := e.(type) {
case *types.VmBeingCreatedEvent:
return handleVMBeingCreatedEvent(concreteEvent)
case *types.VmBeingDeployedEvent:
return handleVMBeingDeployedEvent(concreteEvent)
case *types.VmDeployedEvent:
return handleVMDeployedEvent(concreteEvent)
case *types.VmEvent:
return handleVMEvent(concreteEvent)
default:
return nil
}
}
func handleVMBeingCreatedEvent(e *types.VmBeingCreatedEvent) interface{} {
return struct {
VMName string `json:"vm_name"`
VMID string `json:"vm_id"`
NumCPUs int32 `json:"num_cpus"`
MemMB int64 `json:"mem_mb"`
}{
VMName: e.ConfigSpec.Name,
VMID: e.Vm.Vm.String(),
NumCPUs: e.ConfigSpec.NumCPUs * e.ConfigSpec.NumCoresPerSocket,
MemMB: e.ConfigSpec.MemoryMB,
}
}
func handleVMBeingDeployedEvent(e *types.VmBeingDeployedEvent) interface{} {
return struct {
VMName string `json:"vm_name"`
VMID string `json:"vm_id"`
SrcTemplate string `json:"src_template"`
}{
VMName: e.Vm.Name,
VMID: e.Vm.Vm.String(),
SrcTemplate: e.SrcTemplate.Name,
}
}
func handleVMDeployedEvent(e *types.VmDeployedEvent) interface{} {
return struct {
VMName string `json:"vm_name"`
VMID string `json:"vm_id"`
SrcTemplate string `json:"src_template"`
}{
VMName: e.Vm.Name,
VMID: e.Vm.Vm.String(),
SrcTemplate: e.SrcTemplate.Name,
}
}
func handleVMEvent(e *types.VmEvent) interface{} {
return struct {
VMName string `json:"vm_name"`
VMID string `json:"vm_id"`
IsTemplate bool `json:"is_template"`
}{
VMName: e.Vm.Name,
VMID: e.Vm.Vm.String(),
IsTemplate: e.Template,
}
}