all repos — underbbs @ 2c35e9c30457247628b13057dd8d8be6e9b6d9a1

decentralized social media client

models/msg.go (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package models

import (
	"encoding/json"
	"time"
)

type Message struct {
	Uri         string
	Author      string
	Protocol    string
	Adapter     string
	Content     string
	Attachments []Attachment
	ReplyTo     *string
	Replies     []string
	ReplyCount  int
	Mentions    []string
	Created     time.Time
	Visibility  string
	Aux         map[string]string
}

type Author struct {
	Id          string
	Name        string
	ProfileData interface{}
	ProfileUri  string
	ProfilePic  string
}

type Attachment struct {
	Src       string
	ThumbSrc  string
	Desc      string
	CreatedAt time.Time
	Size      uint64
}

type SocketData interface {
	ToDatagram() []byte
}

func (self Message) ToDatagram() []byte {
	data, err := json.Marshal(self)
	if err != nil {
		panic(err.Error())
	}
	return data
}