2022-08-13 22:41:01 +08:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2023-02-15 16:51:14 +08:00
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
2022-12-06 16:37:38 +08:00
|
|
|
"code.gitea.io/actions-proto-go/ping/v1/pingv1connect"
|
|
|
|
"code.gitea.io/actions-proto-go/runner/v1/runnerv1connect"
|
2022-11-29 10:35:59 +08:00
|
|
|
"gitea.com/gitea/act_runner/core"
|
|
|
|
"github.com/bufbuild/connect-go"
|
2022-08-13 22:41:01 +08:00
|
|
|
)
|
|
|
|
|
2023-02-15 16:51:14 +08:00
|
|
|
func getHttpClient(endpoint string, insecure bool) *http.Client {
|
|
|
|
if strings.HasPrefix(endpoint, "https://") && insecure {
|
|
|
|
return &http.Client{
|
|
|
|
Transport: &http.Transport{
|
|
|
|
TLSClientConfig: &tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return http.DefaultClient
|
|
|
|
}
|
|
|
|
|
2022-08-13 22:41:01 +08:00
|
|
|
// New returns a new runner client.
|
2023-02-15 16:51:14 +08:00
|
|
|
func New(endpoint string, insecure bool, uuid, token string, opts ...connect.ClientOption) *HTTPClient {
|
2022-12-06 16:37:38 +08:00
|
|
|
baseURL := strings.TrimRight(endpoint, "/") + "/api/actions"
|
2022-08-13 22:41:01 +08:00
|
|
|
|
2022-11-29 10:35:59 +08:00
|
|
|
opts = append(opts, connect.WithInterceptors(connect.UnaryInterceptorFunc(func(next connect.UnaryFunc) connect.UnaryFunc {
|
|
|
|
return func(ctx context.Context, req connect.AnyRequest) (connect.AnyResponse, error) {
|
|
|
|
if uuid != "" {
|
|
|
|
req.Header().Set(core.UUIDHeader, uuid)
|
|
|
|
}
|
|
|
|
if token != "" {
|
|
|
|
req.Header().Set(core.TokenHeader, token)
|
|
|
|
}
|
|
|
|
return next(ctx, req)
|
2022-08-13 22:41:01 +08:00
|
|
|
}
|
2022-11-29 10:35:59 +08:00
|
|
|
})))
|
2022-11-23 11:42:02 +08:00
|
|
|
|
2022-09-25 18:54:00 +08:00
|
|
|
return &HTTPClient{
|
|
|
|
PingServiceClient: pingv1connect.NewPingServiceClient(
|
2023-02-15 16:51:14 +08:00
|
|
|
getHttpClient(endpoint, insecure),
|
2022-11-23 11:42:02 +08:00
|
|
|
baseURL,
|
2022-11-29 10:35:59 +08:00
|
|
|
opts...,
|
2022-09-25 18:54:00 +08:00
|
|
|
),
|
|
|
|
RunnerServiceClient: runnerv1connect.NewRunnerServiceClient(
|
2023-02-15 16:51:14 +08:00
|
|
|
getHttpClient(endpoint, insecure),
|
2022-11-23 11:42:02 +08:00
|
|
|
baseURL,
|
2022-11-29 10:35:59 +08:00
|
|
|
opts...,
|
2022-09-25 18:54:00 +08:00
|
|
|
),
|
2022-11-15 22:42:41 +08:00
|
|
|
endpoint: endpoint,
|
2023-02-15 16:51:14 +08:00
|
|
|
insecure: insecure,
|
2022-09-25 18:54:00 +08:00
|
|
|
}
|
2022-08-13 22:41:01 +08:00
|
|
|
}
|
|
|
|
|
2022-11-15 22:42:41 +08:00
|
|
|
func (c *HTTPClient) Address() string {
|
|
|
|
return c.endpoint
|
|
|
|
}
|
|
|
|
|
2023-02-15 16:51:14 +08:00
|
|
|
func (c *HTTPClient) Insecure() bool {
|
|
|
|
return c.insecure
|
|
|
|
}
|
|
|
|
|
2022-08-28 14:05:56 +08:00
|
|
|
var _ Client = (*HTTPClient)(nil)
|
|
|
|
|
2022-08-13 22:41:01 +08:00
|
|
|
// An HTTPClient manages communication with the runner API.
|
|
|
|
type HTTPClient struct {
|
2022-09-25 18:54:00 +08:00
|
|
|
pingv1connect.PingServiceClient
|
|
|
|
runnerv1connect.RunnerServiceClient
|
2022-11-15 22:42:41 +08:00
|
|
|
endpoint string
|
2023-02-15 16:51:14 +08:00
|
|
|
insecure bool
|
2022-09-03 20:57:32 +08:00
|
|
|
}
|