signal

package
v0.18.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 19, 2025 License: BSD-3-Clause, ISC Imports: 22 Imported by: 0

Documentation

Index

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

func DesktopDir(betaApp bool) (string, error)

Types

type Attachment

type Attachment struct {
	FileName    string
	ContentType string
	TimeSent    int64
	TimeRecv    int64
	Pending     bool
	// contains filtered or unexported fields
}

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 Contact

type Contact struct {
	ACI               string // Account Identity
	Name              string
	ProfileName       string
	ProfileFamilyName string
	ProfileJoinedName string
	Phone             string
	Username          string
}

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 (c *Context) CheckDatabase() ([]string, error)

func (*Context) Close

func (c *Context) Close()

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 (c *Context) DatabaseKey() ([]byte, error)

func (*Context) EncryptionKey added in v0.17.0

func (c *Context) EncryptionKey() ([]byte, error)

func (*Context) QueryDatabase added in v0.3.0

func (c *Context) QueryDatabase(sql string) ([][]string, error)

func (*Context) ReadAvatar added in v0.13.0

func (c *Context) ReadAvatar(avt *Avatar) ([]byte, error)

func (*Context) WriteAttachment added in v0.13.0

func (c *Context) WriteAttachment(att *Attachment, w io.Writer) error

func (*Context) WriteDatabase

func (c *Context) WriteDatabase(path string) error

type Conversation

type Conversation struct {
	ID        string
	Recipient *Recipient
}

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 Group

type Group struct {
	ID   string
	Name string
}

type Interval

type Interval struct {
	Min time.Time
	Max time.Time
}

type Mention

type Mention struct {
	Start     int
	Length    int
	Recipient *Recipient
}

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

func (m *Message) IsOutgoing() bool

type MessageBody

type MessageBody struct {
	Text     string
	Mentions []Mention
}

type Quote

type Quote struct {
	ID          int64
	Recipient   *Recipient
	Body        MessageBody
	Attachments []QuoteAttachment
}

type QuoteAttachment

type QuoteAttachment struct {
	FileName    string
	ContentType string
}

type Reaction

type Reaction struct {
	Recipient *Recipient
	TimeSent  int64
	TimeRecv  int64
	Emoji     string
}

type Recipient

type Recipient struct {
	Type    RecipientType
	Contact Contact
	Group   Group
	Avatar  Avatar
}

func (*Recipient) DetailedDisplayName added in v0.8.0

func (r *Recipient) DetailedDisplayName() string

func (*Recipient) DisplayName

func (r *Recipient) DisplayName() string

type RecipientType

type RecipientType int
const (
	RecipientTypeContact RecipientType = iota
	RecipientTypeGroup
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL