// SetupHTTP attaches all the needed handlers to provide the HTTP API. func (c *CloudAPI) SetupHTTP(mux *httprouter.Router) { baseRoute := "/" + c.ServiceInstance.UserAccount mux.NotFound = NotFound{} mux.MethodNotAllowed = MethodNotAllowed{} // keys keysRoute := baseRoute + "/keys" mux.GET(keysRoute, c.handler((*CloudAPI).handleListKeys)) mux.POST(keysRoute, c.handler((*CloudAPI).handleCreateKey)) // key keyRoute := keysRoute + "/:id" mux.GET(keyRoute, c.handler((*CloudAPI).handleGetKey)) mux.DELETE(keyRoute, c.handler((*CloudAPI).handleDeleteKey)) // images imagesRoute := baseRoute + "/images" mux.GET(imagesRoute, c.handler((*CloudAPI).handleListImages)) // image imageRoute := imagesRoute + "/:id" mux.GET(imageRoute, c.handler((*CloudAPI).handleGetImage)) mux.POST(imageRoute, c.handler((*CloudAPI).handleCreateImageFromMachine)) mux.DELETE(imageRoute, c.handler((*CloudAPI).handleDeleteImage)) // packages packagesRoute := baseRoute + "/packages" mux.GET(packagesRoute, c.handler((*CloudAPI).handleListPackages)) // package packageRoute := packagesRoute + "/:id" mux.GET(packageRoute, c.handler((*CloudAPI).handleGetPackage)) // machines machinesRoute := baseRoute + "/machines" mux.GET(machinesRoute, c.handler((*CloudAPI).handleListMachines)) mux.HEAD(machinesRoute, c.handler((*CloudAPI).handleCountMachines)) mux.POST(machinesRoute, c.handler((*CloudAPI).handleCreateMachine)) // machine machineRoute := machinesRoute + "/:id" mux.GET(machineRoute, c.handler((*CloudAPI).handleGetMachine)) mux.POST(machineRoute, c.handler((*CloudAPI).handleUpdateMachine)) mux.DELETE(machineRoute, c.handler((*CloudAPI).handleDeleteMachine)) // machine metadata machineMetadataRoute := machineRoute + "/metadata" mux.GET(machineMetadataRoute, c.handler((*CloudAPI).handleGetMachineMetadata)) mux.POST(machineMetadataRoute, c.handler((*CloudAPI).handleUpdateMachineMetadata)) mux.DELETE(machineMetadataRoute, c.handler((*CloudAPI).handleDeleteAllMachineMetadata)) // machine metadata (individual key) machineMetadataKeyRoute := machineMetadataRoute + "/:key" mux.DELETE(machineMetadataKeyRoute, c.handler((*CloudAPI).handleDeleteMachineMetadata)) // machine tags machineTagsRoute := machineRoute + "/tags" mux.GET(machineTagsRoute, c.handler((*CloudAPI).handleListMachineTags)) mux.POST(machineTagsRoute, c.handler((*CloudAPI).handleAddMachineTags)) mux.PUT(machineTagsRoute, c.handler((*CloudAPI).handleReplaceMachineTags)) mux.DELETE(machineTagsRoute, c.handler((*CloudAPI).handleDeleteMachineTags)) // machine tag machineTagRoute := machineTagsRoute + "/:tag" mux.GET(machineTagRoute, c.handler((*CloudAPI).handleGetMachineTag)) mux.DELETE(machineTagRoute, c.handler((*CloudAPI).handleDeleteMachineTag)) // machine firewall rules machineFWRulesRoute := machineRoute + "/fwrules" mux.GET(machineFWRulesRoute, c.handler((*CloudAPI).handleMachineFirewallRules)) // machine NICs machineNICsRoute := machineRoute + "/nics" mux.GET(machineNICsRoute, c.handler((*CloudAPI).handleListNICs)) mux.POST(machineNICsRoute, c.handler((*CloudAPI).handleAddNIC)) // machine NIC machineNICRoute := machineNICsRoute + "/:mac" mux.GET(machineNICRoute, c.handler((*CloudAPI).handleGetNIC)) mux.DELETE(machineNICRoute, c.handler((*CloudAPI).handleRemoveNIC)) // firewall rules firewallRulesRoute := baseRoute + "/fwrules" mux.GET(firewallRulesRoute, c.handler((*CloudAPI).handleListFirewallRules)) mux.POST(firewallRulesRoute, c.handler((*CloudAPI).handleCreateFirewallRule)) // firewall rule firewallRuleRoute := firewallRulesRoute + "/:id" mux.GET(firewallRuleRoute, c.handler((*CloudAPI).handleGetFirewallRule)) mux.POST(firewallRuleRoute, c.handler((*CloudAPI).handleUpdateFirewallRule)) mux.DELETE(firewallRuleRoute, c.handler((*CloudAPI).handleDeleteFirewallRule)) mux.POST(firewallRuleRoute+"/enable", c.handler((*CloudAPI).handleEnableFirewallRule)) mux.POST(firewallRuleRoute+"/disable", c.handler((*CloudAPI).handleDisableFirewallRule)) // networks networksRoute := baseRoute + "/networks" mux.GET(networksRoute, c.handler((*CloudAPI).handleListNetworks)) // network networkRoute := networksRoute + "/:id" mux.GET(networkRoute, c.handler((*CloudAPI).handleGetNetwork)) // fabric VLANs fabricVLANsRoute := baseRoute + "/fabrics/:fabric/vlans" mux.GET(fabricVLANsRoute, c.handler((*CloudAPI).handleListFabricVLANs)) mux.POST(fabricVLANsRoute, c.handler((*CloudAPI).handleCreateFabricVLAN)) // fabric VLAN fabricVLANRoute := fabricVLANsRoute + "/:id" mux.GET(fabricVLANRoute, c.handler((*CloudAPI).handleGetFabricVLAN)) mux.PUT(fabricVLANRoute, c.handler((*CloudAPI).handleUpdateFabricVLAN)) mux.DELETE(fabricVLANRoute, c.handler((*CloudAPI).handleDeleteFabricVLAN)) // fabric VLAN networks fabricVLANNetworksRoute := fabricVLANRoute + "/networks" mux.GET(fabricVLANNetworksRoute, c.handler((*CloudAPI).handleListFabricNetworks)) mux.POST(fabricVLANNetworksRoute, c.handler((*CloudAPI).handleCreateFabricNetwork)) // fabric VLAN network fabricVLANNetworkRoute := fabricVLANNetworksRoute + "/:network" mux.GET(fabricVLANNetworkRoute, c.handler((*CloudAPI).handleGetFabricNetwork)) mux.DELETE(fabricVLANNetworkRoute, c.handler((*CloudAPI).handleDeleteFabricNetwork)) // services servicesRoute := baseRoute + "/services" mux.GET(servicesRoute, c.handler((*CloudAPI).handleGetServices)) }