[101] | 1 | package soju
|
---|
| 2 |
|
---|
| 3 | import (
|
---|
[385] | 4 | "crypto/sha256"
|
---|
| 5 | "encoding/base64"
|
---|
| 6 | "encoding/binary"
|
---|
[218] | 7 | "fmt"
|
---|
[101] | 8 | "time"
|
---|
[103] | 9 |
|
---|
| 10 | "gopkg.in/irc.v3"
|
---|
[101] | 11 | )
|
---|
| 12 |
|
---|
[165] | 13 | type event interface{}
|
---|
| 14 |
|
---|
| 15 | type eventUpstreamMessage struct {
|
---|
[103] | 16 | msg *irc.Message
|
---|
| 17 | uc *upstreamConn
|
---|
| 18 | }
|
---|
| 19 |
|
---|
[218] | 20 | type eventUpstreamConnectionError struct {
|
---|
| 21 | net *network
|
---|
| 22 | err error
|
---|
| 23 | }
|
---|
| 24 |
|
---|
[196] | 25 | type eventUpstreamConnected struct {
|
---|
| 26 | uc *upstreamConn
|
---|
| 27 | }
|
---|
| 28 |
|
---|
[179] | 29 | type eventUpstreamDisconnected struct {
|
---|
| 30 | uc *upstreamConn
|
---|
| 31 | }
|
---|
| 32 |
|
---|
[218] | 33 | type eventUpstreamError struct {
|
---|
| 34 | uc *upstreamConn
|
---|
| 35 | err error
|
---|
| 36 | }
|
---|
| 37 |
|
---|
[165] | 38 | type eventDownstreamMessage struct {
|
---|
[103] | 39 | msg *irc.Message
|
---|
| 40 | dc *downstreamConn
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[166] | 43 | type eventDownstreamConnected struct {
|
---|
| 44 | dc *downstreamConn
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[167] | 47 | type eventDownstreamDisconnected struct {
|
---|
| 48 | dc *downstreamConn
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[376] | 51 | type eventStop struct{}
|
---|
| 52 |
|
---|
[253] | 53 | type networkHistory struct {
|
---|
| 54 | offlineClients map[string]uint64 // indexed by client name
|
---|
| 55 | ring *Ring // can be nil if there are no offline clients
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[101] | 58 | type network struct {
|
---|
| 59 | Network
|
---|
[202] | 60 | user *user
|
---|
| 61 | stopped chan struct{}
|
---|
[131] | 62 |
|
---|
[253] | 63 | conn *upstreamConn
|
---|
[267] | 64 | channels map[string]*Channel
|
---|
[253] | 65 | history map[string]*networkHistory // indexed by entity
|
---|
| 66 | offlineClients map[string]struct{} // indexed by client name
|
---|
| 67 | lastError error
|
---|
[101] | 68 | }
|
---|
| 69 |
|
---|
[267] | 70 | func newNetwork(user *user, record *Network, channels []Channel) *network {
|
---|
| 71 | m := make(map[string]*Channel, len(channels))
|
---|
| 72 | for _, ch := range channels {
|
---|
[283] | 73 | ch := ch
|
---|
[267] | 74 | m[ch.Name] = &ch
|
---|
| 75 | }
|
---|
| 76 |
|
---|
[101] | 77 | return &network{
|
---|
[253] | 78 | Network: *record,
|
---|
| 79 | user: user,
|
---|
| 80 | stopped: make(chan struct{}),
|
---|
[267] | 81 | channels: m,
|
---|
[253] | 82 | history: make(map[string]*networkHistory),
|
---|
| 83 | offlineClients: make(map[string]struct{}),
|
---|
[101] | 84 | }
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[218] | 87 | func (net *network) forEachDownstream(f func(*downstreamConn)) {
|
---|
| 88 | net.user.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 89 | if dc.network != nil && dc.network != net {
|
---|
| 90 | return
|
---|
| 91 | }
|
---|
| 92 | f(dc)
|
---|
| 93 | })
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[311] | 96 | func (net *network) isStopped() bool {
|
---|
| 97 | select {
|
---|
| 98 | case <-net.stopped:
|
---|
| 99 | return true
|
---|
| 100 | default:
|
---|
| 101 | return false
|
---|
| 102 | }
|
---|
| 103 | }
|
---|
| 104 |
|
---|
[385] | 105 | func userIdent(u *User) string {
|
---|
| 106 | // The ident is a string we will send to upstream servers in clear-text.
|
---|
| 107 | // For privacy reasons, make sure it doesn't expose any meaningful user
|
---|
| 108 | // metadata. We just use the base64-encoded hashed ID, so that people don't
|
---|
| 109 | // start relying on the string being an integer or following a pattern.
|
---|
| 110 | var b [64]byte
|
---|
| 111 | binary.LittleEndian.PutUint64(b[:], uint64(u.ID))
|
---|
| 112 | h := sha256.Sum256(b[:])
|
---|
| 113 | return base64.RawStdEncoding.EncodeToString(h[:])
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[101] | 116 | func (net *network) run() {
|
---|
| 117 | var lastTry time.Time
|
---|
| 118 | for {
|
---|
[311] | 119 | if net.isStopped() {
|
---|
[202] | 120 | return
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[101] | 123 | if dur := time.Now().Sub(lastTry); dur < retryConnectMinDelay {
|
---|
| 124 | delay := retryConnectMinDelay - dur
|
---|
| 125 | net.user.srv.Logger.Printf("waiting %v before trying to reconnect to %q", delay.Truncate(time.Second), net.Addr)
|
---|
| 126 | time.Sleep(delay)
|
---|
| 127 | }
|
---|
| 128 | lastTry = time.Now()
|
---|
| 129 |
|
---|
| 130 | uc, err := connectToUpstream(net)
|
---|
| 131 | if err != nil {
|
---|
| 132 | net.user.srv.Logger.Printf("failed to connect to upstream server %q: %v", net.Addr, err)
|
---|
[218] | 133 | net.user.events <- eventUpstreamConnectionError{net, fmt.Errorf("failed to connect: %v", err)}
|
---|
[101] | 134 | continue
|
---|
| 135 | }
|
---|
| 136 |
|
---|
[385] | 137 | if net.user.srv.Identd != nil {
|
---|
| 138 | net.user.srv.Identd.Store(uc.RemoteAddr().String(), uc.LocalAddr().String(), userIdent(&net.user.User))
|
---|
| 139 | }
|
---|
| 140 |
|
---|
[101] | 141 | uc.register()
|
---|
[197] | 142 | if err := uc.runUntilRegistered(); err != nil {
|
---|
| 143 | uc.logger.Printf("failed to register: %v", err)
|
---|
[218] | 144 | net.user.events <- eventUpstreamConnectionError{net, fmt.Errorf("failed to register: %v", err)}
|
---|
[197] | 145 | uc.Close()
|
---|
| 146 | continue
|
---|
| 147 | }
|
---|
[101] | 148 |
|
---|
[311] | 149 | // TODO: this is racy with net.stopped. If the network is stopped
|
---|
| 150 | // before the user goroutine receives eventUpstreamConnected, the
|
---|
| 151 | // connection won't be closed.
|
---|
[196] | 152 | net.user.events <- eventUpstreamConnected{uc}
|
---|
[165] | 153 | if err := uc.readMessages(net.user.events); err != nil {
|
---|
[101] | 154 | uc.logger.Printf("failed to handle messages: %v", err)
|
---|
[218] | 155 | net.user.events <- eventUpstreamError{uc, fmt.Errorf("failed to handle messages: %v", err)}
|
---|
[101] | 156 | }
|
---|
| 157 | uc.Close()
|
---|
[179] | 158 | net.user.events <- eventUpstreamDisconnected{uc}
|
---|
[385] | 159 |
|
---|
| 160 | if net.user.srv.Identd != nil {
|
---|
| 161 | net.user.srv.Identd.Delete(uc.RemoteAddr().String(), uc.LocalAddr().String())
|
---|
| 162 | }
|
---|
[101] | 163 | }
|
---|
| 164 | }
|
---|
| 165 |
|
---|
[309] | 166 | func (net *network) stop() {
|
---|
[311] | 167 | if !net.isStopped() {
|
---|
[202] | 168 | close(net.stopped)
|
---|
| 169 | }
|
---|
| 170 |
|
---|
[279] | 171 | if net.conn != nil {
|
---|
| 172 | net.conn.Close()
|
---|
[202] | 173 | }
|
---|
| 174 | }
|
---|
| 175 |
|
---|
[222] | 176 | func (net *network) createUpdateChannel(ch *Channel) error {
|
---|
[267] | 177 | if current, ok := net.channels[ch.Name]; ok {
|
---|
| 178 | ch.ID = current.ID // update channel if it already exists
|
---|
| 179 | }
|
---|
| 180 | if err := net.user.srv.db.StoreChannel(net.ID, ch); err != nil {
|
---|
[222] | 181 | return err
|
---|
| 182 | }
|
---|
[284] | 183 | prev := net.channels[ch.Name]
|
---|
[267] | 184 | net.channels[ch.Name] = ch
|
---|
[284] | 185 |
|
---|
| 186 | if prev != nil && prev.Detached != ch.Detached {
|
---|
| 187 | history := net.history[ch.Name]
|
---|
| 188 | if ch.Detached {
|
---|
| 189 | net.user.srv.Logger.Printf("network %q: detaching channel %q", net.GetName(), ch.Name)
|
---|
| 190 | net.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 191 | net.offlineClients[dc.clientName] = struct{}{}
|
---|
| 192 | if history != nil {
|
---|
| 193 | history.offlineClients[dc.clientName] = history.ring.Cur()
|
---|
| 194 | }
|
---|
| 195 |
|
---|
| 196 | dc.SendMessage(&irc.Message{
|
---|
| 197 | Prefix: dc.prefix(),
|
---|
| 198 | Command: "PART",
|
---|
| 199 | Params: []string{dc.marshalEntity(net, ch.Name), "Detach"},
|
---|
| 200 | })
|
---|
| 201 | })
|
---|
| 202 | } else {
|
---|
| 203 | net.user.srv.Logger.Printf("network %q: attaching channel %q", net.GetName(), ch.Name)
|
---|
| 204 |
|
---|
| 205 | var uch *upstreamChannel
|
---|
| 206 | if net.conn != nil {
|
---|
| 207 | uch = net.conn.channels[ch.Name]
|
---|
| 208 | }
|
---|
| 209 |
|
---|
| 210 | net.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 211 | dc.SendMessage(&irc.Message{
|
---|
| 212 | Prefix: dc.prefix(),
|
---|
| 213 | Command: "JOIN",
|
---|
| 214 | Params: []string{dc.marshalEntity(net, ch.Name)},
|
---|
| 215 | })
|
---|
| 216 |
|
---|
| 217 | if uch != nil {
|
---|
| 218 | forwardChannel(dc, uch)
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | if history != nil {
|
---|
| 222 | dc.sendNetworkHistory(net)
|
---|
| 223 | }
|
---|
| 224 | })
|
---|
| 225 | }
|
---|
| 226 | }
|
---|
| 227 |
|
---|
[267] | 228 | return nil
|
---|
[222] | 229 | }
|
---|
| 230 |
|
---|
| 231 | func (net *network) deleteChannel(name string) error {
|
---|
[267] | 232 | if err := net.user.srv.db.DeleteChannel(net.ID, name); err != nil {
|
---|
| 233 | return err
|
---|
| 234 | }
|
---|
| 235 | delete(net.channels, name)
|
---|
| 236 | return nil
|
---|
[222] | 237 | }
|
---|
| 238 |
|
---|
[101] | 239 | type user struct {
|
---|
| 240 | User
|
---|
| 241 | srv *Server
|
---|
| 242 |
|
---|
[165] | 243 | events chan event
|
---|
[377] | 244 | done chan struct{}
|
---|
[103] | 245 |
|
---|
[101] | 246 | networks []*network
|
---|
| 247 | downstreamConns []*downstreamConn
|
---|
[177] | 248 |
|
---|
| 249 | // LIST commands in progress
|
---|
[179] | 250 | pendingLISTs []pendingLIST
|
---|
[101] | 251 | }
|
---|
| 252 |
|
---|
[177] | 253 | type pendingLIST struct {
|
---|
| 254 | downstreamID uint64
|
---|
| 255 | // list of per-upstream LIST commands not yet sent or completed
|
---|
| 256 | pendingCommands map[int64]*irc.Message
|
---|
| 257 | }
|
---|
| 258 |
|
---|
[101] | 259 | func newUser(srv *Server, record *User) *user {
|
---|
| 260 | return &user{
|
---|
[165] | 261 | User: *record,
|
---|
| 262 | srv: srv,
|
---|
| 263 | events: make(chan event, 64),
|
---|
[377] | 264 | done: make(chan struct{}),
|
---|
[101] | 265 | }
|
---|
| 266 | }
|
---|
| 267 |
|
---|
| 268 | func (u *user) forEachNetwork(f func(*network)) {
|
---|
| 269 | for _, network := range u.networks {
|
---|
| 270 | f(network)
|
---|
| 271 | }
|
---|
| 272 | }
|
---|
| 273 |
|
---|
| 274 | func (u *user) forEachUpstream(f func(uc *upstreamConn)) {
|
---|
| 275 | for _, network := range u.networks {
|
---|
[279] | 276 | if network.conn == nil {
|
---|
[101] | 277 | continue
|
---|
| 278 | }
|
---|
[279] | 279 | f(network.conn)
|
---|
[101] | 280 | }
|
---|
| 281 | }
|
---|
| 282 |
|
---|
| 283 | func (u *user) forEachDownstream(f func(dc *downstreamConn)) {
|
---|
| 284 | for _, dc := range u.downstreamConns {
|
---|
| 285 | f(dc)
|
---|
| 286 | }
|
---|
| 287 | }
|
---|
| 288 |
|
---|
| 289 | func (u *user) getNetwork(name string) *network {
|
---|
| 290 | for _, network := range u.networks {
|
---|
| 291 | if network.Addr == name {
|
---|
| 292 | return network
|
---|
| 293 | }
|
---|
[201] | 294 | if network.Name != "" && network.Name == name {
|
---|
| 295 | return network
|
---|
| 296 | }
|
---|
[101] | 297 | }
|
---|
| 298 | return nil
|
---|
| 299 | }
|
---|
| 300 |
|
---|
[313] | 301 | func (u *user) getNetworkByID(id int64) *network {
|
---|
| 302 | for _, net := range u.networks {
|
---|
| 303 | if net.ID == id {
|
---|
| 304 | return net
|
---|
| 305 | }
|
---|
| 306 | }
|
---|
| 307 | return nil
|
---|
| 308 | }
|
---|
| 309 |
|
---|
[101] | 310 | func (u *user) run() {
|
---|
[377] | 311 | defer close(u.done)
|
---|
| 312 |
|
---|
[101] | 313 | networks, err := u.srv.db.ListNetworks(u.Username)
|
---|
| 314 | if err != nil {
|
---|
| 315 | u.srv.Logger.Printf("failed to list networks for user %q: %v", u.Username, err)
|
---|
| 316 | return
|
---|
| 317 | }
|
---|
| 318 |
|
---|
| 319 | for _, record := range networks {
|
---|
[283] | 320 | record := record
|
---|
[267] | 321 | channels, err := u.srv.db.ListChannels(record.ID)
|
---|
| 322 | if err != nil {
|
---|
| 323 | u.srv.Logger.Printf("failed to list channels for user %q, network %q: %v", u.Username, record.GetName(), err)
|
---|
[359] | 324 | continue
|
---|
[267] | 325 | }
|
---|
| 326 |
|
---|
| 327 | network := newNetwork(u, &record, channels)
|
---|
[101] | 328 | u.networks = append(u.networks, network)
|
---|
| 329 |
|
---|
| 330 | go network.run()
|
---|
| 331 | }
|
---|
[103] | 332 |
|
---|
[165] | 333 | for e := range u.events {
|
---|
| 334 | switch e := e.(type) {
|
---|
[196] | 335 | case eventUpstreamConnected:
|
---|
[198] | 336 | uc := e.uc
|
---|
[199] | 337 |
|
---|
| 338 | uc.network.conn = uc
|
---|
| 339 |
|
---|
[198] | 340 | uc.updateAway()
|
---|
[218] | 341 |
|
---|
| 342 | uc.forEachDownstream(func(dc *downstreamConn) {
|
---|
[276] | 343 | dc.updateSupportedCaps()
|
---|
[223] | 344 | sendServiceNOTICE(dc, fmt.Sprintf("connected to %s", uc.network.GetName()))
|
---|
[296] | 345 |
|
---|
| 346 | dc.updateNick()
|
---|
[218] | 347 | })
|
---|
| 348 | uc.network.lastError = nil
|
---|
[179] | 349 | case eventUpstreamDisconnected:
|
---|
[313] | 350 | u.handleUpstreamDisconnected(e.uc)
|
---|
| 351 | case eventUpstreamConnectionError:
|
---|
| 352 | net := e.net
|
---|
[199] | 353 |
|
---|
[313] | 354 | stopped := false
|
---|
| 355 | select {
|
---|
| 356 | case <-net.stopped:
|
---|
| 357 | stopped = true
|
---|
| 358 | default:
|
---|
[179] | 359 | }
|
---|
[199] | 360 |
|
---|
[313] | 361 | if !stopped && (net.lastError == nil || net.lastError.Error() != e.err.Error()) {
|
---|
[218] | 362 | net.forEachDownstream(func(dc *downstreamConn) {
|
---|
[223] | 363 | sendServiceNOTICE(dc, fmt.Sprintf("failed connecting/registering to %s: %v", net.GetName(), e.err))
|
---|
[218] | 364 | })
|
---|
| 365 | }
|
---|
| 366 | net.lastError = e.err
|
---|
| 367 | case eventUpstreamError:
|
---|
| 368 | uc := e.uc
|
---|
| 369 |
|
---|
| 370 | uc.forEachDownstream(func(dc *downstreamConn) {
|
---|
[223] | 371 | sendServiceNOTICE(dc, fmt.Sprintf("disconnected from %s: %v", uc.network.GetName(), e.err))
|
---|
[218] | 372 | })
|
---|
| 373 | uc.network.lastError = e.err
|
---|
[165] | 374 | case eventUpstreamMessage:
|
---|
| 375 | msg, uc := e.msg, e.uc
|
---|
[175] | 376 | if uc.isClosed() {
|
---|
[133] | 377 | uc.logger.Printf("ignoring message on closed connection: %v", msg)
|
---|
| 378 | break
|
---|
| 379 | }
|
---|
[103] | 380 | if err := uc.handleMessage(msg); err != nil {
|
---|
| 381 | uc.logger.Printf("failed to handle message %q: %v", msg, err)
|
---|
| 382 | }
|
---|
[166] | 383 | case eventDownstreamConnected:
|
---|
| 384 | dc := e.dc
|
---|
[168] | 385 |
|
---|
| 386 | if err := dc.welcome(); err != nil {
|
---|
| 387 | dc.logger.Printf("failed to handle new registered connection: %v", err)
|
---|
| 388 | break
|
---|
| 389 | }
|
---|
| 390 |
|
---|
[166] | 391 | u.downstreamConns = append(u.downstreamConns, dc)
|
---|
[198] | 392 |
|
---|
| 393 | u.forEachUpstream(func(uc *upstreamConn) {
|
---|
| 394 | uc.updateAway()
|
---|
| 395 | })
|
---|
[276] | 396 |
|
---|
| 397 | dc.updateSupportedCaps()
|
---|
[167] | 398 | case eventDownstreamDisconnected:
|
---|
| 399 | dc := e.dc
|
---|
[204] | 400 |
|
---|
[167] | 401 | for i := range u.downstreamConns {
|
---|
| 402 | if u.downstreamConns[i] == dc {
|
---|
| 403 | u.downstreamConns = append(u.downstreamConns[:i], u.downstreamConns[i+1:]...)
|
---|
| 404 | break
|
---|
| 405 | }
|
---|
| 406 | }
|
---|
[198] | 407 |
|
---|
[253] | 408 | // Save history if we're the last client with this name
|
---|
| 409 | skipHistory := make(map[*network]bool)
|
---|
| 410 | u.forEachDownstream(func(conn *downstreamConn) {
|
---|
| 411 | if dc.clientName == conn.clientName {
|
---|
| 412 | skipHistory[conn.network] = true
|
---|
| 413 | }
|
---|
| 414 | })
|
---|
| 415 |
|
---|
| 416 | dc.forEachNetwork(func(net *network) {
|
---|
| 417 | if skipHistory[net] || skipHistory[nil] {
|
---|
| 418 | return
|
---|
| 419 | }
|
---|
| 420 |
|
---|
| 421 | net.offlineClients[dc.clientName] = struct{}{}
|
---|
[284] | 422 | for target, history := range net.history {
|
---|
| 423 | if ch, ok := net.channels[target]; ok && ch.Detached {
|
---|
| 424 | continue
|
---|
| 425 | }
|
---|
[253] | 426 | history.offlineClients[dc.clientName] = history.ring.Cur()
|
---|
| 427 | }
|
---|
| 428 | })
|
---|
| 429 |
|
---|
[198] | 430 | u.forEachUpstream(func(uc *upstreamConn) {
|
---|
| 431 | uc.updateAway()
|
---|
| 432 | })
|
---|
[165] | 433 | case eventDownstreamMessage:
|
---|
| 434 | msg, dc := e.msg, e.dc
|
---|
[133] | 435 | if dc.isClosed() {
|
---|
| 436 | dc.logger.Printf("ignoring message on closed connection: %v", msg)
|
---|
| 437 | break
|
---|
| 438 | }
|
---|
[103] | 439 | err := dc.handleMessage(msg)
|
---|
| 440 | if ircErr, ok := err.(ircError); ok {
|
---|
| 441 | ircErr.Message.Prefix = dc.srv.prefix()
|
---|
| 442 | dc.SendMessage(ircErr.Message)
|
---|
| 443 | } else if err != nil {
|
---|
| 444 | dc.logger.Printf("failed to handle message %q: %v", msg, err)
|
---|
| 445 | dc.Close()
|
---|
| 446 | }
|
---|
[376] | 447 | case eventStop:
|
---|
| 448 | u.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 449 | dc.Close()
|
---|
| 450 | })
|
---|
| 451 | for _, n := range u.networks {
|
---|
| 452 | n.stop()
|
---|
| 453 | }
|
---|
| 454 | return
|
---|
[165] | 455 | default:
|
---|
| 456 | u.srv.Logger.Printf("received unknown event type: %T", e)
|
---|
[103] | 457 | }
|
---|
| 458 | }
|
---|
[101] | 459 | }
|
---|
| 460 |
|
---|
[313] | 461 | func (u *user) handleUpstreamDisconnected(uc *upstreamConn) {
|
---|
| 462 | uc.network.conn = nil
|
---|
| 463 |
|
---|
| 464 | for _, ml := range uc.messageLoggers {
|
---|
| 465 | if err := ml.Close(); err != nil {
|
---|
| 466 | uc.logger.Printf("failed to close message logger: %v", err)
|
---|
| 467 | }
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | uc.endPendingLISTs(true)
|
---|
| 471 |
|
---|
| 472 | uc.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 473 | dc.updateSupportedCaps()
|
---|
| 474 | })
|
---|
| 475 |
|
---|
| 476 | if uc.network.lastError == nil {
|
---|
| 477 | uc.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 478 | sendServiceNOTICE(dc, fmt.Sprintf("disconnected from %s", uc.network.GetName()))
|
---|
| 479 | })
|
---|
| 480 | }
|
---|
| 481 | }
|
---|
| 482 |
|
---|
| 483 | func (u *user) addNetwork(network *network) {
|
---|
| 484 | u.networks = append(u.networks, network)
|
---|
| 485 | go network.run()
|
---|
| 486 | }
|
---|
| 487 |
|
---|
| 488 | func (u *user) removeNetwork(network *network) {
|
---|
| 489 | network.stop()
|
---|
| 490 |
|
---|
| 491 | u.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 492 | if dc.network != nil && dc.network == network {
|
---|
| 493 | dc.Close()
|
---|
| 494 | }
|
---|
| 495 | })
|
---|
| 496 |
|
---|
| 497 | for i, net := range u.networks {
|
---|
| 498 | if net == network {
|
---|
| 499 | u.networks = append(u.networks[:i], u.networks[i+1:]...)
|
---|
| 500 | return
|
---|
| 501 | }
|
---|
| 502 | }
|
---|
| 503 |
|
---|
| 504 | panic("tried to remove a non-existing network")
|
---|
| 505 | }
|
---|
| 506 |
|
---|
| 507 | func (u *user) createNetwork(record *Network) (*network, error) {
|
---|
| 508 | if record.ID != 0 {
|
---|
[144] | 509 | panic("tried creating an already-existing network")
|
---|
| 510 | }
|
---|
| 511 |
|
---|
[313] | 512 | network := newNetwork(u, record, nil)
|
---|
[101] | 513 | err := u.srv.db.StoreNetwork(u.Username, &network.Network)
|
---|
| 514 | if err != nil {
|
---|
| 515 | return nil, err
|
---|
| 516 | }
|
---|
[144] | 517 |
|
---|
[313] | 518 | u.addNetwork(network)
|
---|
[144] | 519 |
|
---|
[101] | 520 | return network, nil
|
---|
| 521 | }
|
---|
[202] | 522 |
|
---|
[313] | 523 | func (u *user) updateNetwork(record *Network) (*network, error) {
|
---|
| 524 | if record.ID == 0 {
|
---|
| 525 | panic("tried updating a new network")
|
---|
| 526 | }
|
---|
[202] | 527 |
|
---|
[313] | 528 | network := u.getNetworkByID(record.ID)
|
---|
| 529 | if network == nil {
|
---|
| 530 | panic("tried updating a non-existing network")
|
---|
| 531 | }
|
---|
| 532 |
|
---|
| 533 | if err := u.srv.db.StoreNetwork(u.Username, record); err != nil {
|
---|
| 534 | return nil, err
|
---|
| 535 | }
|
---|
| 536 |
|
---|
| 537 | // Most network changes require us to re-connect to the upstream server
|
---|
| 538 |
|
---|
| 539 | channels := make([]Channel, 0, len(network.channels))
|
---|
| 540 | for _, ch := range network.channels {
|
---|
| 541 | channels = append(channels, *ch)
|
---|
| 542 | }
|
---|
| 543 |
|
---|
| 544 | updatedNetwork := newNetwork(u, record, channels)
|
---|
| 545 |
|
---|
| 546 | // If we're currently connected, disconnect and perform the necessary
|
---|
| 547 | // bookkeeping
|
---|
| 548 | if network.conn != nil {
|
---|
| 549 | network.stop()
|
---|
| 550 | // Note: this will set network.conn to nil
|
---|
| 551 | u.handleUpstreamDisconnected(network.conn)
|
---|
| 552 | }
|
---|
| 553 |
|
---|
| 554 | // Patch downstream connections to use our fresh updated network
|
---|
| 555 | u.forEachDownstream(func(dc *downstreamConn) {
|
---|
| 556 | if dc.network != nil && dc.network == network {
|
---|
| 557 | dc.network = updatedNetwork
|
---|
[202] | 558 | }
|
---|
[313] | 559 | })
|
---|
[202] | 560 |
|
---|
[313] | 561 | // We need to remove the network after patching downstream connections,
|
---|
| 562 | // otherwise they'll get closed
|
---|
| 563 | u.removeNetwork(network)
|
---|
[202] | 564 |
|
---|
[313] | 565 | // This will re-connect to the upstream server
|
---|
| 566 | u.addNetwork(updatedNetwork)
|
---|
| 567 |
|
---|
| 568 | return updatedNetwork, nil
|
---|
| 569 | }
|
---|
| 570 |
|
---|
| 571 | func (u *user) deleteNetwork(id int64) error {
|
---|
| 572 | network := u.getNetworkByID(id)
|
---|
| 573 | if network == nil {
|
---|
| 574 | panic("tried deleting a non-existing network")
|
---|
[202] | 575 | }
|
---|
| 576 |
|
---|
[313] | 577 | if err := u.srv.db.DeleteNetwork(network.ID); err != nil {
|
---|
| 578 | return err
|
---|
| 579 | }
|
---|
| 580 |
|
---|
| 581 | u.removeNetwork(network)
|
---|
| 582 | return nil
|
---|
[202] | 583 | }
|
---|
[252] | 584 |
|
---|
| 585 | func (u *user) updatePassword(hashed string) error {
|
---|
| 586 | u.User.Password = hashed
|
---|
[324] | 587 | return u.srv.db.StoreUser(&u.User)
|
---|
[252] | 588 | }
|
---|
[376] | 589 |
|
---|
| 590 | func (u *user) stop() {
|
---|
| 591 | u.events <- eventStop{}
|
---|
[377] | 592 | <-u.done
|
---|
[376] | 593 | }
|
---|