summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/utils/jsonutils
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-08-10 00:29:54 +0200
committerGitHub <noreply@github.com>2020-08-10 00:29:54 +0200
commit4e50fd864921c556988c919269448efdb90fa961 (patch)
treea3625f03f8de3c4f3841364000a4ea3aa42c1533 /vendor/github.com/mattermost/mattermost-server/utils/jsonutils
parentdfdffa0027334e55ce213fc6eb62206dbf48baf6 (diff)
downloadmatterbridge-msglm-4e50fd864921c556988c919269448efdb90fa961.tar.gz
matterbridge-msglm-4e50fd864921c556988c919269448efdb90fa961.tar.bz2
matterbridge-msglm-4e50fd864921c556988c919269448efdb90fa961.zip
Use mattermost v5 module (#1192)
Diffstat (limited to 'vendor/github.com/mattermost/mattermost-server/utils/jsonutils')
-rw-r--r--vendor/github.com/mattermost/mattermost-server/utils/jsonutils/json.go56
1 files changed, 0 insertions, 56 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/utils/jsonutils/json.go b/vendor/github.com/mattermost/mattermost-server/utils/jsonutils/json.go
deleted file mode 100644
index da77a2b6..00000000
--- a/vendor/github.com/mattermost/mattermost-server/utils/jsonutils/json.go
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package jsonutils
-
-import (
- "bytes"
- "encoding/json"
-
- "github.com/pkg/errors"
-)
-
-type HumanizedJsonError struct {
- Err error
- Line int
- Character int
-}
-
-func (e *HumanizedJsonError) Error() string {
- return e.Err.Error()
-}
-
-// HumanizeJsonError extracts error offsets and annotates the error with useful context
-func HumanizeJsonError(err error, data []byte) error {
- if syntaxError, ok := err.(*json.SyntaxError); ok {
- return NewHumanizedJsonError(syntaxError, data, syntaxError.Offset)
- } else if unmarshalError, ok := err.(*json.UnmarshalTypeError); ok {
- return NewHumanizedJsonError(unmarshalError, data, unmarshalError.Offset)
- } else {
- return err
- }
-}
-
-func NewHumanizedJsonError(err error, data []byte, offset int64) *HumanizedJsonError {
- if err == nil {
- return nil
- }
-
- if offset < 0 || offset > int64(len(data)) {
- return &HumanizedJsonError{
- Err: errors.Wrapf(err, "invalid offset %d", offset),
- }
- }
-
- lineSep := []byte{'\n'}
-
- line := bytes.Count(data[:offset], lineSep) + 1
- lastLineOffset := bytes.LastIndex(data[:offset], lineSep)
- character := int(offset) - (lastLineOffset + 1) + 1
-
- return &HumanizedJsonError{
- Line: line,
- Character: character,
- Err: errors.Wrapf(err, "parsing error at line %d, character %d", line, character),
- }
-}