mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-04 14:23:15 +00:00
784 lines
20 KiB
Go
784 lines
20 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
_ "embed"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"math/rand"
|
|
"mime/multipart"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"regexp"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/rystaf/go-lemmy"
|
|
)
|
|
|
|
type Comment struct {
|
|
P lemmy.CommentView
|
|
C []Comment
|
|
Selected bool
|
|
State *State
|
|
Op string
|
|
ChildCount int
|
|
}
|
|
|
|
func (c *Comment) Submitter() bool {
|
|
return c.P.Comment.CreatorID == c.P.Post.CreatorID
|
|
}
|
|
|
|
func (c *Comment) ParentID() int64 {
|
|
path := strings.Split(c.P.Comment.Path, ".")
|
|
id, _ := strconv.ParseInt(path[len(path)-2], 10, 64)
|
|
return id
|
|
}
|
|
|
|
type Person struct {
|
|
lemmy.PersonView
|
|
}
|
|
|
|
type Activity struct {
|
|
Timestamp lemmy.LemmyTime
|
|
Comment *Comment
|
|
Post *Post
|
|
Message *lemmy.PrivateMessageView
|
|
}
|
|
|
|
type Post struct {
|
|
lemmy.PostView
|
|
Rank int
|
|
State *State
|
|
CrossPosts int
|
|
}
|
|
|
|
type Session struct {
|
|
UserName string
|
|
UserID int
|
|
Communities []lemmy.CommunityView
|
|
}
|
|
|
|
type State struct {
|
|
Watch bool
|
|
Version string
|
|
Client *lemmy.Client
|
|
HTTPClient *http.Client
|
|
Session *Session
|
|
Status int
|
|
Error error
|
|
Alert string
|
|
Host string
|
|
CommunityName string
|
|
Community *lemmy.GetCommunityResponse
|
|
TopCommunities []lemmy.CommunityView
|
|
Communities []lemmy.CommunityView
|
|
UnreadCount int64
|
|
Sort string
|
|
CommentSort string
|
|
Listing string
|
|
Page int
|
|
Parts []string
|
|
Posts []Post
|
|
Comments []Comment
|
|
Activities []Activity
|
|
CommentCount int
|
|
PostID int64
|
|
CommentID int64
|
|
Context int
|
|
UserName string
|
|
User *lemmy.GetPersonDetailsResponse
|
|
Now int64
|
|
XHR bool
|
|
Op string
|
|
Site *lemmy.GetSiteResponse
|
|
Tagline string
|
|
Query string
|
|
Content string
|
|
SearchType string
|
|
Captcha *lemmy.CaptchaResponse
|
|
Dark *bool
|
|
ShowNSFW bool
|
|
HideInstanceNames bool
|
|
HideThumbnails bool
|
|
LinksInNewWindow bool
|
|
SubmitURL string
|
|
SubmitTitle string
|
|
SubmitBody string
|
|
}
|
|
|
|
func (s State) UserBlocked() bool {
|
|
if s.User == nil || s.Site == nil || !s.Site.MyUser.IsValid() {
|
|
return false
|
|
}
|
|
for _, p := range s.Site.MyUser.ValueOrZero().PersonBlocks {
|
|
if p.Target.ID == s.User.PersonView.Person.ID {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s State) Unknown() string {
|
|
fmt.Println(fmt.Sprintf("%v", s.Error))
|
|
re := regexp.MustCompile(`(.*?)@(.*?)@`)
|
|
if strings.Contains(fmt.Sprintf("%v", s.Error), "couldnt_find_community") {
|
|
matches := re.FindAllStringSubmatch(s.CommunityName+"@", -1)
|
|
if len(matches) < 1 || len(matches[0]) < 3 {
|
|
return ""
|
|
}
|
|
if matches[0][2] != s.Host {
|
|
remote := "/" + matches[0][2] + "/c/" + matches[0][1]
|
|
if os.Getenv("LEMMY_DOMAIN") != "" {
|
|
remote = "https:/" + remote
|
|
}
|
|
return remote
|
|
}
|
|
}
|
|
if strings.Contains(fmt.Sprintf("%v", s.Error), "couldnt_find_that_username_or_email") {
|
|
matches := re.FindAllStringSubmatch(s.UserName+"@", -1)
|
|
if len(matches) < 1 || len(matches[0]) < 3 {
|
|
return ""
|
|
}
|
|
if matches[0][2] != s.Host {
|
|
remote := "/" + matches[0][2] + "/u/" + matches[0][1]
|
|
if os.Getenv("LEMMY_DOMAIN") != "" {
|
|
remote = "https:/" + remote
|
|
}
|
|
return remote
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
func (p State) SortBy(v string) string {
|
|
var q string
|
|
if p.Query != "" || p.SearchType == "Communities" {
|
|
q = "q=" + url.QueryEscape(p.Query) + "&communityname=" + p.CommunityName + "&username=" + p.UserName + "&searchtype=" + p.SearchType + "&"
|
|
}
|
|
return "?" + q + "sort=" + v + "&listingType=" + p.Listing
|
|
}
|
|
func (p State) ListBy(v string) string {
|
|
var q string
|
|
if p.Query != "" || p.SearchType == "Communities" {
|
|
q = "q=" + url.QueryEscape(p.Query) + "&communityname=" + p.CommunityName + "&username=" + p.UserName + "&searchtype=" + p.SearchType + "&"
|
|
}
|
|
return "?" + q + "sort=" + p.Sort + "&listingType=" + v
|
|
}
|
|
|
|
func (p State) PrevPage() string {
|
|
listing := "&listingType=" + p.Listing
|
|
var q string
|
|
if p.Query != "" || p.SearchType == "Communities" {
|
|
q = "q=" + p.Query + "&communityname=" + p.CommunityName + "&username=" + p.UserName + "&searchtype=" + p.SearchType + "&"
|
|
}
|
|
page := strconv.Itoa(p.Page - 1)
|
|
return "?" + q + "sort=" + p.Sort + listing + "&page=" + page
|
|
}
|
|
func (p State) NextPage() string {
|
|
listing := "&listingType=" + p.Listing
|
|
var q string
|
|
if p.Query != "" || p.SearchType == "Communities" {
|
|
q = "q=" + p.Query + "&communityname=" + p.CommunityName + "&username=" + p.UserName + "&searchtype=" + p.SearchType + "&"
|
|
}
|
|
page := strconv.Itoa(p.Page + 1)
|
|
return "?" + q + "sort=" + p.Sort + listing + "&page=" + page
|
|
}
|
|
func (p State) Rank(v int) int {
|
|
return ((p.Page - 1) * 25) + v + 1
|
|
}
|
|
|
|
func (u *Person) FullUserName() string {
|
|
if u.Person.Local {
|
|
return u.Person.Name
|
|
}
|
|
l, err := url.Parse(u.Person.ActorID)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return u.Person.Name
|
|
}
|
|
return u.Person.Name + "@" + l.Host
|
|
}
|
|
|
|
func (state *State) ParseQuery(RawQuery string) {
|
|
if RawQuery == "" {
|
|
return
|
|
}
|
|
m, _ := url.ParseQuery(RawQuery)
|
|
if len(m["listingType"]) > 0 {
|
|
state.Listing = m["listingType"][0]
|
|
}
|
|
if len(m["sort"]) > 0 {
|
|
state.Sort = m["sort"][0]
|
|
state.CommentSort = m["sort"][0]
|
|
}
|
|
if len(m["communityname"]) > 0 {
|
|
state.CommunityName = m["communityname"][0]
|
|
}
|
|
if len(m["username"]) > 0 {
|
|
state.UserName = m["username"][0]
|
|
}
|
|
if len(m["q"]) > 0 {
|
|
state.Query = m["q"][0]
|
|
}
|
|
if len(m["xhr"]) > 0 {
|
|
state.XHR = true
|
|
}
|
|
if len(m["view"]) > 0 {
|
|
if m["view"][0] == "Saved" {
|
|
state.Op = "Saved"
|
|
}
|
|
}
|
|
//if len(m["op"]) > 0 {
|
|
// state.Op = m["op"][0]
|
|
//}
|
|
if len(m["page"]) > 0 {
|
|
i, _ := strconv.Atoi(m["page"][0])
|
|
state.Page = i
|
|
}
|
|
}
|
|
|
|
func (state *State) LemmyError(domain string) error {
|
|
var nodeInfo NodeInfo
|
|
res, err := state.HTTPClient.Get("https://" + domain + "/nodeinfo/2.0.json")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if res.StatusCode != http.StatusOK {
|
|
return fmt.Errorf("Status Code: %v", res.StatusCode)
|
|
}
|
|
err = json.NewDecoder(res.Body).Decode(&nodeInfo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if nodeInfo.Software.Name == "lemmy" {
|
|
return nil
|
|
}
|
|
return errors.New("Not a lemmy instance")
|
|
}
|
|
|
|
func (state *State) GetCaptcha() {
|
|
resp, err := state.Client.Captcha(context.Background())
|
|
if err != nil {
|
|
fmt.Printf("Get %v %v", err, resp)
|
|
} else {
|
|
captcha, _ := resp.Ok.Value()
|
|
if resp.Ok.IsValid() {
|
|
state.Captcha = &captcha
|
|
}
|
|
}
|
|
}
|
|
func (state *State) GetSite() {
|
|
resp, err := state.Client.Site(context.Background())
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
state.Host = "."
|
|
state.Error = errors.New("unable to retrieve site")
|
|
return
|
|
}
|
|
state.Site = resp
|
|
if len(state.Site.Taglines) > 0 {
|
|
state.Tagline = state.Site.Taglines[rand.Intn(len(state.Site.Taglines))].Content
|
|
}
|
|
if !state.Site.MyUser.IsValid() {
|
|
return
|
|
}
|
|
for _, c := range state.Site.MyUser.ValueOrZero().Follows {
|
|
state.Session.Communities = append(state.Session.Communities, lemmy.CommunityView{
|
|
Community: c.Community,
|
|
Subscribed: "Subscribed",
|
|
})
|
|
}
|
|
sort.Slice(state.Session.Communities, func(a, b int) bool {
|
|
return state.Session.Communities[a].Community.Name < state.Session.Communities[b].Community.Name
|
|
})
|
|
}
|
|
|
|
func (state *State) GetSingleComment(commentid int64) {
|
|
state.CommentID = commentid
|
|
cresp, err := state.Client.Comment(context.Background(), lemmy.GetComment{
|
|
ID: commentid,
|
|
})
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
}
|
|
state.Comments = []Comment{Comment{
|
|
P: cresp.CommentView,
|
|
State: state,
|
|
Op: state.Op,
|
|
}}
|
|
}
|
|
|
|
func (state *State) GetComment(commentid int64) {
|
|
if state.Sort != "Hot" && state.Sort != "Top" && state.Sort != "Old" && state.Sort != "New" {
|
|
state.Sort = "Hot"
|
|
}
|
|
state.CommentID = commentid
|
|
cresp, err := state.Client.Comments(context.Background(), lemmy.GetComments{
|
|
ParentID: lemmy.NewOptional(state.CommentID),
|
|
Sort: lemmy.NewOptional(lemmy.CommentSortType(state.CommentSort)),
|
|
Type: lemmy.NewOptional(lemmy.ListingType("All")),
|
|
Limit: lemmy.NewOptional(int64(50)),
|
|
})
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
}
|
|
state.CommentCount = len(cresp.Comments)
|
|
for _, c := range cresp.Comments {
|
|
if c.Comment.ID == state.CommentID {
|
|
state.PostID = c.Comment.PostID
|
|
//if state.Session != nil && state.Session.UserID
|
|
comment := Comment{
|
|
P: c,
|
|
Selected: !state.XHR,
|
|
State: state,
|
|
Op: state.Op,
|
|
}
|
|
getChildren(&comment, cresp.Comments, c.Post.CreatorID)
|
|
state.Comments = append(state.Comments, comment)
|
|
}
|
|
}
|
|
if len(state.Comments) == 0 {
|
|
return
|
|
}
|
|
ctx, err := state.GetContext(state.Context, state.Comments[0])
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
} else {
|
|
state.Comments = []Comment{ctx}
|
|
}
|
|
}
|
|
func (state *State) GetContext(depth int, comment Comment) (ctx Comment, err error) {
|
|
if depth < 1 || comment.ParentID() == 0 {
|
|
return comment, nil
|
|
}
|
|
cresp, err := state.Client.Comment(context.Background(), lemmy.GetComment{
|
|
ID: comment.ParentID(),
|
|
})
|
|
if err != nil {
|
|
return
|
|
}
|
|
ctx, err = state.GetContext(depth-1, Comment{
|
|
P: cresp.CommentView,
|
|
State: state,
|
|
C: []Comment{comment},
|
|
ChildCount: comment.ChildCount + 1,
|
|
})
|
|
return
|
|
}
|
|
func (state *State) GetComments() {
|
|
if state.Sort != "Hot" && state.Sort != "Top" && state.Sort != "Old" && state.Sort != "New" {
|
|
state.Sort = "Hot"
|
|
}
|
|
cresp, err := state.Client.Comments(context.Background(), lemmy.GetComments{
|
|
PostID: lemmy.NewOptional(state.PostID),
|
|
Sort: lemmy.NewOptional(lemmy.CommentSortType(state.CommentSort)),
|
|
Type: lemmy.NewOptional(lemmy.ListingType("All")),
|
|
Limit: lemmy.NewOptional(int64(50)),
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
})
|
|
if err != nil {
|
|
state.Status = http.StatusInternalServerError
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
state.CommentCount = len(cresp.Comments)
|
|
for _, c := range cresp.Comments {
|
|
levels := strings.Split(c.Comment.Path, ".")
|
|
if len(levels) != 2 {
|
|
continue
|
|
}
|
|
comment := Comment{P: c, State: state}
|
|
var postCreatorID int64
|
|
if len(state.Posts) > 0 {
|
|
postCreatorID = state.Posts[0].Post.CreatorID
|
|
}
|
|
getChildren(&comment, cresp.Comments, postCreatorID)
|
|
state.Comments = append(state.Comments, comment)
|
|
}
|
|
}
|
|
|
|
func (state *State) GetMessages() {
|
|
if resp, err := state.Client.PrivateMessages(context.Background(), lemmy.GetPrivateMessages{
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
}); err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
} else {
|
|
for _, m := range resp.PrivateMessages {
|
|
message := m
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: m.PrivateMessage.Published,
|
|
Message: &message,
|
|
})
|
|
}
|
|
}
|
|
if resp, err := state.Client.PersonMentions(context.Background(), lemmy.GetPersonMentions{
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
}); err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
} else {
|
|
for _, m := range resp.Mentions {
|
|
var unread string
|
|
if !m.PersonMention.Read {
|
|
unread = "unread"
|
|
}
|
|
comment := Comment{
|
|
P: lemmy.CommentView{
|
|
Comment: m.Comment,
|
|
},
|
|
Op: unread,
|
|
State: state,
|
|
}
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: m.Comment.Published,
|
|
Comment: &comment,
|
|
})
|
|
}
|
|
}
|
|
if resp, err := state.Client.Replies(context.Background(), lemmy.GetReplies{
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
}); err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
} else {
|
|
for _, m := range resp.Replies {
|
|
var unread string
|
|
if !m.CommentReply.Read {
|
|
unread = "unread"
|
|
}
|
|
comment := Comment{
|
|
P: lemmy.CommentView{
|
|
Comment: m.Comment,
|
|
Post: m.Post,
|
|
Creator: m.Creator,
|
|
Community: m.Community,
|
|
Counts: m.Counts,
|
|
MyVote: m.MyVote,
|
|
},
|
|
Op: unread,
|
|
State: state,
|
|
}
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: m.Comment.Published,
|
|
Comment: &comment,
|
|
})
|
|
}
|
|
}
|
|
sort.Slice(state.Activities, func(i, j int) bool {
|
|
return state.Activities[i].Timestamp.After(state.Activities[j].Timestamp.Time)
|
|
})
|
|
}
|
|
|
|
func (state *State) GetUser(username string) {
|
|
state.UserName = username
|
|
limit := 12
|
|
if state.Op == "send_message" {
|
|
limit = 1
|
|
}
|
|
resp, err := state.Client.PersonDetails(context.Background(), lemmy.GetPersonDetails{
|
|
Username: lemmy.NewOptional(state.UserName),
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
Limit: lemmy.NewOptional(int64(limit)),
|
|
SavedOnly: lemmy.NewOptional(state.Op == "Saved"),
|
|
Sort: lemmy.NewOptional(lemmy.SortType(state.Sort)),
|
|
})
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
state.Error = err
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
}
|
|
state.User = resp
|
|
if state.Query != "" {
|
|
return
|
|
}
|
|
for _, c := range resp.Comments {
|
|
comment := Comment{P: c, State: state}
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: c.Comment.Published,
|
|
Comment: &comment,
|
|
})
|
|
}
|
|
for i, p := range resp.Posts {
|
|
post := Post{
|
|
PostView: resp.Posts[i],
|
|
Rank: -1,
|
|
State: state,
|
|
}
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: p.Post.Published,
|
|
Post: &post,
|
|
})
|
|
}
|
|
sort.Slice(state.Activities, func(i, j int) bool {
|
|
switch state.Sort {
|
|
case "New":
|
|
return state.Activities[i].Timestamp.After(state.Activities[j].Timestamp.Time)
|
|
case "Old":
|
|
return state.Activities[i].Timestamp.Before(state.Activities[j].Timestamp.Time)
|
|
}
|
|
// TODO Top and Controversial
|
|
return false
|
|
})
|
|
}
|
|
|
|
func (state *State) GetUnreadCount() {
|
|
resp, err := state.Client.UnreadCount(context.Background())
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
state.UnreadCount = resp.PrivateMessages + resp.Mentions + resp.Replies
|
|
}
|
|
func (state *State) GetCommunities() {
|
|
resp, err := state.Client.Communities(context.Background(), lemmy.ListCommunities{
|
|
Sort: lemmy.NewOptional(lemmy.SortType("TopAll")),
|
|
Limit: lemmy.NewOptional(int64(20)),
|
|
})
|
|
if err != nil {
|
|
return
|
|
}
|
|
state.TopCommunities = resp.Communities
|
|
}
|
|
func (state *State) MarkAllAsRead() {
|
|
_, err := state.Client.MarkAllAsRead(context.Background())
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (state *State) GetPosts() {
|
|
posts := lemmy.GetPosts{
|
|
Sort: lemmy.NewOptional(lemmy.SortType(state.Sort)),
|
|
Type: lemmy.NewOptional(lemmy.ListingType(state.Listing)),
|
|
Limit: lemmy.NewOptional(int64(25)),
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
}
|
|
if state.CommunityName != "" {
|
|
posts.CommunityName = lemmy.NewOptional(state.CommunityName)
|
|
}
|
|
resp, err := state.Client.Posts(context.Background(), posts)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
} else {
|
|
for i, p := range resp.Posts {
|
|
state.Posts = append(state.Posts, Post{
|
|
PostView: p,
|
|
Rank: (state.Page-1)*25 + i + 1,
|
|
State: state,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func (state *State) Search(searchtype string) {
|
|
if state.Query == "" && searchtype == "Communities" {
|
|
if state.Listing == "Subscribed" {
|
|
if state.Page > 1 {
|
|
return
|
|
}
|
|
if state.Site == nil {
|
|
state.GetSite()
|
|
}
|
|
state.Communities = state.Session.Communities
|
|
return
|
|
}
|
|
resp, err := state.Client.Communities(context.Background(), lemmy.ListCommunities{
|
|
Type: lemmy.NewOptional(lemmy.ListingType(state.Listing)),
|
|
Sort: lemmy.NewOptional(lemmy.SortType(state.Sort)),
|
|
Limit: lemmy.NewOptional(int64(25)),
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
})
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
state.Communities = resp.Communities
|
|
return
|
|
}
|
|
search := lemmy.Search{
|
|
Q: state.Query,
|
|
Sort: lemmy.NewOptional(lemmy.SortType(state.Sort)),
|
|
ListingType: lemmy.NewOptional(lemmy.ListingType(state.Listing)),
|
|
Type: lemmy.NewOptional(lemmy.SearchType(searchtype)),
|
|
Limit: lemmy.NewOptional(int64(25)),
|
|
Page: lemmy.NewOptional(int64(state.Page)),
|
|
}
|
|
|
|
if state.CommunityName != "" {
|
|
search.CommunityName = lemmy.NewOptional(state.CommunityName)
|
|
}
|
|
|
|
if state.User != nil {
|
|
search.CreatorID = lemmy.NewOptional(state.User.PersonView.Person.ID)
|
|
}
|
|
|
|
resp, err := state.Client.Search(context.Background(), search)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
state.Status = http.StatusInternalServerError
|
|
return
|
|
} else {
|
|
for i, p := range resp.Posts {
|
|
post := Post{
|
|
PostView: p,
|
|
Rank: (state.Page-1)*25 + i + 1,
|
|
State: state,
|
|
}
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: p.Post.Published,
|
|
Post: &post,
|
|
})
|
|
}
|
|
for _, c := range resp.Comments {
|
|
comment := Comment{
|
|
P: c,
|
|
State: state,
|
|
}
|
|
state.Activities = append(state.Activities, Activity{
|
|
Timestamp: c.Comment.Published,
|
|
Comment: &comment,
|
|
})
|
|
}
|
|
sort.Slice(state.Activities, func(i, j int) bool {
|
|
return state.Activities[i].Timestamp.After(state.Activities[j].Timestamp.Time)
|
|
})
|
|
state.Communities = resp.Communities
|
|
}
|
|
}
|
|
|
|
func (state *State) GetPost(postid int64) {
|
|
if postid == 0 {
|
|
return
|
|
}
|
|
state.PostID = postid
|
|
// get post
|
|
resp, err := state.Client.Post(context.Background(), lemmy.GetPost{
|
|
ID: lemmy.NewOptional(state.PostID),
|
|
})
|
|
if err != nil {
|
|
state.Status = http.StatusInternalServerError
|
|
state.Error = err
|
|
return
|
|
}
|
|
post := Post{
|
|
PostView: resp.PostView,
|
|
State: state,
|
|
CrossPosts: len(resp.CrossPosts),
|
|
}
|
|
if state.Listing == "Local" && post.Post.Local {
|
|
for _, p := range resp.CrossPosts {
|
|
if !p.Post.Local {
|
|
post.CrossPosts--
|
|
}
|
|
}
|
|
}
|
|
state.Posts = []Post{post}
|
|
if state.CommentID > 0 && len(state.Posts) > 0 {
|
|
state.Posts[0].Rank = -1
|
|
}
|
|
state.CommunityName = resp.PostView.Community.Name
|
|
cresp := lemmy.GetCommunityResponse{
|
|
CommunityView: resp.CommunityView,
|
|
Moderators: resp.Moderators,
|
|
}
|
|
state.Community = &cresp
|
|
}
|
|
|
|
func (state *State) GetCommunity(communityName string) {
|
|
if communityName != "" {
|
|
state.CommunityName = communityName
|
|
}
|
|
if state.CommunityName == "" {
|
|
return
|
|
}
|
|
resp, err := state.Client.Community(context.Background(), lemmy.GetCommunity{
|
|
Name: lemmy.NewOptional(state.CommunityName),
|
|
})
|
|
if err != nil {
|
|
state.Error = err
|
|
} else {
|
|
state.Community = resp
|
|
}
|
|
}
|
|
|
|
func (state *State) UploadImage(file multipart.File, header *multipart.FileHeader) (*PictrsResponse, error) {
|
|
defer file.Close()
|
|
body := new(bytes.Buffer)
|
|
writer := multipart.NewWriter(body)
|
|
part, err := writer.CreateFormFile("images[]", header.Filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
io.Copy(part, file)
|
|
writer.Close()
|
|
host := state.Host
|
|
if host == "." {
|
|
host = os.Getenv("LEMMY_DOMAIN")
|
|
}
|
|
req, err := http.NewRequest("POST", "https://"+host+"/pictrs/image", body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
req.Header.Set("Content-Type", writer.FormDataContentType())
|
|
req.Header.Set("Cookie", "jwt="+state.Client.Token)
|
|
res, err := state.HTTPClient.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer res.Body.Close()
|
|
var pres PictrsResponse
|
|
if err := json.NewDecoder(res.Body).Decode(&pres); err != nil {
|
|
return nil, err
|
|
}
|
|
if pres.Message != "ok" {
|
|
return &pres, errors.New(pres.Message)
|
|
}
|
|
return &pres, nil
|
|
}
|
|
|
|
func getChildren(parent *Comment, pool []lemmy.CommentView, postCreatorID int64) {
|
|
var children []Comment
|
|
var total int64
|
|
for _, c := range pool {
|
|
levels := strings.Split(c.Comment.Path, ".")
|
|
for i, l := range levels {
|
|
id, _ := strconv.ParseInt(l, 10, 64)
|
|
if id == parent.P.Comment.ID {
|
|
if i == (len(levels) - 2) {
|
|
children = append(children, Comment{
|
|
P: c,
|
|
C: children,
|
|
State: parent.State,
|
|
})
|
|
total += c.Counts.ChildCount
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
for i, _ := range children {
|
|
getChildren(&children[i], pool, postCreatorID)
|
|
parent.ChildCount += 1
|
|
}
|
|
parent.C = children
|
|
parent.P.Counts.ChildCount -= total
|
|
}
|