mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
39 lines
791 B
Go
39 lines
791 B
Go
package types
|
|
|
|
import (
|
|
"database/sql"
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/mrmelon54/pronouns"
|
|
)
|
|
|
|
var (
|
|
_ sql.Scanner = &UserPronoun{}
|
|
_ json.Marshaler = &UserPronoun{}
|
|
_ json.Unmarshaler = &UserPronoun{}
|
|
)
|
|
|
|
type UserPronoun struct{ pronouns.Pronoun }
|
|
|
|
func (p *UserPronoun) Scan(src any) error {
|
|
s, ok := src.(string)
|
|
if !ok {
|
|
return fmt.Errorf("unsupported Scan, storing driver.Value type %T into type %T", src, p)
|
|
}
|
|
pro, err := pronouns.FindPronoun(s)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
p.Pronoun = pro
|
|
return nil
|
|
}
|
|
func (p UserPronoun) MarshalJSON() ([]byte, error) { return json.Marshal(p.Pronoun.String()) }
|
|
func (p *UserPronoun) UnmarshalJSON(bytes []byte) error {
|
|
var a string
|
|
err := json.Unmarshal(bytes, &a)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return p.Scan(a)
|
|
}
|