2020-02-10 09:23:10 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type EntityIDType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
UsernameType EntityIDType = "@"
|
2021-03-30 19:40:02 +00:00
|
|
|
ChatAliasType EntityIDType = "#"
|
|
|
|
ChatIDType EntityIDType = "!"
|
2020-02-10 09:23:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type EntityID struct {
|
|
|
|
EntityIDType EntityIDType
|
|
|
|
LocalPart string
|
|
|
|
ServerPart string
|
|
|
|
}
|
|
|
|
|
2021-03-30 19:40:02 +00:00
|
|
|
func NewEntityIDFromString(entityID string) (*EntityID, error) {
|
|
|
|
eid := &EntityID{}
|
|
|
|
typ := string(entityID[0])
|
|
|
|
switch EntityIDType(typ) {
|
2020-02-10 09:23:10 +00:00
|
|
|
case UsernameType:
|
2021-03-30 19:40:02 +00:00
|
|
|
fallthrough
|
|
|
|
case ChatAliasType:
|
|
|
|
fallthrough
|
|
|
|
case ChatIDType:
|
2020-02-10 09:23:10 +00:00
|
|
|
{
|
2021-03-30 19:40:02 +00:00
|
|
|
eid.EntityIDType = EntityIDType(typ)
|
2020-02-10 09:23:10 +00:00
|
|
|
}
|
2021-03-30 19:40:02 +00:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("invalid entity id type: %s", typ)
|
2020-02-10 09:23:10 +00:00
|
|
|
}
|
2021-03-30 19:40:02 +00:00
|
|
|
|
2020-02-10 09:23:10 +00:00
|
|
|
localAndServerPart := strings.Split(entityID, "@")
|
|
|
|
if len(localAndServerPart) == 3 {
|
|
|
|
localAndServerPart = localAndServerPart[1:]
|
|
|
|
}
|
2021-03-30 19:40:02 +00:00
|
|
|
eid.LocalPart = localAndServerPart[0]
|
|
|
|
eid.ServerPart = localAndServerPart[1]
|
|
|
|
|
|
|
|
return eid, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewEntityID(typ, localPart, serverPart string) (*EntityID, error) {
|
|
|
|
eid := &EntityID{}
|
|
|
|
|
|
|
|
switch EntityIDType(typ) {
|
|
|
|
case UsernameType:
|
|
|
|
fallthrough
|
|
|
|
case ChatAliasType:
|
|
|
|
fallthrough
|
|
|
|
case ChatIDType:
|
|
|
|
{
|
|
|
|
eid.EntityIDType = EntityIDType(typ)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("invalid entity id type: %s", typ)
|
|
|
|
}
|
|
|
|
|
|
|
|
eid.LocalPart = localPart
|
|
|
|
eid.ServerPart = serverPart
|
2020-02-10 09:23:10 +00:00
|
|
|
|
2021-03-30 19:40:02 +00:00
|
|
|
return eid, nil
|
2020-02-10 09:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (eID *EntityID) String() string {
|
|
|
|
return fmt.Sprintf("%s%s@%s", eID.EntityIDType, eID.LocalPart, eID.ServerPart)
|
|
|
|
}
|