summaryrefslogtreecommitdiff
path: root/internal/imap/client.go
blob: 24cc3f1c7b6f1899d251134605d88bf96b89d523 (plain)
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
package imap

import (
	imapClient "github.com/emersion/go-imap/client"

	"github.com/Necoro/feed2imap-go/pkg/log"
)

const numberConns = 5

type connConf struct {
	host      string
	delimiter string
	toplevel  Folder
}

type Client struct {
	connConf
	mailboxes     *mailboxes
	commander     *commander
	connections   [numberConns]*connection
	nextFreeIndex int
}

func (client *Client) Disconnect() {
	if client != nil {
		client.stopCommander()

		connected := false
		for _, conn := range client.connections {
			connected = conn.disconnect() || connected
		}

		if connected {
			log.Print("Disconnected from ", client.host)
		}
	}
}

func (client *Client) createConnection(c *imapClient.Client) *connection {
	if client.nextFreeIndex >= len(client.connections) {
		panic("Too many connections")
	}

	conn := &connection{
		connConf:  &client.connConf,
		mailboxes: client.mailboxes,
		c:         c,
	}

	client.connections[client.nextFreeIndex] = conn
	client.nextFreeIndex++

	return conn
}

func NewClient() *Client {
	return &Client{mailboxes: NewMailboxes()}
}