mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-05 11:33:39 +00:00
gb vendor update github.com/matrix-org/gomatrixserverlib
This commit is contained in:
parent
0cc1c2f909
commit
2e0188ac46
8 changed files with 157 additions and 4 deletions
2
vendor/manifest
vendored
2
vendor/manifest
vendored
|
@ -135,7 +135,7 @@
|
||||||
{
|
{
|
||||||
"importpath": "github.com/matrix-org/gomatrixserverlib",
|
"importpath": "github.com/matrix-org/gomatrixserverlib",
|
||||||
"repository": "https://github.com/matrix-org/gomatrixserverlib",
|
"repository": "https://github.com/matrix-org/gomatrixserverlib",
|
||||||
"revision": "8540d3dfc13c797cd3200640bc06e0286ab355aa",
|
"revision": "b2704c7d9af54b68a4cf07cf6663ee98174a786c",
|
||||||
"branch": "master"
|
"branch": "master"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -53,6 +53,12 @@ func (b64 Base64String) MarshalJSON() ([]byte, error) {
|
||||||
return json.Marshal(b64.Encode())
|
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.
|
// 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.
|
// This takes a pointer receiver because it needs to write the result of decoding.
|
||||||
func (b64 *Base64String) UnmarshalJSON(raw []byte) (err error) {
|
func (b64 *Base64String) UnmarshalJSON(raw []byte) (err error) {
|
||||||
|
@ -65,3 +71,14 @@ func (b64 *Base64String) UnmarshalJSON(raw []byte) (err error) {
|
||||||
err = b64.Decode(str)
|
err = b64.Decode(str)
|
||||||
return
|
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
|
||||||
|
}
|
||||||
|
|
|
@ -18,6 +18,8 @@ package gomatrixserverlib
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"gopkg.in/yaml.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMarshalBase64(t *testing.T) {
|
func TestMarshalBase64(t *testing.T) {
|
||||||
|
@ -93,3 +95,58 @@ func TestMarshalBase64Slice(t *testing.T) {
|
||||||
t.Fatalf("json.Marshal(%v): wanted %q got %q", input, want, string(got))
|
t.Fatalf("json.Marshal(%v): wanted %q got %q", input, want, string(got))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestMarshalYAMLBase64(t *testing.T) {
|
||||||
|
input := Base64String("this\xffis\xffa\xfftest")
|
||||||
|
want := "dGhpc/9pc/9h/3Rlc3Q\n"
|
||||||
|
got, err := yaml.Marshal(input)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if string(got) != want {
|
||||||
|
t.Fatalf("yaml.Marshal(%v): wanted %q got %q", input, want, string(got))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMarshalYAMLBase64Struct(t *testing.T) {
|
||||||
|
input := struct{ Value Base64String }{Base64String("this\xffis\xffa\xfftest")}
|
||||||
|
want := "value: dGhpc/9pc/9h/3Rlc3Q\n"
|
||||||
|
got, err := yaml.Marshal(input)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if string(got) != want {
|
||||||
|
t.Fatalf("yaml.Marshal(%v): wanted %q got %q", input, want, string(got))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUnmarshalYAMLBase64(t *testing.T) {
|
||||||
|
input := []byte("dGhpc/9pc/9h/3Rlc3Q")
|
||||||
|
want := Base64String("this\xffis\xffa\xfftest")
|
||||||
|
var got Base64String
|
||||||
|
err := yaml.Unmarshal(input, &got)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if string(got) != string(want) {
|
||||||
|
t.Fatalf("yaml.Unmarshal(%q): wanted %q got %q", string(input), want, string(got))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUnmarshalYAMLBase64Struct(t *testing.T) {
|
||||||
|
// var u yaml.Unmarshaler
|
||||||
|
u := Base64String("this\xffis\xffa\xfftest")
|
||||||
|
|
||||||
|
input := []byte(`value: dGhpc/9pc/9h/3Rlc3Q`)
|
||||||
|
want := struct{ Value Base64String }{u}
|
||||||
|
result := struct {
|
||||||
|
Value Base64String `yaml:"value"`
|
||||||
|
}{}
|
||||||
|
err := yaml.Unmarshal(input, &result)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if string(result.Value) != string(want.Value) {
|
||||||
|
t.Fatalf("yaml.Unmarshal(%v): wanted %q got %q", input, want, result)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -80,7 +80,7 @@ func newFederationTripper() *federationTripper {
|
||||||
ServerName: "",
|
ServerName: "",
|
||||||
// TODO: We should be checking that the TLS certificate we see here matches
|
// TODO: We should be checking that the TLS certificate we see here matches
|
||||||
// one of the allowed SHA-256 fingerprints for the server.
|
// one of the allowed SHA-256 fingerprints for the server.
|
||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: true, // nolint: gas
|
||||||
})
|
})
|
||||||
if err := conn.Handshake(); err != nil {
|
if err := conn.Handshake(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -22,6 +22,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
"github.com/tidwall/sjson"
|
"github.com/tidwall/sjson"
|
||||||
"golang.org/x/crypto/ed25519"
|
"golang.org/x/crypto/ed25519"
|
||||||
)
|
)
|
||||||
|
@ -306,6 +307,33 @@ func (e Event) SetUnsigned(unsigned interface{}) (Event, error) {
|
||||||
return result, nil
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetUnsignedField takes a path and value to insert into the unsigned dict of
|
||||||
|
// the event.
|
||||||
|
// path is a dot separated path into the unsigned dict (see gjson package
|
||||||
|
// for details on format). In particular some characters like '.' and '*' must
|
||||||
|
// be escaped.
|
||||||
|
func (e *Event) SetUnsignedField(path string, value interface{}) error {
|
||||||
|
// The safest way is to change the unsigned json and then reparse the
|
||||||
|
// event fully. But since we are only changing the unsigned section,
|
||||||
|
// which doesn't affect the signatures or hashes, we can cheat and
|
||||||
|
// just fiddle those bits directly.
|
||||||
|
|
||||||
|
path = "unsigned." + path
|
||||||
|
eventJSON, err := sjson.SetBytes(e.eventJSON, path, value)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
eventJSON = CanonicalJSONAssumeValid(eventJSON)
|
||||||
|
|
||||||
|
res := gjson.GetBytes(eventJSON, "unsigned")
|
||||||
|
unsigned := rawJSONFromResult(res, eventJSON)
|
||||||
|
|
||||||
|
e.eventJSON = eventJSON
|
||||||
|
e.fields.Unsigned = unsigned
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// EventReference returns an EventReference for the event.
|
// EventReference returns an EventReference for the event.
|
||||||
// The reference can be used to refer to this event from other events.
|
// The reference can be used to refer to this event from other events.
|
||||||
func (e Event) EventReference() EventReference {
|
func (e Event) EventReference() EventReference {
|
||||||
|
|
|
@ -50,3 +50,32 @@ func BenchmarkParseSmallerEventFailedHash(b *testing.B) {
|
||||||
func BenchmarkParseSmallerEventRedacted(b *testing.B) {
|
func BenchmarkParseSmallerEventRedacted(b *testing.B) {
|
||||||
benchmarkParse(b, `{"event_id":"$yvN1b43rlmcOs5fY:localhost","sender":"@test:localhost","room_id":"!19Mp0U9hjajeIiw1:localhost","hashes":{"sha256":"Oh1mwI1jEqZ3tgJ+V1Dmu5nOEGpCE4RFUqyJv2gQXKs"},"signatures":{"localhost":{"ed25519:u9kP":"5IzSuRXkxvbTp0vZhhXYZeOe+619iG3AybJXr7zfNn/4vHz4TH7qSJVQXSaHHvcTcDodAKHnTG1WDulgO5okAQ"}},"content":{},"type":"m.room.name","state_key":"","depth":7,"prev_events":[["$FqI6TVvWpcbcnJ97:localhost",{"sha256":"upCsBqUhNUgT2/+zkzg8TbqdQpWWKQnZpGJc6KcbUC4"}]],"prev_state":[],"auth_events":[["$oXL79cT7fFxR7dPH:localhost",{"sha256":"abjkiDSg1RkuZrbj2jZoGMlQaaj1Ue3Jhi7I7NlKfXY"}],["$IVUsaSkm1LBAZYYh:localhost",{"sha256":"X7RUj46hM/8sUHNBIFkStbOauPvbDzjSdH4NibYWnko"}],["$VS2QT0EeArZYi8wf:localhost",{"sha256":"k9eM6utkCH8vhLW9/oRsH74jOBS/6RVK42iGDFbylno"}]],"origin":"localhost","origin_server_ts":1510854416361}`)
|
benchmarkParse(b, `{"event_id":"$yvN1b43rlmcOs5fY:localhost","sender":"@test:localhost","room_id":"!19Mp0U9hjajeIiw1:localhost","hashes":{"sha256":"Oh1mwI1jEqZ3tgJ+V1Dmu5nOEGpCE4RFUqyJv2gQXKs"},"signatures":{"localhost":{"ed25519:u9kP":"5IzSuRXkxvbTp0vZhhXYZeOe+619iG3AybJXr7zfNn/4vHz4TH7qSJVQXSaHHvcTcDodAKHnTG1WDulgO5okAQ"}},"content":{},"type":"m.room.name","state_key":"","depth":7,"prev_events":[["$FqI6TVvWpcbcnJ97:localhost",{"sha256":"upCsBqUhNUgT2/+zkzg8TbqdQpWWKQnZpGJc6KcbUC4"}]],"prev_state":[],"auth_events":[["$oXL79cT7fFxR7dPH:localhost",{"sha256":"abjkiDSg1RkuZrbj2jZoGMlQaaj1Ue3Jhi7I7NlKfXY"}],["$IVUsaSkm1LBAZYYh:localhost",{"sha256":"X7RUj46hM/8sUHNBIFkStbOauPvbDzjSdH4NibYWnko"}],["$VS2QT0EeArZYi8wf:localhost",{"sha256":"k9eM6utkCH8vhLW9/oRsH74jOBS/6RVK42iGDFbylno"}]],"origin":"localhost","origin_server_ts":1510854416361}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestAddUnsignedField(t *testing.T) {
|
||||||
|
initialEventJSON := `{"auth_events":[["$oXL79cT7fFxR7dPH:localhost",{"sha256":"abjkiDSg1RkuZrbj2jZoGMlQaaj1Ue3Jhi7I7NlKfXY"}],["$IVUsaSkm1LBAZYYh:localhost",{"sha256":"X7RUj46hM/8sUHNBIFkStbOauPvbDzjSdH4NibYWnko"}],["$VS2QT0EeArZYi8wf:localhost",{"sha256":"k9eM6utkCH8vhLW9/oRsH74jOBS/6RVK42iGDFbylno"}]],"content":{"name":"test3"},"depth":7,"event_id":"$yvN1b43rlmcOs5fY:localhost","hashes":{"sha256":"Oh1mwI1jEqZ3tgJ+V1Dmu5nOEGpCE4RFUqyJv2gQXKs"},"origin":"localhost","origin_server_ts":1510854416361,"prev_events":[["$FqI6TVvWpcbcnJ97:localhost",{"sha256":"upCsBqUhNUgT2/+zkzg8TbqdQpWWKQnZpGJc6KcbUC4"}]],"prev_state":[],"room_id":"!19Mp0U9hjajeIiw1:localhost","sender":"@test:localhost","signatures":{"localhost":{"ed25519:u9kP":"5IzSuRXkxvbTp0vZhhXYZeOe+619iG3AybJXr7zfNn/4vHz4TH7qSJVQXSaHHvcTcDodAKHnTG1WDulgO5okAQ"}},"state_key":"","type":"m.room.name"}`
|
||||||
|
expectedEventJSON := `{"auth_events":[["$oXL79cT7fFxR7dPH:localhost",{"sha256":"abjkiDSg1RkuZrbj2jZoGMlQaaj1Ue3Jhi7I7NlKfXY"}],["$IVUsaSkm1LBAZYYh:localhost",{"sha256":"X7RUj46hM/8sUHNBIFkStbOauPvbDzjSdH4NibYWnko"}],["$VS2QT0EeArZYi8wf:localhost",{"sha256":"k9eM6utkCH8vhLW9/oRsH74jOBS/6RVK42iGDFbylno"}]],"content":{"name":"test3"},"depth":7,"event_id":"$yvN1b43rlmcOs5fY:localhost","hashes":{"sha256":"Oh1mwI1jEqZ3tgJ+V1Dmu5nOEGpCE4RFUqyJv2gQXKs"},"origin":"localhost","origin_server_ts":1510854416361,"prev_events":[["$FqI6TVvWpcbcnJ97:localhost",{"sha256":"upCsBqUhNUgT2/+zkzg8TbqdQpWWKQnZpGJc6KcbUC4"}]],"prev_state":[],"room_id":"!19Mp0U9hjajeIiw1:localhost","sender":"@test:localhost","signatures":{"localhost":{"ed25519:u9kP":"5IzSuRXkxvbTp0vZhhXYZeOe+619iG3AybJXr7zfNn/4vHz4TH7qSJVQXSaHHvcTcDodAKHnTG1WDulgO5okAQ"}},"state_key":"","type":"m.room.name","unsigned":{"foo":"bar","x":1}}`
|
||||||
|
|
||||||
|
var event Event
|
||||||
|
if err := json.Unmarshal([]byte(initialEventJSON), &event); err != nil {
|
||||||
|
t.Error("Failed to parse event")
|
||||||
|
}
|
||||||
|
|
||||||
|
err := event.SetUnsignedField("foo", "bar")
|
||||||
|
if err != nil {
|
||||||
|
t.Error("Failed to insert foo")
|
||||||
|
}
|
||||||
|
|
||||||
|
err = event.SetUnsignedField("x", 1)
|
||||||
|
if err != nil {
|
||||||
|
t.Error("Failed to insert x")
|
||||||
|
}
|
||||||
|
|
||||||
|
bytes, err := json.Marshal(event)
|
||||||
|
if err != nil {
|
||||||
|
t.Error("Failed to marshal x")
|
||||||
|
}
|
||||||
|
|
||||||
|
if expectedEventJSON != string(bytes) {
|
||||||
|
t.Fatalf("Serialized event does not match expected: %s != %s", string(bytes), initialEventJSON)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -111,7 +111,9 @@ func FetchKeysDirect(serverName ServerName, addr, sni string) (*ServerKeys, *tls
|
||||||
defer tcpconn.Close() // nolint: errcheck
|
defer tcpconn.Close() // nolint: errcheck
|
||||||
tlsconn := tls.Client(tcpconn, &tls.Config{
|
tlsconn := tls.Client(tcpconn, &tls.Config{
|
||||||
ServerName: sni,
|
ServerName: sni,
|
||||||
InsecureSkipVerify: true, // This must be specified even though the TLS library will ignore it.
|
|
||||||
|
// This must be specified even though the TLS library will ignore it.
|
||||||
|
InsecureSkipVerify: true, // nolint: gas
|
||||||
})
|
})
|
||||||
if err = tlsconn.Handshake(); err != nil {
|
if err = tlsconn.Handshake(); err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
|
|
20
vendor/src/github.com/matrix-org/gomatrixserverlib/travis.sh
vendored
Normal file
20
vendor/src/github.com/matrix-org/gomatrixserverlib/travis.sh
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
|
cd `dirname $0`
|
||||||
|
|
||||||
|
# -u so that if this is run on a dev box, we get the latest deps, as
|
||||||
|
# we do on travis.
|
||||||
|
|
||||||
|
go get -u \
|
||||||
|
github.com/alecthomas/gometalinter \
|
||||||
|
golang.org/x/crypto/ed25519 \
|
||||||
|
github.com/matrix-org/util \
|
||||||
|
github.com/matrix-org/gomatrix \
|
||||||
|
github.com/tidwall/gjson \
|
||||||
|
github.com/tidwall/sjson \
|
||||||
|
github.com/pkg/errors \
|
||||||
|
gopkg.in/yaml.v2 \
|
||||||
|
|
||||||
|
./hooks/pre-commit
|
Loading…
Reference in a new issue