fb32dcfa58
Main Clair logic is changed in worker, updater, notifier for better adapting ancestry schema. Extensions are updated with the new model and feature lister and namespace detector drivers are able to specify the specific listers and detectors used to process layer's content. InRange and GetFixedIn interfaces are added to Version format for adapting ranged affected features and next available fixed in in the future. Tests for worker, updater and extensions are fixed.
166 lines
4.0 KiB
Go
166 lines
4.0 KiB
Go
// Copyright 2017 clair authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Package webhook implements a notification sender for HTTP JSON webhooks.
|
|
package webhook
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"time"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
"github.com/coreos/clair/ext/notification"
|
|
)
|
|
|
|
const timeout = 5 * time.Second
|
|
|
|
type sender struct {
|
|
endpoint string
|
|
client *http.Client
|
|
}
|
|
|
|
// Config represents the configuration of a Webhook Sender.
|
|
type Config struct {
|
|
Endpoint string
|
|
ServerName string
|
|
CertFile string
|
|
KeyFile string
|
|
CAFile string
|
|
Proxy string
|
|
}
|
|
|
|
func init() {
|
|
notification.RegisterSender("webhook", &sender{})
|
|
}
|
|
|
|
func (s *sender) Configure(config *notification.Config) (bool, error) {
|
|
// Get configuration
|
|
var httpConfig Config
|
|
if config == nil {
|
|
return false, nil
|
|
}
|
|
if _, ok := config.Params["http"]; !ok {
|
|
return false, nil
|
|
}
|
|
yamlConfig, err := yaml.Marshal(config.Params["http"])
|
|
if err != nil {
|
|
return false, errors.New("invalid configuration")
|
|
}
|
|
err = yaml.Unmarshal(yamlConfig, &httpConfig)
|
|
if err != nil {
|
|
return false, errors.New("invalid configuration")
|
|
}
|
|
|
|
// Validate endpoint URL.
|
|
if httpConfig.Endpoint == "" {
|
|
return false, nil
|
|
}
|
|
if _, err := url.ParseRequestURI(httpConfig.Endpoint); err != nil {
|
|
return false, fmt.Errorf("could not parse endpoint URL: %s\n", err)
|
|
}
|
|
s.endpoint = httpConfig.Endpoint
|
|
|
|
// Setup HTTP client.
|
|
transport := &http.Transport{}
|
|
s.client = &http.Client{
|
|
Transport: transport,
|
|
Timeout: timeout,
|
|
}
|
|
|
|
// Initialize TLS.
|
|
transport.TLSClientConfig, err = loadTLSClientConfig(&httpConfig)
|
|
if err != nil {
|
|
return false, fmt.Errorf("could not initialize client cert auth: %s\n", err)
|
|
}
|
|
|
|
// Set proxy.
|
|
if httpConfig.Proxy != "" {
|
|
proxyURL, err := url.ParseRequestURI(httpConfig.Proxy)
|
|
if err != nil {
|
|
return false, fmt.Errorf("could not parse proxy URL: %s\n", err)
|
|
}
|
|
transport.Proxy = http.ProxyURL(proxyURL)
|
|
}
|
|
|
|
return true, nil
|
|
}
|
|
|
|
type notificationEnvelope struct {
|
|
Notification struct {
|
|
Name string
|
|
}
|
|
}
|
|
|
|
func (s *sender) Send(notificationName string) error {
|
|
// Marshal notification.
|
|
jsonNotification, err := json.Marshal(notificationEnvelope{struct{ Name string }{notificationName}})
|
|
if err != nil {
|
|
return fmt.Errorf("could not marshal: %s", err)
|
|
}
|
|
|
|
// Send notification via HTTP POST.
|
|
resp, err := s.client.Post(s.endpoint, "application/json", bytes.NewBuffer(jsonNotification))
|
|
if err != nil || resp == nil || (resp.StatusCode != 200 && resp.StatusCode != 201) {
|
|
if resp != nil {
|
|
return fmt.Errorf("got status %d, expected 200/201", resp.StatusCode)
|
|
}
|
|
return err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
return nil
|
|
}
|
|
|
|
// loadTLSClientConfig initializes a *tls.Config using the given Config.
|
|
//
|
|
// If no certificates are given, (nil, nil) is returned.
|
|
// The CA certificate is optional and falls back to the system default.
|
|
func loadTLSClientConfig(cfg *Config) (*tls.Config, error) {
|
|
if cfg.CertFile == "" || cfg.KeyFile == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
cert, err := tls.LoadX509KeyPair(cfg.CertFile, cfg.KeyFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var caCertPool *x509.CertPool
|
|
if cfg.CAFile != "" {
|
|
caCert, err := ioutil.ReadFile(cfg.CAFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
caCertPool = x509.NewCertPool()
|
|
caCertPool.AppendCertsFromPEM(caCert)
|
|
}
|
|
|
|
tlsConfig := &tls.Config{
|
|
ServerName: cfg.ServerName,
|
|
Certificates: []tls.Certificate{cert},
|
|
RootCAs: caCertPool,
|
|
}
|
|
|
|
return tlsConfig, nil
|
|
}
|