telephant/accounts/events.go

60 lines
1.1 KiB
Go
Raw Normal View History

2017-08-29 05:09:17 +00:00
// Package accounts is chirp's account "plugin" system.
package accounts
import "time"
// Post represents a message.
type Post struct {
2019-05-01 15:15:56 +00:00
MessageID string
2017-08-29 05:09:17 +00:00
Body string
Author string
AuthorURL string
2017-08-29 05:09:17 +00:00
AuthorName string
AuthorID string
2017-08-29 05:09:17 +00:00
Actor string
ActorName string
2019-05-01 15:15:56 +00:00
ReplyToID string
2017-08-29 05:09:17 +00:00
ReplyToAuthor string
Avatar string
URL string
CreatedAt time.Time
}
// MessageEvent describes an incoming message event.
type MessageEvent struct {
Account string
Name string
Reply bool
Forward bool
Mention bool
Like bool
Notification bool
Post Post
Media []string
2017-08-29 05:09:17 +00:00
}
// ProfileEvent describes a profile event.
type ProfileEvent struct {
2019-05-02 08:37:29 +00:00
Username string
Name string
Avatar string
ProfileURL string
ProfileID string
Posts int64
Follows int64
Followers int64
2017-08-29 05:09:17 +00:00
}
// LoginEvent describes a login event.
type LoginEvent struct {
Username string
Name string
Avatar string
ProfileURL string
ProfileID string
Posts int64
Follows int64
Followers int64
PostSizeLimit int64
}