mirror of
https://github.com/safing/portmaster
synced 2025-04-22 20:09:09 +00:00
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/http/cookiejar"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/safing/portbase/log"
|
|
)
|
|
|
|
const (
|
|
apiBaseURL = "http://127.0.0.1:817/api/v1/"
|
|
apiShutdownEndpoint = "core/shutdown"
|
|
)
|
|
|
|
var httpAPIClient *http.Client
|
|
|
|
func init() {
|
|
// Make cookie jar.
|
|
jar, err := cookiejar.New(nil)
|
|
if err != nil {
|
|
log.Warningf("http-api: failed to create cookie jar: %s", err)
|
|
jar = nil
|
|
}
|
|
|
|
// Create client.
|
|
httpAPIClient = &http.Client{
|
|
Jar: jar,
|
|
Timeout: 3 * time.Second,
|
|
}
|
|
}
|
|
|
|
func httpAPIAction(endpoint string) (response string, err error) {
|
|
// Make action request.
|
|
resp, err := httpAPIClient.Post(apiBaseURL+endpoint, "", nil)
|
|
if err != nil {
|
|
return "", fmt.Errorf("request failed: %w", err)
|
|
}
|
|
|
|
// Read the response body.
|
|
defer func() { _ = resp.Body.Close() }()
|
|
respData, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to read data: %w", err)
|
|
}
|
|
response = strings.TrimSpace(string(respData))
|
|
|
|
// Check if the request was successful on the server.
|
|
if resp.StatusCode >= 200 && resp.StatusCode < 300 {
|
|
return response, fmt.Errorf("server failed with %s: %s", resp.Status, response)
|
|
}
|
|
|
|
return response, nil
|
|
}
|
|
|
|
// TriggerShutdown triggers a shutdown via the APi.
|
|
func TriggerShutdown() error {
|
|
_, err := httpAPIAction(apiShutdownEndpoint)
|
|
return err
|
|
}
|