mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-11-03 04:27:16 -05:00
339 lines
6.5 KiB
Go
339 lines
6.5 KiB
Go
package lemmy
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/mrusme/neonmodem/models/author"
|
|
"github.com/mrusme/neonmodem/models/forum"
|
|
"github.com/mrusme/neonmodem/models/post"
|
|
"github.com/mrusme/neonmodem/models/reply"
|
|
"github.com/mrusme/neonmodem/system/adapter"
|
|
"go.elara.ws/go-lemmy"
|
|
"go.elara.ws/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,
|
|
adapter.Capability{
|
|
ID: "connect:multiple",
|
|
Name: "Connect Multiple",
|
|
},
|
|
adapter.Capability{
|
|
ID: "list:forums",
|
|
Name: "List Forums",
|
|
},
|
|
adapter.Capability{
|
|
ID: "list:posts",
|
|
Name: "List Posts",
|
|
},
|
|
adapter.Capability{
|
|
ID: "create:post",
|
|
Name: "Create Post",
|
|
},
|
|
adapter.Capability{
|
|
ID: "list:replies",
|
|
Name: "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 httpClient *http.Client = nil
|
|
var httpTransport *http.Transport = http.DefaultTransport.(*http.Transport).
|
|
Clone()
|
|
var err error
|
|
|
|
u := sys.config["url"]
|
|
if u == nil {
|
|
return nil
|
|
}
|
|
|
|
proxy := sys.config["proxy"].(string)
|
|
if proxy != "" {
|
|
proxyURL, err := url.Parse(proxy)
|
|
if err != nil {
|
|
sys.logger.Error(err)
|
|
} else {
|
|
sys.logger.Debugf("setting up http proxy transport: %s\n",
|
|
proxyURL.String())
|
|
httpTransport = &http.Transport{
|
|
Proxy: http.ProxyURL(proxyURL),
|
|
}
|
|
}
|
|
}
|
|
|
|
httpClient = &http.Client{
|
|
Transport: httpTransport,
|
|
Timeout: time.Second * 10,
|
|
}
|
|
|
|
sys.client, err = lemmy.NewWithClient(
|
|
u.(string),
|
|
httpClient,
|
|
)
|
|
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.ClientLogin(context.Background(), types.Login{
|
|
UsernameOrEmail: credentials["username"],
|
|
Password: credentials["password"],
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sys *System) ListForums() ([]forum.Forum, error) {
|
|
resp, err := sys.client.Communities(context.Background(), types.ListCommunities{
|
|
Type: types.NewOptional(types.ListingTypeSubscribed),
|
|
})
|
|
if err != nil {
|
|
return []forum.Forum{}, err
|
|
}
|
|
|
|
var models []forum.Forum
|
|
for _, i := range resp.Communities {
|
|
models = append(models, forum.Forum{
|
|
ID: strconv.Itoa(i.Community.ID),
|
|
Name: i.Community.Name,
|
|
|
|
Info: i.Community.Description.ValueOr(i.Community.Title),
|
|
|
|
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.ListingTypeSubscribed),
|
|
Sort: types.NewOptional(types.SortTypeNew),
|
|
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 := i.Post.Published.Time
|
|
lastCommentedAt := i.Counts.NewestCommentTime.Time
|
|
|
|
models = append(models, post.Post{
|
|
ID: strconv.Itoa(i.Post.ID),
|
|
|
|
Subject: i.Post.Name,
|
|
Body: body,
|
|
|
|
Type: t,
|
|
|
|
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,
|
|
},
|
|
|
|
// TODO: Implement chunks loading
|
|
TotalReplies: 0,
|
|
CurrentRepliesStartIDX: -1,
|
|
|
|
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{
|
|
PostID: types.NewOptional[int](pid),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
p.Replies = []reply.Reply{}
|
|
for _, i := range resp.Comments {
|
|
createdAt := i.Comment.Published.Time
|
|
|
|
p.Replies = append(p.Replies, reply.Reply{
|
|
ID: strconv.Itoa(i.Comment.ID),
|
|
|
|
InReplyTo: p.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
|
|
}
|
|
|
|
var create types.CreateComment
|
|
if r.InReplyTo != "" {
|
|
// Reply to a reply of a post
|
|
InReplyTo, err := strconv.Atoi(r.InReplyTo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
create = types.CreateComment{
|
|
PostID: InReplyTo,
|
|
ParentID: types.NewOptional(ID),
|
|
Content: r.Body,
|
|
}
|
|
} else {
|
|
// Reply to a post
|
|
create = types.CreateComment{
|
|
PostID: ID,
|
|
Content: r.Body,
|
|
}
|
|
}
|
|
|
|
resp, err := sys.client.CreateComment(context.Background(), create)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.ID = strconv.Itoa(resp.CommentView.Comment.ID)
|
|
return nil
|
|
}
|