forked from tinode/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
192 lines (168 loc) · 4.88 KB
/
main.go
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package main
import (
"encoding/json"
"flag"
"io/ioutil"
"log"
"math/rand"
"os"
"path/filepath"
"time"
jcr "github.com/DisposaBoy/JsonConfigReader"
_ "github.com/tinode/chat/server/db/mysql"
_ "github.com/tinode/chat/server/db/rethinkdb"
"github.com/tinode/chat/server/store"
)
type configType struct {
StoreConfig json.RawMessage `json:"store_config"`
}
type vCardy struct {
Fn string `json:"fn"`
Photo string `json:"photo"`
Type string `json:"type"`
}
type tPrivate struct {
Comment string `json:"comment"`
}
type DefAccess struct {
Auth string `json:"auth"`
Anon string `json:"anon"`
}
/*
User object in data.json
"createdAt": "-140h",
"email": "alice@example.com",
"tel": "17025550001",
"passhash": "alice123",
"private": {"comment": "some comment 123"},
"public": {"fn": "Alice Johnson", "photo": "alice-64.jpg", "type": "jpg"},
"state": 1,
"authLevel": "auth",
"status": {
"text": "DND"
},
"username": "alice",
"tags": ["tag1"],
"addressBook": ["email:bob@example.com", "email:carol@example.com", "email:dave@example.com",
"email:eve@example.com","email:frank@example.com","email:george@example.com","email:tob@example.com",
"tel:17025550001", "tel:17025550002", "tel:17025550003", "tel:17025550004", "tel:17025550005",
"tel:17025550006", "tel:17025550007", "tel:17025550008", "tel:17025550009"]
}
*/
type User struct {
CreatedAt string `json:"createdAt"`
Email string `json:"email"`
Tel string `json:"tel"`
AuthLevel string `json:"authLevel"`
Username string `json:"username"`
Password string `json:"passhash"`
Private tPrivate `json:"private"`
Public vCardy `json:"public"`
State int `json:"state"`
Status interface{} `json:"status"`
AddressBook []string `json:"addressBook"`
Tags []string `json:"tags"`
}
/*
GroupTopic object in data.json
"createdAt": "-128h",
"name": "*ABC",
"owner": "carol",
"public": {"fn": "Let's talk about flowers", "photo": "abc-64.jpg", "type": "jpg"}
*/
type GroupTopic struct {
CreatedAt string `json:"createdAt"`
Name string `json:"name"`
Owner string `json:"owner"`
Public vCardy `json:"public"`
Access DefAccess `json:"access"`
Tags []string `json:"tags"`
OwnerPrivate tPrivate `json:"ownerPrivate"`
}
/*
GroupSub object in data.json
"createdAt": "-112h",
"private": "My super cool group topic",
"topic": "*ABC",
"user": "alice"
"want": "JRWPSA",
"have": "JRWP",
"tags": ["super cool", "super", "cool"],
*/
type GroupSub struct {
CreatedAt string `json:"createdAt"`
Private tPrivate `json:"private"`
Topic string `json:"topic"`
User string `json:"user"`
Want string `json:"want"`
Have string `json:"have"`
}
/*
P2PUser topic in data.json
"createdAt": "-117h",
"users": [
{"name": "eve", "private": {"comment":"ho ho"}, "want": "JRWP", "have": "N"},
{"name": "alice", "private": {"comment": "ha ha"}}
]
*/
type P2PUser struct {
Name string `json:"name"`
Private tPrivate `json:"private"`
Want string `json:"want"`
Have string `json:"have"`
}
// P2PSub is a p2p subscription in data.json
type P2PSub struct {
CreatedAt string `json:"createdAt"`
Users []P2PUser `json:"users"`
// Cached value 'user1:user2' as a surrogare topic name
pair string
}
// Data is a message in data.json.
type Data struct {
Users []User `json:"users"`
Grouptopics []GroupTopic `json:"grouptopics"`
Groupsubs []GroupSub `json:"groupsubs"`
P2psubs []P2PSub `json:"p2psubs"`
Messages []string `json:"messages"`
datapath string
}
// Generate random string as a name of the group topic
func genTopicName() string {
return "grp" + store.GetUidString()
}
// Generates password of length n
func getPassword(n int) string {
const letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-/.+?=&"
b := make([]byte, n)
for i := range b {
b[i] = letters[rand.Intn(len(letters))]
}
return string(b)
}
func main() {
var reset = flag.Bool("reset", false, "force database reset")
var datafile = flag.String("data", "", "name of file with sample data to load")
var conffile = flag.String("config", "./tinode.conf", "config of the database connection")
flag.Parse()
var data Data
if *datafile != "" {
raw, err := ioutil.ReadFile(*datafile)
if err != nil {
log.Fatal("Failed to parse data:", err)
}
err = json.Unmarshal(raw, &data)
if err != nil {
log.Fatal(err)
}
}
rand.Seed(time.Now().UnixNano())
data.datapath, _ = filepath.Split(*datafile)
var config configType
if file, err := os.Open(*conffile); err != nil {
log.Fatal("Failed to read config file:", err)
} else if err = json.NewDecoder(jcr.New(file)).Decode(&config); err != nil {
log.Fatal("Failed to parse config file:", err)
}
genDb(*reset, string(config.StoreConfig), &data)
}