paypale/webprofile.go

121 lines
2.6 KiB
Go
Raw Normal View History

2016-10-25 21:44:10 +02:00
package paypalsdk
import (
"fmt"
"net/http"
)
// CreateWebProfile creates a new web experience profile in Paypal
//
// Allows for the customisation of the payment experience
//
// Endpoint: POST /v1/payment-experience/web-profiles
func (c *Client) CreateWebProfile(wp WebProfile) (*WebProfile, error) {
url := fmt.Sprintf("%s%s", c.APIBase, "/v1/payment-experience/web-profiles")
req, err := c.NewRequest(http.MethodPost, url, wp)
if err != nil {
return &WebProfile{}, err
}
response := &WebProfile{}
err = c.SendWithAuth(req, response)
if err != nil {
return response, err
}
return response, nil
}
// GetWebProfile gets an exists payment experience from Paypal
//
// Endpoint: GET /v1/payment-experience/web-profiles/<profile-id>
func (c *Client) GetWebProfile(profileID string) (*WebProfile, error) {
var wp WebProfile
url := fmt.Sprintf("%s%s%s", c.APIBase, "/v1/payment-experience/web-profiles/", profileID)
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return &wp, err
}
err = c.SendWithAuth(req, &wp)
if err != nil {
return &wp, err
}
if wp.ID == "" {
return &wp, fmt.Errorf("paypalsdk: unable to get web profile with ID = %s", profileID)
}
return &wp, nil
}
// GetWebProfiles retreieves web experience profiles from Paypal
//
// Endpoint: GET /v1/payment-experience/web-profiles
func (c *Client) GetWebProfiles() ([]WebProfile, error) {
var wps []WebProfile
url := fmt.Sprintf("%s%s", c.APIBase, "/v1/payment-experience/web-profiles")
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return wps, err
}
err = c.SendWithAuth(req, &wps)
if err != nil {
return wps, err
}
return wps, nil
}
// SetWebProfile sets a web experience profile in Paypal with given id
//
// Endpoint: PUT /v1/payment-experience/web-profiles
func (c *Client) SetWebProfile(wp WebProfile) error {
if wp.ID == "" {
return fmt.Errorf("paypalsdk: no ID specified for WebProfile")
}
url := fmt.Sprintf("%s%s%s", c.APIBase, "/v1/payment-experience/web-profiles/", wp.ID)
req, err := c.NewRequest(http.MethodPut, url, wp)
if err != nil {
return err
}
err = c.SendWithAuth(req, nil)
if err != nil {
return err
}
return nil
}
// DeleteWebProfile deletes a web experience profile from Paypal with given id
//
// Endpoint: DELETE /v1/payment-experience/web-profiles
func (c *Client) DeleteWebProfile(profileID string) error {
url := fmt.Sprintf("%s%s%s", c.APIBase, "/v1/payment-experience/web-profiles/", profileID)
req, err := c.NewRequest(http.MethodPut, url, nil)
if err != nil {
return err
}
err = c.SendWithAuth(req, nil)
if err != nil {
return err
}
return nil
}