mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-05 00:45:50 +08:00
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package device
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/go-kit/kit/endpoint"
|
|
"github.com/go-kit/kit/log"
|
|
httptransport "github.com/go-kit/kit/transport/http"
|
|
|
|
"github.com/micromdm/micromdm/pkg/httputil"
|
|
)
|
|
|
|
func NewHTTPClient(instance, token string, logger log.Logger, opts ...httptransport.ClientOption) (Service, error) {
|
|
u, err := url.Parse(instance)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var listDevicesEndpoint endpoint.Endpoint
|
|
{
|
|
listDevicesEndpoint = httptransport.NewClient(
|
|
"POST",
|
|
httputil.CopyURL(u, "/v1/devices"),
|
|
httputil.EncodeRequestWithToken(token, httptransport.EncodeJSONRequest),
|
|
decodeListDevicesResponse,
|
|
opts...,
|
|
).Endpoint()
|
|
}
|
|
|
|
var removeDevicesEndpoint endpoint.Endpoint
|
|
{
|
|
removeDevicesEndpoint = httptransport.NewClient(
|
|
"DELETE",
|
|
httputil.CopyURL(u, "/v1/devices"),
|
|
httputil.EncodeRequestWithToken(token, httptransport.EncodeJSONRequest),
|
|
decodeRemoveDevicesResponse,
|
|
opts...,
|
|
).Endpoint()
|
|
}
|
|
|
|
return Endpoints{
|
|
ListDevicesEndpoint: listDevicesEndpoint,
|
|
RemoveDevicesEndpoint: removeDevicesEndpoint,
|
|
}, nil
|
|
|
|
}
|