/* Copyright 2016 Medcl (m AT medcl.net) 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 main import ( "bytes" log "github.com/cihub/seelog" "encoding/json" "fmt" "errors" "io" "io/ioutil" "strings" ) type ESAPIV5 struct{ ESAPIV0 } func (s *ESAPIV5) ClusterHealth() *ClusterHealth { return s.ESAPIV0.ClusterHealth() } func (s *ESAPIV5) Bulk(data *bytes.Buffer){ s.ESAPIV0.Bulk(data) } func (s *ESAPIV5) GetIndexSettings(indexNames string) (*Indexes,error){ return s.ESAPIV0.GetIndexSettings(indexNames) } func (s *ESAPIV5) GetIndexMappings(copyAllIndexes bool,indexNames string)(string,int,*Indexes,error){ return s.ESAPIV0.GetIndexMappings(copyAllIndexes,indexNames) } func (s *ESAPIV5) UpdateIndexSettings(indexName string,settings map[string]interface{})(error){ return s.ESAPIV0.UpdateIndexSettings(indexName,settings) } func (s *ESAPIV5) DeleteIndex(name string) (err error) { return s.ESAPIV0.DeleteIndex(name) } func (s *ESAPIV5) CreateIndex(name string,settings map[string]interface{}) (err error) { return s.ESAPIV0.CreateIndex(name,settings) } func (s *ESAPIV5) UpdateIndexMapping(indexName string,settings map[string]interface{}) error { return s.ESAPIV0.UpdateIndexMapping(indexName,settings) } func (s *ESAPIV5) Refresh(name string) (err error) { return s.ESAPIV0.Refresh(name) } func (s *ESAPIV5) NewScroll(indexNames string,scrollTime string,docBufferCount int,query string, slicedId,maxSlicedCount int, fields string)(scroll *Scroll, err error){ url := fmt.Sprintf("%s/%s/_search?scroll=%s&size=%d", s.Host, indexNames, scrollTime,docBufferCount) jsonBody:="" if(len(query)>0||maxSlicedCount>0||len(fields)>0) { queryBody := map[string]interface{}{} if len(fields) > 0 { if !strings.Contains(fields, ",") { log.Error("The fields shoud be seraprated by ,") return nil, errors.New("") } else { queryBody["_source"] = strings.Split(fields, ",") } } if(len(query)>0){ queryBody["query"] = map[string]interface{}{} queryBody["query"].(map[string]interface{})["query_string"] = map[string]interface{}{} queryBody["query"].(map[string]interface{})["query_string"].(map[string]interface{})["query"] = query } if(maxSlicedCount>1){ log.Tracef("sliced scroll, %d of %d",slicedId,maxSlicedCount) queryBody["slice"] = map[string]interface{}{} queryBody["slice"].(map[string]interface{})["id"] = slicedId queryBody["slice"].(map[string]interface{})["max"]= maxSlicedCount } jsonArray, err := json.Marshal(queryBody) if (err != nil) { log.Error(err) }else{ jsonBody=string(jsonArray) } } resp, body, errs := Post(url, s.Auth,jsonBody,s.HttpProxy) if errs != nil { log.Error(errs) return nil,errs[0] } io.Copy(ioutil.Discard, resp.Body) defer resp.Body.Close() if resp.StatusCode != 200 { return nil,errors.New(body) } log.Trace("new scroll,",body) if err != nil { log.Error(err) return nil,err } scroll = &Scroll{} err = json.Unmarshal([]byte(body),scroll) if err != nil { log.Error(err) return nil,err } return scroll,err } func (s *ESAPIV5) NextScroll(scrollTime string,scrollId string)(*Scroll,error) { id := bytes.NewBufferString(scrollId) url:=fmt.Sprintf("%s/_search/scroll?scroll=%s&scroll_id=%s", s.Host, scrollTime, id) resp,body, errs := Get(url,s.Auth,s.HttpProxy) if errs != nil { log.Error(errs) return nil,errs[0] } io.Copy(ioutil.Discard, resp.Body) defer resp.Body.Close() if resp.StatusCode != 200 { return nil,errors.New(body) } // decode elasticsearch scroll response scroll := &Scroll{} err:= json.Unmarshal([]byte(body), &scroll) if err != nil { log.Error(body) log.Error(err) return nil,err } return scroll,nil }