1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-10-27 05:20:14 -04:00
neonmodem/system/system.go

43 lines
790 B
Go
Raw Normal View History

2022-12-28 22:22:36 -05:00
package system
import (
"errors"
"github.com/mrusme/gobbs/models/post"
"github.com/mrusme/gobbs/system/adapter"
"github.com/mrusme/gobbs/system/discourse"
"github.com/mrusme/gobbs/system/lemmy"
)
type System interface {
GetConfig() map[string]interface{}
SetConfig(cfg *map[string]interface{})
2022-12-28 22:22:36 -05:00
GetCapabilities() []adapter.Capability
2022-12-29 17:46:59 -05:00
Connect(sysURL string) error
2022-12-28 22:22:36 -05:00
Load() error
ListPosts() ([]post.Post, error)
}
func New(sysType string, sysConfig *map[string]interface{}) (System, error) {
var sys System
switch sysType {
case "discourse":
sys = new(discourse.System)
case "lemmy":
sys = new(lemmy.System)
default:
return nil, errors.New("No such system")
}
sys.SetConfig(sysConfig)
2022-12-28 22:22:36 -05:00
err := sys.Load()
if err != nil {
return nil, err
}
return sys, nil
}