-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/main' into feature/user-client-update
- Loading branch information
Showing
4 changed files
with
212 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
package cloudconnexa | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
"fmt" | ||
"net/http" | ||
) | ||
|
||
type ApplicationRoute struct { | ||
Value string `json:"value"` | ||
AllowEmbeddedIp bool `json:"allowEmbeddedIp"` | ||
} | ||
|
||
type CustomApplicationType struct { | ||
IcmpType []Range `json:"icmpType"` | ||
Port []Range `json:"port"` | ||
Protocol string `json:"protocol"` | ||
} | ||
|
||
type ApplicationConfig struct { | ||
CustomServiceTypes []*CustomApplicationType `json:"customServiceTypes"` | ||
ServiceTypes []string `json:"serviceTypes"` | ||
} | ||
|
||
type Application struct { | ||
Name string `json:"name"` | ||
Description string `json:"description"` | ||
NetworkItemType string `json:"networkItemType"` | ||
NetworkItemId string `json:"networkItemId"` | ||
Id string `json:"id"` | ||
Routes []*ApplicationRoute `json:"routes"` | ||
Config *ApplicationConfig `json:"config"` | ||
} | ||
|
||
type ApplicationResponse struct { | ||
Application | ||
Routes []*Route `json:"routes"` | ||
} | ||
|
||
type ApplicationPageResponse struct { | ||
Content []ApplicationResponse `json:"content"` | ||
NumberOfElements int `json:"numberOfElements"` | ||
Page int `json:"page"` | ||
Size int `json:"size"` | ||
Success bool `json:"success"` | ||
TotalElements int `json:"totalElements"` | ||
TotalPages int `json:"totalPages"` | ||
} | ||
|
||
type ApplicationsService service | ||
|
||
func (c *ApplicationsService) GetApplicationsByPage(page int, pageSize int) (ApplicationPageResponse, error) { | ||
endpoint := fmt.Sprintf("%s/api/beta/applications/page?page=%d&size=%d", c.client.BaseURL, page, pageSize) | ||
req, err := http.NewRequest(http.MethodGet, endpoint, nil) | ||
if err != nil { | ||
return ApplicationPageResponse{}, err | ||
} | ||
|
||
body, err := c.client.DoRequest(req) | ||
if err != nil { | ||
return ApplicationPageResponse{}, err | ||
} | ||
|
||
var response ApplicationPageResponse | ||
err = json.Unmarshal(body, &response) | ||
if err != nil { | ||
return ApplicationPageResponse{}, err | ||
} | ||
return response, nil | ||
} | ||
|
||
func (c *ApplicationsService) List() ([]ApplicationResponse, error) { | ||
var allApplications []ApplicationResponse | ||
page := 0 | ||
pageSize := 10 | ||
|
||
for { | ||
response, err := c.GetApplicationsByPage(page, pageSize) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
allApplications = append(allApplications, response.Content...) | ||
if page >= response.TotalPages { | ||
break | ||
} | ||
page++ | ||
} | ||
return allApplications, nil | ||
} | ||
|
||
func (c *ApplicationsService) Get(id string) (*ApplicationResponse, error) { | ||
endpoint := fmt.Sprintf("%s/api/beta/applications/single?applicationId=%s", c.client.BaseURL, id) | ||
req, err := http.NewRequest(http.MethodGet, endpoint, nil) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
body, err := c.client.DoRequest(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
var application ApplicationResponse | ||
err = json.Unmarshal(body, &application) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &application, nil | ||
} | ||
|
||
func (c *ApplicationsService) GetByName(name string) (*ApplicationResponse, error) { | ||
applications, err := c.List() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, n := range applications { | ||
if n.Name == name { | ||
return &n, nil | ||
} | ||
} | ||
return nil, nil | ||
} | ||
|
||
func (c *ApplicationsService) Create(application *Application) (*ApplicationResponse, error) { | ||
applicationJson, err := json.Marshal(application) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
params := networkUrlParams(application.NetworkItemType, application.NetworkItemId) | ||
endpoint := fmt.Sprintf("%s/api/beta/applications?%s", c.client.BaseURL, params.Encode()) | ||
|
||
req, err := http.NewRequest(http.MethodPost, endpoint, bytes.NewBuffer(applicationJson)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
body, err := c.client.DoRequest(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
var s ApplicationResponse | ||
err = json.Unmarshal(body, &s) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &s, nil | ||
} | ||
|
||
func (c *ApplicationsService) Update(id string, application *Application) (*ApplicationResponse, error) { | ||
applicationJson, err := json.Marshal(application) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
endpoint := fmt.Sprintf("%s/api/beta/applications/%s", c.client.BaseURL, id) | ||
|
||
req, err := http.NewRequest(http.MethodPut, endpoint, bytes.NewBuffer(applicationJson)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
body, err := c.client.DoRequest(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
var s ApplicationResponse | ||
err = json.Unmarshal(body, &s) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &s, nil | ||
} | ||
|
||
func (c *ApplicationsService) Delete(id string) error { | ||
endpoint := fmt.Sprintf("%s/api/beta/applications/%s", c.client.BaseURL, id) | ||
req, err := http.NewRequest(http.MethodDelete, endpoint, nil) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = c.client.DoRequest(req) | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters