libs5-go/encoding/multihash.go

90 lines
1.9 KiB
Go
Raw Normal View History

2024-01-03 13:36:23 +00:00
package encoding
2024-01-03 08:47:47 +00:00
import (
"bytes"
"encoding/base32"
"encoding/base64"
"encoding/json"
2024-01-03 08:47:47 +00:00
"git.lumeweb.com/LumeWeb/libs5-go/types"
"git.lumeweb.com/LumeWeb/libs5-go/utils"
2024-01-03 08:47:47 +00:00
)
type MultihashCode = int
2024-01-03 08:47:47 +00:00
type Multihash struct {
fullBytes []byte
}
func (m *Multihash) FullBytes() []byte {
return m.fullBytes
2024-01-03 08:47:47 +00:00
}
var _ json.Marshaler = (*Multihash)(nil)
var _ json.Unmarshaler = (*Multihash)(nil)
2024-01-03 13:36:23 +00:00
func NewMultihash(fullBytes []byte) *Multihash {
return &Multihash{fullBytes: fullBytes}
2024-01-03 08:47:47 +00:00
}
func (m *Multihash) FunctionType() types.HashType {
return types.HashType(m.fullBytes[0])
2024-01-03 08:47:47 +00:00
}
func (m *Multihash) HashBytes() []byte {
return m.fullBytes[1:]
2024-01-03 08:47:47 +00:00
}
2024-01-17 16:25:45 +00:00
func MultihashFromBytes(bytes []byte, kind types.HashType) *Multihash {
return NewMultihash(append([]byte{byte(kind)}, bytes...))
}
2024-01-03 13:36:23 +00:00
func MultihashFromBase64Url(hash string) (*Multihash, error) {
ret, err := base64.StdEncoding.DecodeString(hash)
2024-01-03 08:47:47 +00:00
if err != nil {
return nil, err
}
2024-01-03 13:36:23 +00:00
return NewMultihash(ret), nil
2024-01-03 08:47:47 +00:00
}
func (m *Multihash) ToBase64Url() (string, error) {
return base64.StdEncoding.EncodeToString(m.fullBytes), nil
2024-01-03 08:47:47 +00:00
}
func (m *Multihash) ToBase32() (string, error) {
return base32.StdEncoding.EncodeToString(m.fullBytes), nil
2024-01-03 08:47:47 +00:00
}
func (m *Multihash) ToString() (string, error) {
if m.FunctionType() == types.HashType(types.CIDTypeBridge) {
return string(m.fullBytes), nil // Assumes the bytes are valid UTF-8
2024-01-03 08:47:47 +00:00
}
return m.ToBase64Url()
}
func (m *Multihash) Equals(other *Multihash) bool {
return bytes.Equal(m.fullBytes, other.fullBytes)
2024-01-03 08:47:47 +00:00
}
func (m *Multihash) HashCode() MultihashCode {
return utils.HashCode(m.fullBytes[:4])
2024-01-03 08:47:47 +00:00
}
func (b *Multihash) UnmarshalJSON(data []byte) error {
decodedData, err := MultihashFromBase64Url(string(data))
if err != nil {
return err
}
b.fullBytes = decodedData.fullBytes
return nil
}
func (b Multihash) MarshalJSON() ([]byte, error) {
url, err := b.ToBase64Url()
if err != nil {
return nil, err
}
return []byte(url), nil
}