mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-03 18:43:39 +00:00
84 lines
2.9 KiB
Go
84 lines
2.9 KiB
Go
/* Copyright 2016-2017 Vector Creations Ltd
|
|
*
|
|
* 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 gomatrixserverlib
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"strings"
|
|
)
|
|
|
|
// A Base64String is a string of bytes that are base64 encoded when used in JSON.
|
|
// The bytes encoded using base64 when marshalled as JSON.
|
|
// When the bytes are unmarshalled from JSON they are decoded from base64.
|
|
type Base64String []byte
|
|
|
|
// Encode encodes the bytes as base64
|
|
func (b64 Base64String) Encode() string {
|
|
return base64.RawStdEncoding.EncodeToString(b64)
|
|
}
|
|
|
|
// Decode decodes the given input into this Base64String
|
|
func (b64 *Base64String) Decode(str string) error {
|
|
// We must check whether the string was encoded in a URL-safe way in order
|
|
// to use the appropriate encoding.
|
|
var err error
|
|
if strings.ContainsAny(str, "-_") {
|
|
*b64, err = base64.RawURLEncoding.DecodeString(str)
|
|
} else {
|
|
*b64, err = base64.RawStdEncoding.DecodeString(str)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// MarshalJSON encodes the bytes as base64 and then encodes the base64 as a JSON string.
|
|
// This takes a value receiver so that maps and slices of Base64String encode correctly.
|
|
func (b64 Base64String) MarshalJSON() ([]byte, error) {
|
|
// This could be made more efficient by using base64.RawStdEncoding.Encode
|
|
// to write the base64 directly to the JSON. We don't need to JSON escape
|
|
// any of the characters used in base64.
|
|
return json.Marshal(b64.Encode())
|
|
}
|
|
|
|
// MarshalYAML implements yaml.Marshaller
|
|
// It just encodes the bytes as base64, which is a valid YAML string
|
|
func (b64 Base64String) MarshalYAML() (interface{}, error) {
|
|
return b64.Encode(), nil
|
|
}
|
|
|
|
// UnmarshalJSON decodes a JSON string and then decodes the resulting base64.
|
|
// This takes a pointer receiver because it needs to write the result of decoding.
|
|
func (b64 *Base64String) UnmarshalJSON(raw []byte) (err error) {
|
|
// We could add a fast path that used base64.RawStdEncoding.Decode
|
|
// directly on the raw JSON if the JSON didn't contain any escapes.
|
|
var str string
|
|
if err = json.Unmarshal(raw, &str); err != nil {
|
|
return
|
|
}
|
|
err = b64.Decode(str)
|
|
return
|
|
}
|
|
|
|
// UnmarshalYAML implements yaml.Unmarshaller
|
|
// it unmarshals the input as a yaml string and then base64-decodes the result
|
|
func (b64 *Base64String) UnmarshalYAML(unmarshal func(interface{}) error) (err error) {
|
|
var str string
|
|
if err = unmarshal(&str); err != nil {
|
|
return
|
|
}
|
|
err = b64.Decode(str)
|
|
return
|
|
}
|