change some models, make get ready to build some UI, etc
This commit is contained in:
parent
1b0912c675
commit
2c35e9c304
4 changed files with 39 additions and 33 deletions
|
@ -108,15 +108,9 @@ func (self *MastoAdapter) mastoUpdateToMessage(status madon.Status) *Message {
|
|||
Protocol: "mastodon",
|
||||
Content: status.Content,
|
||||
Uri: status.URI,
|
||||
Author: Author{
|
||||
Id: fmt.Sprintf("%d", status.Account.ID),
|
||||
Name: status.Account.Username,
|
||||
// TODO: we can add the fields to the profiledata as well
|
||||
ProfileData: status.Account.Note,
|
||||
ProfileUri: status.Account.URL,
|
||||
ProfilePic: status.Account.Avatar,
|
||||
},
|
||||
Author: status.Account.Acct,
|
||||
Created: status.CreatedAt,
|
||||
Visibility: status.Visibility,
|
||||
}
|
||||
if parent != nil {
|
||||
msg.ReplyTo = &parent.URI
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"fmt"
|
||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
"github.com/yitsushi/go-misskey"
|
||||
mkcore "github.com/yitsushi/go-misskey/core"
|
||||
mkm "github.com/yitsushi/go-misskey/models"
|
||||
n "github.com/yitsushi/go-misskey/services/notes"
|
||||
tl "github.com/yitsushi/go-misskey/services/notes/timeline"
|
||||
|
@ -176,16 +177,26 @@ func (self *MisskeyAdapter) cacheAndConvert(n mkm.Note) *Message {
|
|||
self.cache[n.ID] = n.CreatedAt
|
||||
msg := Message{
|
||||
Uri: n.URI,
|
||||
Author: Author{
|
||||
Id: n.User.ID,
|
||||
Name: n.User.Name,
|
||||
// ProfileUri: *n.User.URL,
|
||||
ProfilePic: n.User.AvatarURL,
|
||||
},
|
||||
Author: fmt.Sprintf("%s@%s", n.User.Username, mkcore.StringValue(n.User.Host)),
|
||||
Protocol: "misskey",
|
||||
Adapter: self.nickname,
|
||||
Created: n.CreatedAt,
|
||||
Content: n.Text,
|
||||
Attachments: []Attachment{},
|
||||
Visibility: n.Visibility,
|
||||
ReplyTo: n.ReplyID,
|
||||
ReplyCount: int(n.RepliesCount),
|
||||
Replies: []string{},
|
||||
}
|
||||
|
||||
for _, f := range n.Files {
|
||||
msg.Attachments = append(msg.Attachments, Attachment{
|
||||
Src: f.URL,
|
||||
ThumbSrc: f.ThumbnailURL,
|
||||
Size: f.Size,
|
||||
Desc: f.Comment,
|
||||
CreatedAt: f.CreatedAt,
|
||||
})
|
||||
}
|
||||
return &msg
|
||||
}
|
||||
|
|
|
@ -98,9 +98,7 @@ func (self *NostrAdapter) nostrEventToMsg(evt *nostr.Event) (Message, error) {
|
|||
switch evt.Kind {
|
||||
case nostr.KindTextNote:
|
||||
m.Uri = evt.ID
|
||||
m.Author = Author{
|
||||
Id: evt.PubKey,
|
||||
}
|
||||
m.Author = evt.PubKey
|
||||
m.Created = evt.CreatedAt.Time()
|
||||
m.Content = evt.Content
|
||||
return m, nil
|
||||
|
|
|
@ -7,15 +7,17 @@ import (
|
|||
|
||||
type Message struct {
|
||||
Uri string
|
||||
Author Author
|
||||
Author string
|
||||
Protocol string
|
||||
Adapter string
|
||||
Content string
|
||||
Attachments []Attachment
|
||||
ReplyTo *string
|
||||
Replies []*string
|
||||
Mentions []Author
|
||||
Replies []string
|
||||
ReplyCount int
|
||||
Mentions []string
|
||||
Created time.Time
|
||||
Visibility string
|
||||
Aux map[string]string
|
||||
}
|
||||
|
||||
|
@ -23,15 +25,16 @@ type Author struct {
|
|||
Id string
|
||||
Name string
|
||||
ProfileData interface{}
|
||||
Messages []Message
|
||||
ProfileUri string
|
||||
ProfilePic string
|
||||
}
|
||||
|
||||
type Attachment struct {
|
||||
Src string
|
||||
Data []uint8
|
||||
ThumbSrc string
|
||||
Desc string
|
||||
CreatedAt time.Time
|
||||
Size uint64
|
||||
}
|
||||
|
||||
type SocketData interface {
|
||||
|
|
Loading…
Reference in a new issue