Documentation
¶
Index ¶
- Constants
- func DesktopDir(betaApp bool) (string, error)
- type Attachment
- type Avatar
- type Contact
- type Context
- func (c *Context) CheckDatabase() ([]string, error)
- func (c *Context) Close()
- func (c *Context) ConversationAttachments(conv *Conversation, ival Interval) ([]Attachment, error)
- func (c *Context) ConversationMessages(conv *Conversation, ival Interval) ([]Message, error)
- func (c *Context) Conversations() ([]Conversation, error)
- func (c *Context) DatabaseKey() ([]byte, error)
- func (c *Context) EncryptionKey() ([]byte, error)
- func (c *Context) QueryDatabase(sql string) ([][]string, error)
- func (c *Context) ReadAvatar(avt *Avatar) ([]byte, error)
- func (c *Context) WriteAttachment(att *Attachment, w io.Writer) error
- func (c *Context) WriteDatabase(path string) error
- type Conversation
- type Edit
- type ErrMention
- type Group
- type Interval
- type Mention
- type Message
- type MessageBody
- type Quote
- type QuoteAttachment
- type Reaction
- type Recipient
- type RecipientType
Constants ¶
View Source
const ( DatabaseFile = "sql" + string(os.PathSeparator) + "db.sqlite" ConfigFile = "config.json" AttachmentDir = "attachments.noindex" AppName = "Signal" AppNameBeta = "Signal Beta" // Content type of the long-text attachment of a long message LongTextType = "text/x-signal-plain" // Avatar for the Signal release chat SignalAvatarPath = "images/profile-avatar.svg" )
Variables ¶
This section is empty.
Functions ¶
func DesktopDir ¶
Types ¶
type Attachment ¶
type Avatar ¶ added in v0.13.0
type Avatar struct {
// contains filtered or unexported fields
}
Based on ContactAvatarType in ts/types/Avatar.ts in the Signal-Desktop repository
type Context ¶
type Context struct {
// contains filtered or unexported fields
}
func Open ¶
func Open(betaApp bool, dir string, encKey *safestorage.RawEncryptionKey) (*Context, error)
func (*Context) CheckDatabase ¶
func (*Context) ConversationAttachments ¶
func (c *Context) ConversationAttachments(conv *Conversation, ival Interval) ([]Attachment, error)
func (*Context) ConversationMessages ¶
func (c *Context) ConversationMessages(conv *Conversation, ival Interval) ([]Message, error)
func (*Context) Conversations ¶
func (c *Context) Conversations() ([]Conversation, error)
func (*Context) DatabaseKey ¶ added in v0.17.0
func (*Context) EncryptionKey ¶ added in v0.17.0
func (*Context) QueryDatabase ¶ added in v0.3.0
func (*Context) ReadAvatar ¶ added in v0.13.0
func (*Context) WriteAttachment ¶ added in v0.13.0
func (c *Context) WriteAttachment(att *Attachment, w io.Writer) error
func (*Context) WriteDatabase ¶
type Conversation ¶
type Edit ¶ added in v0.7.0
type Edit struct { Body MessageBody Attachments []Attachment Quote *Quote TimeEdit int64 }
type ErrMention ¶ added in v0.3.0
type ErrMention struct { Msg string Index int Body *MessageBody }
func (*ErrMention) Error ¶ added in v0.3.0
func (e *ErrMention) Error() string
type Message ¶
type Message struct { Conversation *Recipient Source *Recipient TimeSent int64 TimeRecv int64 Type string Body MessageBody JSON string Attachments []Attachment Reactions []Reaction Quote *Quote Edits []Edit }
func (*Message) IsOutgoing ¶
type MessageBody ¶
type Quote ¶
type Quote struct { ID int64 Recipient *Recipient Body MessageBody Attachments []QuoteAttachment }
type QuoteAttachment ¶
type Recipient ¶
type Recipient struct { Type RecipientType Contact Contact Group Group Avatar Avatar }
func (*Recipient) DetailedDisplayName ¶ added in v0.8.0
func (*Recipient) DisplayName ¶
type RecipientType ¶
type RecipientType int
const ( RecipientTypeContact RecipientType = iota RecipientTypeGroup )
Click to show internal directories.
Click to hide internal directories.