mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-12-04 14:46:37 -05:00
312 lines
6.2 KiB
Go
312 lines
6.2 KiB
Go
package lemmy
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/araddon/dateparse"
|
|
"github.com/mrusme/gobbs/models/author"
|
|
"github.com/mrusme/gobbs/models/forum"
|
|
"github.com/mrusme/gobbs/models/post"
|
|
"github.com/mrusme/gobbs/models/reply"
|
|
"github.com/mrusme/gobbs/system/adapter"
|
|
"go.arsenm.dev/go-lemmy"
|
|
"go.arsenm.dev/go-lemmy/types"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type System struct {
|
|
ID int
|
|
config map[string]interface{}
|
|
logger *zap.SugaredLogger
|
|
client *lemmy.Client
|
|
}
|
|
|
|
func (sys *System) GetID() int {
|
|
return sys.ID
|
|
}
|
|
|
|
func (sys *System) SetID(id int) {
|
|
sys.ID = id
|
|
}
|
|
|
|
func (sys *System) GetConfig() map[string]interface{} {
|
|
return sys.config
|
|
}
|
|
|
|
func (sys *System) SetConfig(cfg *map[string]interface{}) {
|
|
sys.config = *cfg
|
|
}
|
|
|
|
func (sys *System) SetLogger(logger *zap.SugaredLogger) {
|
|
sys.logger = logger
|
|
}
|
|
|
|
func (sys *System) GetCapabilities() adapter.Capabilities {
|
|
var caps []adapter.Capability
|
|
|
|
caps = append(caps,
|
|
// TODO: https://github.com/Arsen6331/go-lemmy/issues/2
|
|
// adapter.Capability{
|
|
// ID: "list:forums",
|
|
// Name: "List Forums",
|
|
// },
|
|
adapter.Capability{
|
|
ID: "list:posts",
|
|
Name: "List Posts",
|
|
},
|
|
// TODO: Not possible without list:forums
|
|
// adapter.Capability{
|
|
// ID: "create:post",
|
|
// Name: "Create Post",
|
|
// },
|
|
// TODO: https://github.com/Arsen6331/go-lemmy/issues/1
|
|
// adapter.Capability{
|
|
// ID: "list:replies",
|
|
// Name: "List Replies",
|
|
// },
|
|
// TODO: Maybe possible but kind of pointless without list:replies
|
|
// adapter.Capability{
|
|
// ID: "create:reply",
|
|
// Name: "Create Reply",
|
|
// },
|
|
)
|
|
|
|
return caps
|
|
}
|
|
|
|
func (sys *System) FilterValue() string {
|
|
return fmt.Sprintf(
|
|
"Lemmy %s",
|
|
sys.config["url"],
|
|
)
|
|
}
|
|
|
|
func (sys *System) Title() string {
|
|
sysUrl := sys.config["url"].(string)
|
|
u, err := url.Parse(sysUrl)
|
|
if err != nil {
|
|
return sysUrl
|
|
}
|
|
|
|
return u.Hostname()
|
|
}
|
|
|
|
func (sys *System) Description() string {
|
|
return fmt.Sprintf(
|
|
"Lemmy",
|
|
)
|
|
}
|
|
|
|
func (sys *System) Load() error {
|
|
var err error
|
|
|
|
url := sys.config["url"]
|
|
if url == nil {
|
|
return nil
|
|
}
|
|
|
|
sys.client, err = lemmy.New(url.(string))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
credentials := make(map[string]string)
|
|
for k, v := range (sys.config["credentials"]).(map[string]interface{}) {
|
|
credentials[k] = v.(string)
|
|
}
|
|
|
|
err = sys.client.Login(context.Background(), types.Login{
|
|
UsernameOrEmail: credentials["username"],
|
|
Password: credentials["password"],
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sys *System) ListForums() ([]forum.Forum, error) {
|
|
return []forum.Forum{}, nil
|
|
// Not possible to list forums atm
|
|
|
|
resp, err := sys.client.Communities(context.Background(), types.ListCommunities{
|
|
Type: types.NewOptional(types.ListingSubscribed),
|
|
})
|
|
if err != nil {
|
|
return []forum.Forum{}, err
|
|
}
|
|
|
|
var models []forum.Forum
|
|
for _, i := range resp.Communities {
|
|
sys.logger.Debugf("FORUM:")
|
|
b, _ := json.Marshal(i)
|
|
sys.logger.Debug(string(b))
|
|
models = append(models, forum.Forum{
|
|
ID: strconv.Itoa(i.CommunitySafe.ID),
|
|
Name: i.CommunitySafe.Name,
|
|
|
|
SysIDX: sys.ID,
|
|
})
|
|
}
|
|
|
|
return models, nil
|
|
}
|
|
|
|
func (sys *System) ListPosts(forumID string) ([]post.Post, error) {
|
|
resp, err := sys.client.Posts(context.Background(), types.GetPosts{
|
|
Type: types.NewOptional(types.ListingSubscribed),
|
|
Sort: types.NewOptional(types.New),
|
|
Limit: types.NewOptional(int64(50)),
|
|
})
|
|
if err != nil {
|
|
return []post.Post{}, err
|
|
}
|
|
|
|
cfg := sys.GetConfig()
|
|
baseURL := cfg["url"].(string)
|
|
|
|
var models []post.Post
|
|
for _, i := range resp.Posts {
|
|
t := "post"
|
|
body := i.Post.Body.ValueOr("")
|
|
if i.Post.URL.IsValid() {
|
|
t = "url"
|
|
body = i.Post.URL.ValueOr("")
|
|
}
|
|
|
|
createdAt, err := dateparse.ParseAny(i.Post.Published)
|
|
if err != nil {
|
|
createdAt = time.Now() // TODO: Errrr
|
|
}
|
|
lastCommentedAt, err := dateparse.ParseAny(i.Counts.NewestCommentTime)
|
|
if err != nil {
|
|
lastCommentedAt = time.Now() // TODO: Errrrr
|
|
}
|
|
|
|
models = append(models, post.Post{
|
|
ID: strconv.Itoa(i.Post.ID),
|
|
|
|
Subject: i.Post.Name,
|
|
Body: body,
|
|
|
|
Type: t,
|
|
|
|
Pinned: i.Post.Stickied,
|
|
Closed: i.Post.Locked,
|
|
|
|
CreatedAt: createdAt,
|
|
LastCommentedAt: lastCommentedAt,
|
|
|
|
Author: author.Author{
|
|
ID: strconv.Itoa(i.Post.CreatorID),
|
|
Name: i.Creator.Name,
|
|
},
|
|
|
|
Forum: forum.Forum{
|
|
ID: strconv.Itoa(i.Post.CommunityID),
|
|
Name: i.Community.Name,
|
|
|
|
SysIDX: sys.ID,
|
|
},
|
|
|
|
URL: fmt.Sprintf("%s/post/%d", baseURL, i.Post.ID),
|
|
|
|
SysIDX: sys.ID,
|
|
})
|
|
}
|
|
|
|
return models, nil
|
|
}
|
|
|
|
func (sys *System) LoadPost(p *post.Post) error {
|
|
pid, err := strconv.Atoi(p.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// cid, err := strconv.Atoi(p.Forum.ID)
|
|
// if err != nil {
|
|
// return err
|
|
// }
|
|
|
|
resp, err := sys.client.Comments(context.Background(), types.GetComments{
|
|
Type: types.NewOptional(types.ListingLocal),
|
|
Sort: types.NewOptional(types.CommentSortHot),
|
|
// CommunityID: types.NewOptional(cid),
|
|
PostID: types.NewOptional(pid),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, i := range resp.Comments {
|
|
createdAt, err := dateparse.ParseAny(i.Comment.Published)
|
|
if err != nil {
|
|
createdAt = time.Now() // TODO: Errrrr
|
|
}
|
|
|
|
p.Replies = append(p.Replies, reply.Reply{
|
|
ID: strconv.Itoa(i.Comment.ID),
|
|
|
|
Body: i.Comment.Content,
|
|
|
|
CreatedAt: createdAt,
|
|
|
|
Author: author.Author{
|
|
ID: strconv.Itoa(i.Comment.CreatorID),
|
|
Name: i.Creator.Name,
|
|
},
|
|
|
|
SysIDX: sys.ID,
|
|
})
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sys *System) CreatePost(p *post.Post) error {
|
|
communityID, err := strconv.Atoi(p.Forum.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := sys.client.CreatePost(context.Background(), types.CreatePost{
|
|
Name: p.Subject,
|
|
CommunityID: communityID,
|
|
Body: types.NewOptional(p.Body),
|
|
NSFW: types.NewOptional(false),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
p.ID = strconv.Itoa(resp.PostView.Post.ID)
|
|
return nil
|
|
}
|
|
|
|
func (sys *System) CreateReply(r *reply.Reply) error {
|
|
id, err := strconv.Atoi(r.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
inReplyTo, err := strconv.Atoi(r.InReplyTo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := sys.client.CreateComment(context.Background(), types.CreateComment{
|
|
PostID: inReplyTo,
|
|
ParentID: types.NewOptional(id),
|
|
Content: r.Body,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.ID = strconv.Itoa(resp.CommentView.Comment.ID)
|
|
return nil
|
|
}
|