mirror of
https://github.com/minio/minio.git
synced 2024-12-27 15:45:55 -05:00
ca96560d56
level - this PR builds on #8120 which added PutBucketObjectLockConfiguration and GetBucketObjectLockConfiguration APIS This PR implements PutObjectRetention, GetObjectRetention API and enhances PUT and GET API operations to display governance metadata if permissions allow.
281 lines
7.3 KiB
Go
281 lines
7.3 KiB
Go
/*
|
|
* MinIO Cloud Storage, (C) 2018 MinIO, Inc.
|
|
*
|
|
* 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 target
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/minio/minio/pkg/event"
|
|
xnet "github.com/minio/minio/pkg/net"
|
|
"github.com/pkg/errors"
|
|
|
|
"gopkg.in/olivere/elastic.v5"
|
|
)
|
|
|
|
// Elastic constants
|
|
const (
|
|
ElasticFormat = "format"
|
|
ElasticURL = "url"
|
|
ElasticIndex = "index"
|
|
ElasticQueueDir = "queue_dir"
|
|
ElasticQueueLimit = "queue_limit"
|
|
|
|
EnvElasticState = "MINIO_NOTIFY_ELASTICSEARCH_STATE"
|
|
EnvElasticFormat = "MINIO_NOTIFY_ELASTICSEARCH_FORMAT"
|
|
EnvElasticURL = "MINIO_NOTIFY_ELASTICSEARCH_URL"
|
|
EnvElasticIndex = "MINIO_NOTIFY_ELASTICSEARCH_INDEX"
|
|
EnvElasticQueueDir = "MINIO_NOTIFY_ELASTICSEARCH_QUEUE_DIR"
|
|
EnvElasticQueueLimit = "MINIO_NOTIFY_ELASTICSEARCH_QUEUE_LIMIT"
|
|
)
|
|
|
|
// ElasticsearchArgs - Elasticsearch target arguments.
|
|
type ElasticsearchArgs struct {
|
|
Enable bool `json:"enable"`
|
|
Format string `json:"format"`
|
|
URL xnet.URL `json:"url"`
|
|
Index string `json:"index"`
|
|
QueueDir string `json:"queueDir"`
|
|
QueueLimit uint64 `json:"queueLimit"`
|
|
}
|
|
|
|
// Validate ElasticsearchArgs fields
|
|
func (a ElasticsearchArgs) Validate() error {
|
|
if !a.Enable {
|
|
return nil
|
|
}
|
|
if a.URL.IsEmpty() {
|
|
return errors.New("empty URL")
|
|
}
|
|
if a.Format != "" {
|
|
f := strings.ToLower(a.Format)
|
|
if f != event.NamespaceFormat && f != event.AccessFormat {
|
|
return errors.New("format value unrecognized")
|
|
}
|
|
}
|
|
if a.Index == "" {
|
|
return errors.New("empty index value")
|
|
}
|
|
if a.QueueLimit > 10000 {
|
|
return errors.New("queueLimit should not exceed 10000")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ElasticsearchTarget - Elasticsearch target.
|
|
type ElasticsearchTarget struct {
|
|
id event.TargetID
|
|
args ElasticsearchArgs
|
|
client *elastic.Client
|
|
store Store
|
|
}
|
|
|
|
// ID - returns target ID.
|
|
func (target *ElasticsearchTarget) ID() event.TargetID {
|
|
return target.id
|
|
}
|
|
|
|
// Save - saves the events to the store if queuestore is configured, which will be replayed when the elasticsearch connection is active.
|
|
func (target *ElasticsearchTarget) Save(eventData event.Event) error {
|
|
if target.store != nil {
|
|
return target.store.Put(eventData)
|
|
}
|
|
if dErr := target.args.URL.DialHTTP(); dErr != nil {
|
|
if xnet.IsNetworkOrHostDown(dErr) {
|
|
return errNotConnected
|
|
}
|
|
return dErr
|
|
}
|
|
return target.send(eventData)
|
|
}
|
|
|
|
// send - sends the event to the target.
|
|
func (target *ElasticsearchTarget) send(eventData event.Event) error {
|
|
|
|
var key string
|
|
|
|
exists := func() (bool, error) {
|
|
return target.client.Exists().Index(target.args.Index).Type("event").Id(key).Do(context.Background())
|
|
}
|
|
|
|
remove := func() error {
|
|
exists, err := exists()
|
|
if err == nil && exists {
|
|
_, err = target.client.Delete().Index(target.args.Index).Type("event").Id(key).Do(context.Background())
|
|
}
|
|
return err
|
|
}
|
|
|
|
update := func() error {
|
|
_, err := target.client.Index().Index(target.args.Index).Type("event").BodyJson(map[string]interface{}{"Records": []event.Event{eventData}}).Id(key).Do(context.Background())
|
|
return err
|
|
}
|
|
|
|
add := func() error {
|
|
_, err := target.client.Index().Index(target.args.Index).Type("event").BodyJson(map[string]interface{}{"Records": []event.Event{eventData}}).Do(context.Background())
|
|
return err
|
|
}
|
|
|
|
if target.args.Format == event.NamespaceFormat {
|
|
objectName, err := url.QueryUnescape(eventData.S3.Object.Key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
key = eventData.S3.Bucket.Name + "/" + objectName
|
|
if eventData.EventName == event.ObjectRemovedDelete {
|
|
err = remove()
|
|
} else {
|
|
err = update()
|
|
}
|
|
return err
|
|
}
|
|
|
|
if target.args.Format == event.AccessFormat {
|
|
return add()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Send - reads an event from store and sends it to Elasticsearch.
|
|
func (target *ElasticsearchTarget) Send(eventKey string) error {
|
|
|
|
var err error
|
|
|
|
if target.client == nil {
|
|
target.client, err = newClient(target.args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if dErr := target.args.URL.DialHTTP(); dErr != nil {
|
|
if xnet.IsNetworkOrHostDown(dErr) {
|
|
return errNotConnected
|
|
}
|
|
return dErr
|
|
}
|
|
|
|
eventData, eErr := target.store.Get(eventKey)
|
|
if eErr != nil {
|
|
// The last event key in a successful batch will be sent in the channel atmost once by the replayEvents()
|
|
// Such events will not exist and wouldve been already been sent successfully.
|
|
if os.IsNotExist(eErr) {
|
|
return nil
|
|
}
|
|
return eErr
|
|
}
|
|
|
|
if err := target.send(eventData); err != nil {
|
|
if xnet.IsNetworkOrHostDown(err) {
|
|
return errNotConnected
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Delete the event from store.
|
|
return target.store.Del(eventKey)
|
|
}
|
|
|
|
// Close - does nothing and available for interface compatibility.
|
|
func (target *ElasticsearchTarget) Close() error {
|
|
return nil
|
|
}
|
|
|
|
// createIndex - creates the index if it does not exist.
|
|
func createIndex(client *elastic.Client, args ElasticsearchArgs) error {
|
|
exists, err := client.IndexExists(args.Index).Do(context.Background())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !exists {
|
|
var createIndex *elastic.IndicesCreateResult
|
|
if createIndex, err = client.CreateIndex(args.Index).Do(context.Background()); err != nil {
|
|
return err
|
|
}
|
|
|
|
if !createIndex.Acknowledged {
|
|
return fmt.Errorf("index %v not created", args.Index)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// newClient - creates a new elastic client with args provided.
|
|
func newClient(args ElasticsearchArgs) (*elastic.Client, error) {
|
|
client, clientErr := elastic.NewClient(elastic.SetURL(args.URL.String()), elastic.SetSniff(false), elastic.SetMaxRetries(10))
|
|
if clientErr != nil {
|
|
if !(errors.Cause(clientErr) == elastic.ErrNoClient) {
|
|
return nil, clientErr
|
|
}
|
|
} else {
|
|
if err := createIndex(client, args); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return client, nil
|
|
}
|
|
|
|
// NewElasticsearchTarget - creates new Elasticsearch target.
|
|
func NewElasticsearchTarget(id string, args ElasticsearchArgs, doneCh <-chan struct{}, loggerOnce func(ctx context.Context, err error, id interface{}, kind ...interface{})) (*ElasticsearchTarget, error) {
|
|
var client *elastic.Client
|
|
var err error
|
|
|
|
var store Store
|
|
|
|
if args.QueueDir != "" {
|
|
queueDir := filepath.Join(args.QueueDir, storePrefix+"-elasticsearch-"+id)
|
|
store = NewQueueStore(queueDir, args.QueueLimit)
|
|
if oErr := store.Open(); oErr != nil {
|
|
return nil, oErr
|
|
}
|
|
}
|
|
|
|
dErr := args.URL.DialHTTP()
|
|
if dErr != nil {
|
|
if store == nil {
|
|
return nil, dErr
|
|
}
|
|
} else {
|
|
client, err = newClient(args)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
target := &ElasticsearchTarget{
|
|
id: event.TargetID{ID: id, Name: "elasticsearch"},
|
|
args: args,
|
|
client: client,
|
|
store: store,
|
|
}
|
|
|
|
if target.store != nil {
|
|
// Replays the events from the store.
|
|
eventKeyCh := replayEvents(target.store, doneCh, loggerOnce, target.ID())
|
|
// Start replaying events from the store.
|
|
go sendEvents(target, eventKeyCh, doneCh, loggerOnce)
|
|
}
|
|
|
|
return target, nil
|
|
}
|