2016-07-24 01:51:12 -04:00
|
|
|
/*
|
2017-09-04 20:45:30 -04:00
|
|
|
* Minio Cloud Storage, (C) 2016, 2017 Minio, Inc.
|
2016-07-24 01:51:12 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-07-24 01:51:12 -04:00
|
|
|
|
|
|
|
import (
|
2016-08-05 01:01:58 -04:00
|
|
|
"io/ioutil"
|
2017-02-20 15:05:21 -05:00
|
|
|
"net"
|
2017-09-04 20:45:30 -04:00
|
|
|
"sync"
|
2016-08-05 01:01:58 -04:00
|
|
|
|
2016-07-24 01:51:12 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/streadway/amqp"
|
|
|
|
)
|
|
|
|
|
2016-08-05 01:01:58 -04:00
|
|
|
// amqpNotify - represents logrus compatible AMQP hook.
|
2016-07-24 01:51:12 -04:00
|
|
|
// All fields represent AMQP configuration details.
|
2016-08-05 01:01:58 -04:00
|
|
|
type amqpNotify struct {
|
2016-07-24 01:51:12 -04:00
|
|
|
Enable bool `json:"enable"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
Exchange string `json:"exchange"`
|
2016-08-13 01:23:06 -04:00
|
|
|
RoutingKey string `json:"routingKey"`
|
2016-07-24 01:51:12 -04:00
|
|
|
ExchangeType string `json:"exchangeType"`
|
2017-03-31 06:34:26 -04:00
|
|
|
DeliveryMode uint8 `json:"deliveryMode"`
|
2016-07-24 01:51:12 -04:00
|
|
|
Mandatory bool `json:"mandatory"`
|
|
|
|
Immediate bool `json:"immediate"`
|
|
|
|
Durable bool `json:"durable"`
|
|
|
|
Internal bool `json:"internal"`
|
|
|
|
NoWait bool `json:"noWait"`
|
|
|
|
AutoDeleted bool `json:"autoDeleted"`
|
|
|
|
}
|
|
|
|
|
2017-03-15 19:30:34 -04:00
|
|
|
func (a *amqpNotify) Validate() error {
|
|
|
|
if !a.Enable {
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-16 14:44:01 -04:00
|
|
|
if _, err := checkURL(a.URL); err != nil {
|
2017-03-15 19:30:34 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-09-04 20:45:30 -04:00
|
|
|
// amqpConn implements a reconnecting amqp conn extending *amqp.Connection,
|
|
|
|
// also provides additional protection for such a mutation.
|
2016-07-24 01:51:12 -04:00
|
|
|
type amqpConn struct {
|
2017-09-04 20:45:30 -04:00
|
|
|
sync.Mutex
|
|
|
|
conn *amqp.Connection
|
2016-08-05 01:01:58 -04:00
|
|
|
params amqpNotify
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
|
2016-08-05 01:01:58 -04:00
|
|
|
// dialAMQP - dials and returns an amqpConnection instance,
|
|
|
|
// for sending notifications. Returns error if amqp logger
|
|
|
|
// is not enabled.
|
2017-09-04 20:45:30 -04:00
|
|
|
func dialAMQP(amqpL amqpNotify) (*amqpConn, error) {
|
2016-07-25 20:53:55 -04:00
|
|
|
if !amqpL.Enable {
|
2017-09-04 20:45:30 -04:00
|
|
|
return nil, errNotifyNotEnabled
|
2016-07-25 20:53:55 -04:00
|
|
|
}
|
2016-07-24 01:51:12 -04:00
|
|
|
conn, err := amqp.Dial(amqpL.URL)
|
|
|
|
if err != nil {
|
2017-09-04 20:45:30 -04:00
|
|
|
return nil, err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
2017-09-04 20:45:30 -04:00
|
|
|
return &amqpConn{
|
|
|
|
conn: conn,
|
|
|
|
params: amqpL,
|
|
|
|
}, nil
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
|
2016-08-05 01:01:58 -04:00
|
|
|
func newAMQPNotify(accountID string) (*logrus.Logger, error) {
|
2017-11-29 16:12:47 -05:00
|
|
|
amqpL := globalServerConfig.Notify.GetAMQPByID(accountID)
|
2016-07-24 01:51:12 -04:00
|
|
|
|
|
|
|
// Connect to amqp server.
|
|
|
|
amqpC, err := dialAMQP(amqpL)
|
|
|
|
if err != nil {
|
2016-08-05 01:01:58 -04:00
|
|
|
return nil, err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
|
2016-08-05 01:01:58 -04:00
|
|
|
amqpLog := logrus.New()
|
|
|
|
|
|
|
|
// Disable writing to console.
|
|
|
|
amqpLog.Out = ioutil.Discard
|
2016-07-24 01:51:12 -04:00
|
|
|
|
|
|
|
// Add a amqp hook.
|
2016-08-05 01:01:58 -04:00
|
|
|
amqpLog.Hooks.Add(amqpC)
|
2016-07-24 01:51:12 -04:00
|
|
|
|
|
|
|
// Set default JSON formatter.
|
2016-08-05 01:01:58 -04:00
|
|
|
amqpLog.Formatter = new(logrus.JSONFormatter)
|
2016-07-24 01:51:12 -04:00
|
|
|
|
2016-08-05 01:01:58 -04:00
|
|
|
// Successfully enabled all AMQPs.
|
|
|
|
return amqpLog, nil
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
|
2017-09-04 20:45:30 -04:00
|
|
|
// Returns true if the error represents a closed
|
|
|
|
// network error.
|
|
|
|
func isAMQPClosedNetworkErr(err error) bool {
|
|
|
|
// Any other error other than connection closed, return.
|
|
|
|
if neterr, ok := err.(*net.OpError); ok &&
|
|
|
|
neterr.Err.Error() == "use of closed network connection" {
|
|
|
|
return true
|
|
|
|
} else if err == amqp.ErrClosed {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Channel is a wrapper implementation of amqp.Connection.Channel()
|
|
|
|
// which implements transparent reconnection.
|
|
|
|
func (q *amqpConn) Channel() (*amqp.Channel, error) {
|
|
|
|
q.Lock()
|
|
|
|
ch, err := q.conn.Channel()
|
|
|
|
q.Unlock()
|
2016-07-24 01:51:12 -04:00
|
|
|
if err != nil {
|
2017-09-04 20:45:30 -04:00
|
|
|
if !isAMQPClosedNetworkErr(err) {
|
|
|
|
return nil, err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
// Attempt to connect again.
|
|
|
|
var conn *amqp.Connection
|
|
|
|
conn, err = amqp.Dial(q.params.URL)
|
|
|
|
if err != nil {
|
2017-09-04 20:45:30 -04:00
|
|
|
return nil, err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
ch, err = conn.Channel()
|
|
|
|
if err != nil {
|
2017-09-04 20:45:30 -04:00
|
|
|
return nil, err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
2017-09-04 20:45:30 -04:00
|
|
|
q.Lock()
|
|
|
|
q.conn = conn
|
|
|
|
q.Unlock()
|
|
|
|
}
|
|
|
|
return ch, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fire is called when an event should be sent to the message broker.
|
|
|
|
func (q *amqpConn) Fire(entry *logrus.Entry) error {
|
|
|
|
ch, err := q.Channel()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
|
|
|
defer ch.Close()
|
|
|
|
|
|
|
|
err = ch.ExchangeDeclare(
|
|
|
|
q.params.Exchange,
|
|
|
|
q.params.ExchangeType,
|
|
|
|
q.params.Durable,
|
|
|
|
q.params.AutoDeleted,
|
|
|
|
q.params.Internal,
|
|
|
|
q.params.NoWait,
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := entry.String()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ch.Publish(
|
|
|
|
q.params.Exchange,
|
|
|
|
q.params.RoutingKey,
|
|
|
|
q.params.Mandatory,
|
|
|
|
q.params.Immediate,
|
|
|
|
amqp.Publishing{
|
2017-03-31 06:34:26 -04:00
|
|
|
ContentType: "application/json",
|
|
|
|
DeliveryMode: q.params.DeliveryMode,
|
|
|
|
Body: []byte(body),
|
2016-07-24 01:51:12 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Levels is available logging levels.
|
2017-09-04 20:45:30 -04:00
|
|
|
func (q *amqpConn) Levels() []logrus.Level {
|
2016-07-24 01:51:12 -04:00
|
|
|
return []logrus.Level{
|
|
|
|
logrus.InfoLevel,
|
|
|
|
}
|
|
|
|
}
|