bloat/model/app.go

41 lines
757 B
Go
Raw Normal View History

2019-12-13 18:08:26 +00:00
package model
import (
"errors"
"strings"
)
2019-12-13 18:08:26 +00:00
var (
ErrAppNotFound = errors.New("app not found")
)
type App struct {
InstanceDomain string
InstanceURL string
ClientID string
ClientSecret string
2019-12-13 18:08:26 +00:00
}
type AppRepository interface {
Add(app App) (err error)
Get(instanceDomain string) (app App, err error)
}
func (a *App) Marshal() []byte {
str := a.InstanceURL + "\n" + a.ClientID + "\n" + a.ClientSecret
return []byte(str)
}
func (a *App) Unmarshal(instanceDomain string, data []byte) error {
str := string(data)
lines := strings.Split(str, "\n")
if len(lines) != 3 {
return errors.New("invalid data")
}
a.InstanceDomain = instanceDomain
a.InstanceURL = lines[0]
a.ClientID = lines[1]
a.ClientSecret = lines[2]
return nil
2019-12-13 18:08:26 +00:00
}