2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-07-19 18:55:06 -04:00
|
|
|
|
2018-11-19 17:47:03 -05:00
|
|
|
package http
|
2018-07-19 18:55:06 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-08-16 13:25:00 -04:00
|
|
|
"context"
|
2018-07-19 18:55:06 -04:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2020-08-16 13:25:00 -04:00
|
|
|
"fmt"
|
2019-07-03 01:34:32 -04:00
|
|
|
"net/http"
|
2019-10-11 21:50:54 -04:00
|
|
|
"strings"
|
2020-08-16 13:25:00 -04:00
|
|
|
"time"
|
2019-02-06 15:07:03 -05:00
|
|
|
|
|
|
|
xhttp "github.com/minio/minio/cmd/http"
|
2020-08-16 13:25:00 -04:00
|
|
|
"github.com/minio/minio/cmd/logger"
|
2018-07-19 18:55:06 -04:00
|
|
|
)
|
|
|
|
|
2021-05-27 12:54:10 -04:00
|
|
|
// Timeout for the webhook http call
|
|
|
|
const webhookCallTimeout = 5 * time.Second
|
|
|
|
|
2018-11-19 17:47:03 -05:00
|
|
|
// Target implements logger.Target and sends the json
|
2018-07-19 18:55:06 -04:00
|
|
|
// format of a log entry to the configured http endpoint.
|
|
|
|
// An internal buffer of logs is maintained but when the
|
|
|
|
// buffer is full, new logs are just ignored and an error
|
|
|
|
// is returned to the caller.
|
2018-11-19 17:47:03 -05:00
|
|
|
type Target struct {
|
2018-07-19 18:55:06 -04:00
|
|
|
// Channel of log entries
|
2018-10-12 15:25:59 -04:00
|
|
|
logCh chan interface{}
|
|
|
|
|
2020-10-02 19:19:44 -04:00
|
|
|
name string
|
2018-07-19 18:55:06 -04:00
|
|
|
// HTTP(s) endpoint
|
|
|
|
endpoint string
|
2020-04-01 23:53:07 -04:00
|
|
|
// Authorization token for `endpoint`
|
|
|
|
authToken string
|
|
|
|
// User-Agent to be set on each log to `endpoint`
|
2019-08-14 14:43:43 -04:00
|
|
|
userAgent string
|
2019-10-11 21:50:54 -04:00
|
|
|
logKind string
|
2020-03-18 19:19:29 -04:00
|
|
|
client http.Client
|
2018-07-19 18:55:06 -04:00
|
|
|
}
|
|
|
|
|
2020-10-02 19:19:44 -04:00
|
|
|
// Endpoint returns the backend endpoint
|
|
|
|
func (h *Target) Endpoint() string {
|
|
|
|
return h.endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Target) String() string {
|
|
|
|
return h.name
|
|
|
|
}
|
|
|
|
|
2020-08-16 13:25:00 -04:00
|
|
|
// Validate validate the http target
|
|
|
|
func (h *Target) Validate() error {
|
2021-05-27 12:54:10 -04:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 2*webhookCallTimeout)
|
2020-08-16 13:25:00 -04:00
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPost, h.endpoint, strings.NewReader(`{}`))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
req.Header.Set(xhttp.ContentType, "application/json")
|
|
|
|
|
|
|
|
// Set user-agent to indicate MinIO release
|
|
|
|
// version to the configured log endpoint
|
|
|
|
req.Header.Set("User-Agent", h.userAgent)
|
|
|
|
|
|
|
|
if h.authToken != "" {
|
|
|
|
req.Header.Set("Authorization", h.authToken)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := h.client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Drain any response.
|
|
|
|
xhttp.DrainBody(resp.Body)
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
switch resp.StatusCode {
|
|
|
|
case http.StatusForbidden:
|
|
|
|
return fmt.Errorf("%s returned '%s', please check if your auth token is correctly set",
|
|
|
|
h.endpoint, resp.Status)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("%s returned '%s', please check your endpoint configuration",
|
|
|
|
h.endpoint, resp.Status)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-19 17:47:03 -05:00
|
|
|
func (h *Target) startHTTPLogger() {
|
2018-07-19 18:55:06 -04:00
|
|
|
// Create a routine which sends json logs received
|
|
|
|
// from an internal channel.
|
|
|
|
go func() {
|
|
|
|
for entry := range h.logCh {
|
|
|
|
logJSON, err := json.Marshal(&entry)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-05-27 12:54:10 -04:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), webhookCallTimeout)
|
2020-08-16 13:25:00 -04:00
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPost,
|
|
|
|
h.endpoint, bytes.NewReader(logJSON))
|
2019-02-13 07:59:36 -05:00
|
|
|
if err != nil {
|
2020-08-16 13:25:00 -04:00
|
|
|
cancel()
|
2019-02-13 07:59:36 -05:00
|
|
|
continue
|
|
|
|
}
|
2019-07-03 01:34:32 -04:00
|
|
|
req.Header.Set(xhttp.ContentType, "application/json")
|
2018-07-19 18:55:06 -04:00
|
|
|
|
2019-08-14 14:43:43 -04:00
|
|
|
// Set user-agent to indicate MinIO release
|
|
|
|
// version to the configured log endpoint
|
|
|
|
req.Header.Set("User-Agent", h.userAgent)
|
|
|
|
|
2020-04-01 23:53:07 -04:00
|
|
|
if h.authToken != "" {
|
|
|
|
req.Header.Set("Authorization", h.authToken)
|
|
|
|
}
|
|
|
|
|
2018-07-19 18:55:06 -04:00
|
|
|
resp, err := h.client.Do(req)
|
2020-08-16 13:25:00 -04:00
|
|
|
cancel()
|
2018-07-19 18:55:06 -04:00
|
|
|
if err != nil {
|
2021-03-30 16:59:02 -04:00
|
|
|
logger.LogOnceIf(ctx, fmt.Errorf("%s returned '%w', please check your endpoint configuration",
|
|
|
|
h.endpoint, err), h.endpoint)
|
2018-07-19 18:55:06 -04:00
|
|
|
continue
|
|
|
|
}
|
2019-02-06 15:07:03 -05:00
|
|
|
|
|
|
|
// Drain any response.
|
|
|
|
xhttp.DrainBody(resp.Body)
|
2020-08-16 13:25:00 -04:00
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
switch resp.StatusCode {
|
|
|
|
case http.StatusForbidden:
|
2021-03-30 16:59:02 -04:00
|
|
|
logger.LogOnceIf(ctx, fmt.Errorf("%s returned '%s', please check if your auth token is correctly set",
|
|
|
|
h.endpoint, resp.Status), h.endpoint)
|
2020-08-16 13:25:00 -04:00
|
|
|
default:
|
2021-03-30 16:59:02 -04:00
|
|
|
logger.LogOnceIf(ctx, fmt.Errorf("%s returned '%s', please check your endpoint configuration",
|
|
|
|
h.endpoint, resp.Status), h.endpoint)
|
2020-08-16 13:25:00 -04:00
|
|
|
}
|
|
|
|
}
|
2018-07-19 18:55:06 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2020-04-01 23:53:07 -04:00
|
|
|
// Option is a function type that accepts a pointer Target
|
|
|
|
type Option func(*Target)
|
|
|
|
|
2020-10-02 19:19:44 -04:00
|
|
|
// WithTargetName target name
|
|
|
|
func WithTargetName(name string) Option {
|
|
|
|
return func(t *Target) {
|
|
|
|
t.name = name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 23:53:07 -04:00
|
|
|
// WithEndpoint adds a new endpoint
|
|
|
|
func WithEndpoint(endpoint string) Option {
|
|
|
|
return func(t *Target) {
|
|
|
|
t.endpoint = endpoint
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithLogKind adds a log type for this target
|
|
|
|
func WithLogKind(logKind string) Option {
|
|
|
|
return func(t *Target) {
|
|
|
|
t.logKind = strings.ToUpper(logKind)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithUserAgent adds a custom user-agent sent to the target.
|
|
|
|
func WithUserAgent(userAgent string) Option {
|
|
|
|
return func(t *Target) {
|
|
|
|
t.userAgent = userAgent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithAuthToken adds a new authorization header to be sent to target.
|
|
|
|
func WithAuthToken(authToken string) Option {
|
|
|
|
return func(t *Target) {
|
|
|
|
t.authToken = authToken
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithTransport adds a custom transport with custom timeouts and tuning.
|
|
|
|
func WithTransport(transport *http.Transport) Option {
|
|
|
|
return func(t *Target) {
|
|
|
|
t.client = http.Client{
|
|
|
|
Transport: transport,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-19 17:47:03 -05:00
|
|
|
// New initializes a new logger target which
|
2018-07-19 18:55:06 -04:00
|
|
|
// sends log over http to the specified endpoint
|
2020-04-01 23:53:07 -04:00
|
|
|
func New(opts ...Option) *Target {
|
|
|
|
h := &Target{
|
2018-10-12 15:25:59 -04:00
|
|
|
logCh: make(chan interface{}, 10000),
|
2018-07-19 18:55:06 -04:00
|
|
|
}
|
|
|
|
|
2020-04-01 23:53:07 -04:00
|
|
|
// Loop through each option
|
|
|
|
for _, opt := range opts {
|
|
|
|
// Call the option giving the instantiated
|
|
|
|
// *Target as the argument
|
|
|
|
opt(h)
|
|
|
|
}
|
|
|
|
|
2018-07-19 18:55:06 -04:00
|
|
|
h.startHTTPLogger()
|
2020-04-01 23:53:07 -04:00
|
|
|
return h
|
2018-07-19 18:55:06 -04:00
|
|
|
}
|
|
|
|
|
2018-11-19 17:47:03 -05:00
|
|
|
// Send log message 'e' to http target.
|
2019-10-11 21:50:54 -04:00
|
|
|
func (h *Target) Send(entry interface{}, errKind string) error {
|
|
|
|
if h.logKind != errKind && h.logKind != "ALL" {
|
|
|
|
return nil
|
|
|
|
}
|
2020-04-01 23:53:07 -04:00
|
|
|
|
2018-07-19 18:55:06 -04:00
|
|
|
select {
|
|
|
|
case h.logCh <- entry:
|
|
|
|
default:
|
|
|
|
// log channel is full, do not wait and return
|
|
|
|
// an error immediately to the caller
|
|
|
|
return errors.New("log buffer full")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|