mirror of
https://github.com/sstent/go-garth.git
synced 2025-12-05 23:51:42 +00:00
131 lines
3.2 KiB
Go
131 lines
3.2 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"mime/multipart"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"garmin-connect/garth/errors"
|
|
)
|
|
|
|
func (c *Client) ConnectAPI(path, method string, data interface{}) (interface{}, error) {
|
|
url := fmt.Sprintf("https://connectapi.%s%s", c.Domain, path)
|
|
|
|
var body io.Reader
|
|
if data != nil && (method == "POST" || method == "PUT") {
|
|
jsonData, err := json.Marshal(data)
|
|
if err != nil {
|
|
return nil, &errors.APIError{GarthHTTPError: errors.GarthHTTPError{
|
|
GarthError: errors.GarthError{Message: "Failed to marshal request data", Cause: err}}}
|
|
}
|
|
body = bytes.NewReader(jsonData)
|
|
}
|
|
|
|
req, err := http.NewRequest(method, url, body)
|
|
if err != nil {
|
|
return nil, &errors.APIError{GarthHTTPError: errors.GarthHTTPError{
|
|
GarthError: errors.GarthError{Message: "Failed to create request", Cause: err}}}
|
|
}
|
|
|
|
req.Header.Set("Authorization", c.AuthToken)
|
|
req.Header.Set("User-Agent", "GCM-iOS-5.7.2.1")
|
|
if body != nil {
|
|
req.Header.Set("Content-Type", "application/json")
|
|
}
|
|
|
|
resp, err := c.HTTPClient.Do(req)
|
|
if err != nil {
|
|
return nil, &errors.APIError{GarthHTTPError: errors.GarthHTTPError{
|
|
GarthError: errors.GarthError{Message: "API request failed", Cause: err}}}
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode == 204 {
|
|
return nil, nil
|
|
}
|
|
|
|
if resp.StatusCode >= 400 {
|
|
bodyBytes, _ := io.ReadAll(resp.Body)
|
|
return nil, &errors.APIError{GarthHTTPError: errors.GarthHTTPError{
|
|
StatusCode: resp.StatusCode,
|
|
Response: string(bodyBytes),
|
|
GarthError: errors.GarthError{Message: "API error"}}}
|
|
}
|
|
|
|
var result interface{}
|
|
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
|
|
return nil, &errors.IOError{GarthError: errors.GarthError{
|
|
Message: "Failed to parse response", Cause: err}}
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func (c *Client) Download(path string) ([]byte, error) {
|
|
url := fmt.Sprintf("https://connectapi.%s%s", c.Domain, path)
|
|
req, err := http.NewRequest("GET", url, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
req.Header.Set("Authorization", c.AuthToken)
|
|
req.Header.Set("User-Agent", "GCM-iOS-5.7.2.1")
|
|
|
|
resp, err := c.HTTPClient.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
return io.ReadAll(resp.Body)
|
|
}
|
|
|
|
func (c *Client) Upload(filePath, uploadPath string) (map[string]interface{}, error) {
|
|
file, err := os.Open(filePath)
|
|
if err != nil {
|
|
return nil, &errors.IOError{GarthError: errors.GarthError{
|
|
Message: "Failed to open file", Cause: err}}
|
|
}
|
|
defer file.Close()
|
|
|
|
var b bytes.Buffer
|
|
writer := multipart.NewWriter(&b)
|
|
part, err := writer.CreateFormFile("file", filepath.Base(filePath))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
_, err = io.Copy(part, file)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
writer.Close()
|
|
|
|
url := fmt.Sprintf("https://connectapi.%s%s", c.Domain, uploadPath)
|
|
req, err := http.NewRequest("POST", url, &b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
req.Header.Set("Authorization", c.AuthToken)
|
|
req.Header.Set("Content-Type", writer.FormDataContentType())
|
|
|
|
resp, err := c.HTTPClient.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
var result map[string]interface{}
|
|
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|