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
|
package koushin
import (
"crypto/rand"
"encoding/base64"
"errors"
"sync"
imapclient "github.com/emersion/go-imap/client"
)
func generateToken() (string, error) {
b := make([]byte, 32)
_, err := rand.Read(b)
if err != nil {
return "", err
}
return base64.URLEncoding.EncodeToString(b), nil
}
var ErrSessionExpired = errors.New("session expired")
// TODO: expiration timer
type ConnPool struct {
locker sync.Mutex
conns map[string]*imapclient.Client
}
func NewConnPool() *ConnPool {
return &ConnPool{
conns: make(map[string]*imapclient.Client),
}
}
func (pool *ConnPool) Get(token string) (*imapclient.Client, error) {
pool.locker.Lock()
defer pool.locker.Unlock()
conn, ok := pool.conns[token]
if !ok {
return nil, ErrSessionExpired
}
return conn, nil
}
func (pool *ConnPool) Put(conn *imapclient.Client) (token string, err error) {
pool.locker.Lock()
defer pool.locker.Unlock()
for {
var err error
token, err = generateToken()
if err != nil {
conn.Logout()
return "", err
}
if _, ok := pool.conns[token]; !ok {
break
}
}
pool.conns[token] = conn
go func() {
<-conn.LoggedOut()
pool.locker.Lock()
delete(pool.conns, token)
pool.locker.Unlock()
}()
return token, nil
}
|