// Licensed to Elasticsearch B.V. under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Elasticsearch B.V. licenses this file to you 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 dashboards import ( "bytes" "encoding/json" "fmt" "github.com/elastic/beats/libbeat/common" "github.com/elastic/beats/libbeat/logp" ) type JSONObjectAttribute struct { Description string `json:"description"` KibanaSavedObjectMeta map[string]interface{} `json:"kibanaSavedObjectMeta"` Title string `json:"title"` Type string `json:"type"` } type JSONObject struct { Attributes JSONObjectAttribute `json:"attributes"` } type JSONFormat struct { Objects []JSONObject `json:"objects"` } func ReplaceIndexInIndexPattern(index string, content common.MapStr) common.MapStr { if index == "" { return content } objects, ok := content["objects"].([]interface{}) if !ok { return content } // change index pattern name for i, object := range objects { objectMap, ok := object.(map[string]interface{}) if !ok { continue } objectMap["id"] = index if attributes, ok := objectMap["attributes"].(map[string]interface{}); ok { attributes["title"] = index } objects[i] = objectMap } content["objects"] = objects return content } func replaceIndexInSearchObject(index string, savedObject string) (string, error) { var record common.MapStr err := json.Unmarshal([]byte(savedObject), &record) if err != nil { return "", fmt.Errorf("fail to unmarshal searchSourceJSON from search : %v", err) } if _, ok := record["index"]; ok { record["index"] = index } searchSourceJSON, err := json.Marshal(record) if err != nil { return "", fmt.Errorf("fail to marshal searchSourceJSON: %v", err) } return string(searchSourceJSON), nil } func ReplaceIndexInSavedObject(index string, kibanaSavedObject map[string]interface{}) map[string]interface{} { if searchSourceJSON, ok := kibanaSavedObject["searchSourceJSON"].(string); ok { searchSourceJSON, err := replaceIndexInSearchObject(index, searchSourceJSON) if err != nil { logp.Err("Fail to replace searchSourceJSON: %v", err) return kibanaSavedObject } kibanaSavedObject["searchSourceJSON"] = searchSourceJSON } return kibanaSavedObject } // ReplaceIndexInVisState replaces index appearing in visState params objects func ReplaceIndexInVisState(index string, visStateJSON string) string { var visState map[string]interface{} err := json.Unmarshal([]byte(visStateJSON), &visState) if err != nil { logp.Err("Fail to unmarshal visState: %v", err) return visStateJSON } params, ok := visState["params"].(map[string]interface{}) if !ok { return visStateJSON } // Don't set it if it was not set before if pattern, ok := params["index_pattern"].(string); !ok || len(pattern) == 0 { return visStateJSON } params["index_pattern"] = index d, err := json.Marshal(visState) if err != nil { logp.Err("Fail to marshal visState: %v", err) return visStateJSON } return string(d) } // ReplaceIndexInDashboardObject replaces references to the index pattern in dashboard objects func ReplaceIndexInDashboardObject(index string, content common.MapStr) common.MapStr { if index == "" { return content } objects, ok := content["objects"].([]interface{}) if !ok { return content } for i, object := range objects { objectMap, ok := object.(map[string]interface{}) if !ok { continue } attributes, ok := objectMap["attributes"].(map[string]interface{}) if !ok { continue } if kibanaSavedObject, ok := attributes["kibanaSavedObjectMeta"].(map[string]interface{}); ok { attributes["kibanaSavedObjectMeta"] = ReplaceIndexInSavedObject(index, kibanaSavedObject) } if visState, ok := attributes["visState"].(string); ok { attributes["visState"] = ReplaceIndexInVisState(index, visState) } objects[i] = objectMap } content["objects"] = objects return content } func ReplaceStringInDashboard(old, new string, content common.MapStr) (common.MapStr, error) { marshaled, err := json.Marshal(content) if err != nil { return nil, fmt.Errorf("fail to marshal dashboard object: %v", content) } replaced := bytes.Replace(marshaled, []byte(old), []byte(new), -1) var result common.MapStr err = json.Unmarshal(replaced, &result) return result, nil }