mirror of
https://github.com/pgsty/minio.git
synced 2026-08-12 09:40:28 +03:00
api: Implement bucket notification. (#2271)
* Implement basic S3 notifications through queues Supports multiple queues and three basic queue types: 1. NilQueue -- messages don't get sent anywhere 2. LogQueue -- messages get logged 3. AmqpQueue -- messages are sent to an AMQP queue * api: Implement bucket notification. Supports two different queue types - AMQP - ElasticSearch. * Add support for redis
This commit is contained in:
committed by
Anand Babu (AB) Periasamy
parent
f85d94288d
commit
f248089523
+132
@@ -0,0 +1,132 @@
|
||||
// Copyright 2012-2015 Oliver Eilhard. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-license.
|
||||
// See http://olivere.mit-license.org/license.txt for details.
|
||||
|
||||
package elastic
|
||||
|
||||
// -- SuggesterGeoMapping --
|
||||
|
||||
// SuggesterGeoMapping provides a mapping for a geolocation context in a suggester.
|
||||
// See http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/suggester-context.html#_geo_location_mapping.
|
||||
type SuggesterGeoMapping struct {
|
||||
name string
|
||||
defaultLocations []*GeoPoint
|
||||
precision []string
|
||||
neighbors *bool
|
||||
fieldName string
|
||||
}
|
||||
|
||||
// NewSuggesterGeoMapping creates a new SuggesterGeoMapping.
|
||||
func NewSuggesterGeoMapping(name string) *SuggesterGeoMapping {
|
||||
return &SuggesterGeoMapping{
|
||||
name: name,
|
||||
defaultLocations: make([]*GeoPoint, 0),
|
||||
precision: make([]string, 0),
|
||||
}
|
||||
}
|
||||
|
||||
func (q *SuggesterGeoMapping) DefaultLocations(locations ...*GeoPoint) *SuggesterGeoMapping {
|
||||
q.defaultLocations = append(q.defaultLocations, locations...)
|
||||
return q
|
||||
}
|
||||
|
||||
func (q *SuggesterGeoMapping) Precision(precision ...string) *SuggesterGeoMapping {
|
||||
q.precision = append(q.precision, precision...)
|
||||
return q
|
||||
}
|
||||
|
||||
func (q *SuggesterGeoMapping) Neighbors(neighbors bool) *SuggesterGeoMapping {
|
||||
q.neighbors = &neighbors
|
||||
return q
|
||||
}
|
||||
|
||||
func (q *SuggesterGeoMapping) FieldName(fieldName string) *SuggesterGeoMapping {
|
||||
q.fieldName = fieldName
|
||||
return q
|
||||
}
|
||||
|
||||
// Source returns a map that will be used to serialize the context query as JSON.
|
||||
func (q *SuggesterGeoMapping) Source() (interface{}, error) {
|
||||
source := make(map[string]interface{})
|
||||
|
||||
x := make(map[string]interface{})
|
||||
source[q.name] = x
|
||||
|
||||
x["type"] = "geo"
|
||||
|
||||
if len(q.precision) > 0 {
|
||||
x["precision"] = q.precision
|
||||
}
|
||||
if q.neighbors != nil {
|
||||
x["neighbors"] = *q.neighbors
|
||||
}
|
||||
|
||||
switch len(q.defaultLocations) {
|
||||
case 0:
|
||||
case 1:
|
||||
x["default"] = q.defaultLocations[0].Source()
|
||||
default:
|
||||
arr := make([]interface{}, 0)
|
||||
for _, p := range q.defaultLocations {
|
||||
arr = append(arr, p.Source())
|
||||
}
|
||||
x["default"] = arr
|
||||
}
|
||||
|
||||
if q.fieldName != "" {
|
||||
x["path"] = q.fieldName
|
||||
}
|
||||
return source, nil
|
||||
}
|
||||
|
||||
// -- SuggesterGeoQuery --
|
||||
|
||||
// SuggesterGeoQuery provides querying a geolocation context in a suggester.
|
||||
// See http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/suggester-context.html#_geo_location_query
|
||||
type SuggesterGeoQuery struct {
|
||||
name string
|
||||
location *GeoPoint
|
||||
precision []string
|
||||
}
|
||||
|
||||
// NewSuggesterGeoQuery creates a new SuggesterGeoQuery.
|
||||
func NewSuggesterGeoQuery(name string, location *GeoPoint) *SuggesterGeoQuery {
|
||||
return &SuggesterGeoQuery{
|
||||
name: name,
|
||||
location: location,
|
||||
precision: make([]string, 0),
|
||||
}
|
||||
}
|
||||
|
||||
func (q *SuggesterGeoQuery) Precision(precision ...string) *SuggesterGeoQuery {
|
||||
q.precision = append(q.precision, precision...)
|
||||
return q
|
||||
}
|
||||
|
||||
// Source returns a map that will be used to serialize the context query as JSON.
|
||||
func (q *SuggesterGeoQuery) Source() (interface{}, error) {
|
||||
source := make(map[string]interface{})
|
||||
|
||||
if len(q.precision) == 0 {
|
||||
if q.location != nil {
|
||||
source[q.name] = q.location.Source()
|
||||
}
|
||||
} else {
|
||||
x := make(map[string]interface{})
|
||||
source[q.name] = x
|
||||
|
||||
if q.location != nil {
|
||||
x["value"] = q.location.Source()
|
||||
}
|
||||
|
||||
switch len(q.precision) {
|
||||
case 0:
|
||||
case 1:
|
||||
x["precision"] = q.precision[0]
|
||||
default:
|
||||
x["precision"] = q.precision
|
||||
}
|
||||
}
|
||||
|
||||
return source, nil
|
||||
}
|
||||
Reference in New Issue
Block a user