199 lines
4.1 KiB
Go
199 lines
4.1 KiB
Go
|
// Copyright 2016 The Go Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// Copied and modified from Go 1.8 stdlib's encoding/json/#safeSet
|
||
|
|
||
|
package json
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"unicode/utf8"
|
||
|
)
|
||
|
|
||
|
// safeSet holds the value true if the ASCII character with the given array
|
||
|
// position can be represented inside a JSON string without any further
|
||
|
// escaping.
|
||
|
//
|
||
|
// All values are true except for the ASCII control characters (0-31), the
|
||
|
// double quote ("), and the backslash character ("\").
|
||
|
var safeSet = [utf8.RuneSelf]bool{
|
||
|
' ': true,
|
||
|
'!': true,
|
||
|
'"': false,
|
||
|
'#': true,
|
||
|
'$': true,
|
||
|
'%': true,
|
||
|
'&': true,
|
||
|
'\'': true,
|
||
|
'(': true,
|
||
|
')': true,
|
||
|
'*': true,
|
||
|
'+': true,
|
||
|
',': true,
|
||
|
'-': true,
|
||
|
'.': true,
|
||
|
'/': true,
|
||
|
'0': true,
|
||
|
'1': true,
|
||
|
'2': true,
|
||
|
'3': true,
|
||
|
'4': true,
|
||
|
'5': true,
|
||
|
'6': true,
|
||
|
'7': true,
|
||
|
'8': true,
|
||
|
'9': true,
|
||
|
':': true,
|
||
|
';': true,
|
||
|
'<': true,
|
||
|
'=': true,
|
||
|
'>': true,
|
||
|
'?': true,
|
||
|
'@': true,
|
||
|
'A': true,
|
||
|
'B': true,
|
||
|
'C': true,
|
||
|
'D': true,
|
||
|
'E': true,
|
||
|
'F': true,
|
||
|
'G': true,
|
||
|
'H': true,
|
||
|
'I': true,
|
||
|
'J': true,
|
||
|
'K': true,
|
||
|
'L': true,
|
||
|
'M': true,
|
||
|
'N': true,
|
||
|
'O': true,
|
||
|
'P': true,
|
||
|
'Q': true,
|
||
|
'R': true,
|
||
|
'S': true,
|
||
|
'T': true,
|
||
|
'U': true,
|
||
|
'V': true,
|
||
|
'W': true,
|
||
|
'X': true,
|
||
|
'Y': true,
|
||
|
'Z': true,
|
||
|
'[': true,
|
||
|
'\\': false,
|
||
|
']': true,
|
||
|
'^': true,
|
||
|
'_': true,
|
||
|
'`': true,
|
||
|
'a': true,
|
||
|
'b': true,
|
||
|
'c': true,
|
||
|
'd': true,
|
||
|
'e': true,
|
||
|
'f': true,
|
||
|
'g': true,
|
||
|
'h': true,
|
||
|
'i': true,
|
||
|
'j': true,
|
||
|
'k': true,
|
||
|
'l': true,
|
||
|
'm': true,
|
||
|
'n': true,
|
||
|
'o': true,
|
||
|
'p': true,
|
||
|
'q': true,
|
||
|
'r': true,
|
||
|
's': true,
|
||
|
't': true,
|
||
|
'u': true,
|
||
|
'v': true,
|
||
|
'w': true,
|
||
|
'x': true,
|
||
|
'y': true,
|
||
|
'z': true,
|
||
|
'{': true,
|
||
|
'|': true,
|
||
|
'}': true,
|
||
|
'~': true,
|
||
|
'\u007f': true,
|
||
|
}
|
||
|
|
||
|
// copied from Go 1.8 stdlib's encoding/json/#hex
|
||
|
var hex = "0123456789abcdef"
|
||
|
|
||
|
// escapeStringBytes escapes and writes the passed in string bytes to the dst
|
||
|
// buffer
|
||
|
//
|
||
|
// Copied and modifed from Go 1.8 stdlib's encodeing/json/#encodeState.stringBytes
|
||
|
func escapeStringBytes(e *bytes.Buffer, s []byte) {
|
||
|
e.WriteByte('"')
|
||
|
start := 0
|
||
|
for i := 0; i < len(s); {
|
||
|
if b := s[i]; b < utf8.RuneSelf {
|
||
|
if safeSet[b] {
|
||
|
i++
|
||
|
continue
|
||
|
}
|
||
|
if start < i {
|
||
|
e.Write(s[start:i])
|
||
|
}
|
||
|
switch b {
|
||
|
case '\\', '"':
|
||
|
e.WriteByte('\\')
|
||
|
e.WriteByte(b)
|
||
|
case '\n':
|
||
|
e.WriteByte('\\')
|
||
|
e.WriteByte('n')
|
||
|
case '\r':
|
||
|
e.WriteByte('\\')
|
||
|
e.WriteByte('r')
|
||
|
case '\t':
|
||
|
e.WriteByte('\\')
|
||
|
e.WriteByte('t')
|
||
|
default:
|
||
|
// This encodes bytes < 0x20 except for \t, \n and \r.
|
||
|
// If escapeHTML is set, it also escapes <, >, and &
|
||
|
// because they can lead to security holes when
|
||
|
// user-controlled strings are rendered into JSON
|
||
|
// and served to some browsers.
|
||
|
e.WriteString(`\u00`)
|
||
|
e.WriteByte(hex[b>>4])
|
||
|
e.WriteByte(hex[b&0xF])
|
||
|
}
|
||
|
i++
|
||
|
start = i
|
||
|
continue
|
||
|
}
|
||
|
c, size := utf8.DecodeRune(s[i:])
|
||
|
if c == utf8.RuneError && size == 1 {
|
||
|
if start < i {
|
||
|
e.Write(s[start:i])
|
||
|
}
|
||
|
e.WriteString(`\ufffd`)
|
||
|
i += size
|
||
|
start = i
|
||
|
continue
|
||
|
}
|
||
|
// U+2028 is LINE SEPARATOR.
|
||
|
// U+2029 is PARAGRAPH SEPARATOR.
|
||
|
// They are both technically valid characters in JSON strings,
|
||
|
// but don't work in JSONP, which has to be evaluated as JavaScript,
|
||
|
// and can lead to security holes there. It is valid JSON to
|
||
|
// escape them, so we do so unconditionally.
|
||
|
// See http://timelessrepo.com/json-isnt-a-javascript-subset for discussion.
|
||
|
if c == '\u2028' || c == '\u2029' {
|
||
|
if start < i {
|
||
|
e.Write(s[start:i])
|
||
|
}
|
||
|
e.WriteString(`\u202`)
|
||
|
e.WriteByte(hex[c&0xF])
|
||
|
i += size
|
||
|
start = i
|
||
|
continue
|
||
|
}
|
||
|
i += size
|
||
|
}
|
||
|
if start < len(s) {
|
||
|
e.Write(s[start:])
|
||
|
}
|
||
|
e.WriteByte('"')
|
||
|
}
|