2020-10-26 17:45:51 +00:00
|
|
|
package images
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-11-05 17:35:20 +00:00
|
|
|
"errors"
|
2020-12-10 10:12:51 +00:00
|
|
|
|
|
|
|
"github.com/status-im/status-go/eth-node/crypto"
|
2020-10-26 17:45:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type IdentityImage struct {
|
2020-11-24 13:13:46 +00:00
|
|
|
KeyUID string
|
2020-10-27 15:41:20 +00:00
|
|
|
Name string
|
2020-10-26 17:45:51 +00:00
|
|
|
Payload []byte
|
2020-10-27 14:42:42 +00:00
|
|
|
Width int
|
|
|
|
Height int
|
|
|
|
FileSize int
|
|
|
|
ResizeTarget int
|
2020-10-26 17:45:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 17:35:20 +00:00
|
|
|
func (i IdentityImage) GetType() (ImageType, error) {
|
|
|
|
it := GetType(i.Payload)
|
|
|
|
if it == UNKNOWN {
|
|
|
|
return it, errors.New("unsupported file type")
|
|
|
|
}
|
|
|
|
|
|
|
|
return it, nil
|
|
|
|
}
|
|
|
|
|
2020-12-10 10:12:51 +00:00
|
|
|
func (i IdentityImage) Hash() []byte {
|
|
|
|
return crypto.Keccak256(i.Payload)
|
|
|
|
}
|
|
|
|
|
2020-10-26 17:45:51 +00:00
|
|
|
func (i IdentityImage) GetDataURI() (string, error) {
|
2020-11-18 12:41:36 +00:00
|
|
|
return GetPayloadDataURI(i.Payload)
|
2020-10-26 17:45:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i IdentityImage) MarshalJSON() ([]byte, error) {
|
|
|
|
uri, err := i.GetDataURI()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
temp := struct {
|
2020-11-30 16:42:52 +00:00
|
|
|
KeyUID string `json:"keyUid"`
|
2020-10-27 15:41:20 +00:00
|
|
|
Name string `json:"type"`
|
2020-10-26 17:45:51 +00:00
|
|
|
URI string `json:"uri"`
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
2020-11-30 16:42:52 +00:00
|
|
|
FileSize int `json:"fileSize"`
|
|
|
|
ResizeTarget int `json:"resizeTarget"`
|
2020-10-26 17:45:51 +00:00
|
|
|
}{
|
2020-11-24 13:13:46 +00:00
|
|
|
KeyUID: i.KeyUID,
|
2020-10-27 15:41:20 +00:00
|
|
|
Name: i.Name,
|
2020-10-26 17:45:51 +00:00
|
|
|
URI: uri,
|
|
|
|
Width: i.Width,
|
|
|
|
Height: i.Height,
|
|
|
|
FileSize: i.FileSize,
|
|
|
|
ResizeTarget: i.ResizeTarget,
|
|
|
|
}
|
|
|
|
|
|
|
|
return json.Marshal(temp)
|
|
|
|
}
|