-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* New processor: urldecode (#17505) * add urldecode processor * update reference yml files * update doc with PR number * remove unexpected format * update from feedback * move urldecode processor into its own package * update from feedback * CHANGELOG grooming Co-authored-by: Chao <19381524+sincejune@users.noreply.github.com>
- Loading branch information
1 parent
ceb5b37
commit d8c2f32
Showing
20 changed files
with
546 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[[urldecode]] | ||
=== URL Decode | ||
|
||
++++ | ||
<titleabbrev>urldecode</titleabbrev> | ||
++++ | ||
|
||
The `urldecode` processor specifies a list of fields to decode from URL encoded format. Under the `fields` | ||
key, each entry contains a `from: source-field` and a `to: target-field` pair, where: | ||
|
||
* `from` is the source field name | ||
* `to` is the target field name (defaults to the `from` value) | ||
|
||
[source,yaml] | ||
------- | ||
processors: | ||
- urldecode: | ||
fields: | ||
- from: "field1" | ||
to: "field2" | ||
ignore_missing: false | ||
fail_on_error: true | ||
------- | ||
|
||
In the example above: | ||
|
||
- field1 is decoded in field2 | ||
|
||
The `urldecode` processor has the following configuration settings: | ||
|
||
`ignore_missing`:: (Optional) If set to true, no error is logged in case a key | ||
which should be URL-decoded is missing. Default is `false`. | ||
|
||
`fail_on_error`:: (Optional) If set to true, in case of an error the URL-decoding | ||
of fields is stopped and the original event is returned. If set to false, decoding | ||
continues also if an error happened during decoding. Default is `true`. | ||
|
||
See <<conditions>> for a list of supported conditions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
// 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 urldecode | ||
|
||
import ( | ||
"fmt" | ||
"net/url" | ||
|
||
"github.com/pkg/errors" | ||
|
||
"github.com/elastic/beats/v7/libbeat/beat" | ||
"github.com/elastic/beats/v7/libbeat/common" | ||
"github.com/elastic/beats/v7/libbeat/logp" | ||
"github.com/elastic/beats/v7/libbeat/processors" | ||
"github.com/elastic/beats/v7/libbeat/processors/checks" | ||
jsprocessor "github.com/elastic/beats/v7/libbeat/processors/script/javascript/module/processor" | ||
) | ||
|
||
type urlDecode struct { | ||
config urlDecodeConfig | ||
log *logp.Logger | ||
} | ||
|
||
type urlDecodeConfig struct { | ||
Fields []fromTo `config:"fields" validate:"required"` | ||
IgnoreMissing bool `config:"ignore_missing"` | ||
FailOnError bool `config:"fail_on_error"` | ||
} | ||
|
||
type fromTo struct { | ||
From string `config:"from" validate:"required"` | ||
To string `config:"to"` | ||
} | ||
|
||
func init() { | ||
processors.RegisterPlugin("urldecode", | ||
checks.ConfigChecked(New, | ||
checks.RequireFields("fields"), | ||
checks.AllowedFields("fields", "ignore_missing", "fail_on_error"))) | ||
jsprocessor.RegisterPlugin("URLDecode", New) | ||
} | ||
|
||
func New(c *common.Config) (processors.Processor, error) { | ||
config := urlDecodeConfig{ | ||
IgnoreMissing: false, | ||
FailOnError: true, | ||
} | ||
|
||
if err := c.Unpack(&config); err != nil { | ||
return nil, fmt.Errorf("failed to unpack the configuration of urldecode processor: %s", err) | ||
} | ||
|
||
return &urlDecode{ | ||
config: config, | ||
log: logp.NewLogger("urldecode"), | ||
}, nil | ||
|
||
} | ||
|
||
func (p *urlDecode) Run(event *beat.Event) (*beat.Event, error) { | ||
var backup common.MapStr | ||
if p.config.FailOnError { | ||
backup = event.Fields.Clone() | ||
} | ||
|
||
for _, field := range p.config.Fields { | ||
err := p.decodeField(field.From, field.To, event) | ||
if err != nil { | ||
errMsg := fmt.Errorf("failed to decode fields in urldecode processor: %v", err) | ||
p.log.Debug(errMsg.Error()) | ||
if p.config.FailOnError { | ||
event.Fields = backup | ||
event.PutValue("error.message", errMsg.Error()) | ||
return event, err | ||
} | ||
} | ||
} | ||
|
||
return event, nil | ||
} | ||
|
||
func (p *urlDecode) decodeField(from string, to string, event *beat.Event) error { | ||
value, err := event.GetValue(from) | ||
if err != nil { | ||
if p.config.IgnoreMissing && errors.Cause(err) == common.ErrKeyNotFound { | ||
return nil | ||
} | ||
return fmt.Errorf("could not fetch value for key: %s, Error: %v", from, err) | ||
} | ||
|
||
encodedString, ok := value.(string) | ||
if !ok { | ||
return fmt.Errorf("invalid type for `from`, expecting a string received %T", value) | ||
} | ||
|
||
decodedData, err := url.QueryUnescape(encodedString) | ||
if err != nil { | ||
return fmt.Errorf("error trying to URL-decode %s: %v", encodedString, err) | ||
} | ||
|
||
target := to | ||
if to == "" { | ||
target = from | ||
} | ||
|
||
if _, err := event.PutValue(target, decodedData); err != nil { | ||
return fmt.Errorf("could not put value: %s: %v, %v", decodedData, target, err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (p *urlDecode) String() string { | ||
return "urldecode=" + fmt.Sprintf("%+v", p.config.Fields) | ||
} |
Oops, something went wrong.