-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
processors.go
134 lines (117 loc) · 4.12 KB
/
processors.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
package slackdump
import (
"context"
"errors"
"fmt"
"path"
"runtime/trace"
"strings"
"time"
"github.com/rusq/slack"
"golang.org/x/time/rate"
"github.com/rusq/slackdump/v3/downloader"
"github.com/rusq/slackdump/v3/internal/structures/files"
"github.com/rusq/slackdump/v3/types"
)
const (
// files channel buffer size. I don't know, i just like 20, doesn't really matter.
filesCbufSz = 20
)
// ProcessFunc is the signature of the processor function that Dump* family
// functions accept and call for each API call result. It can be used to
// modify in-place the slice of messages, returned from API, before they are
// appended to the slice that will be returned by Dump*. Messages passed to
// this function are unsorted.
type ProcessFunc func(msg []types.Message, channelID string) (ProcessResult, error)
// ProcessResult contains the result of processing.
type ProcessResult struct {
// Entity is the type of entity that this result is related to.
Entity string
// Count is the number of items processed during processing.
Count int
}
func (pr ProcessResult) String() string {
return fmt.Sprintf("%s: %d", pr.Entity, pr.Count)
}
// ProcessResults is the slice of ProcessResult
type ProcessResults []ProcessResult
func (prs ProcessResults) String() string {
var results []string
for _, res := range prs {
results = append(results, res.String())
}
return strings.Join(results, ", ")
}
// cancelFunc may be returned by some process function constructors.
type cancelFunc func()
// runProcessFuncs runs processFn sequentially and return results of execution.
func runProcessFuncs(m []types.Message, channelID string, processFn ...ProcessFunc) (ProcessResults, error) {
var prs ProcessResults
for _, fn := range processFn {
res, err := fn(m, channelID)
if err != nil {
return nil, err
}
prs = append(prs, res)
}
return prs, nil
}
// newFileProcessFn returns a file process function that will save the
// conversation files to directory dir on the slackdump filesystem, rate limited
// by limiter l. The File.PublicURL will be updated to point to the downloaded
// file, instead of Slack server URL. It returns ProcessFunction and
// CancelFunc. CancelFunc must be called, i.e. by deferring it's execution.
func (s *Session) newFileProcessFn(ctx context.Context, dir string, l *rate.Limiter) (ProcessFunc, cancelFunc, error) {
if s.fs == nil {
return nil, nil, errors.New("filesystem not set, unable to download files")
}
// set up a file downloader and add it to the post-process functions
// slice
dl := downloader.NewV1(
s.client,
s.fs,
downloader.LimiterV1(l),
downloader.RetriesV1(s.cfg.limits.DownloadRetries),
downloader.WorkersV1(s.cfg.limits.Workers),
downloader.LoggerV1(s.log),
)
filesC := make(chan *slack.File, filesCbufSz)
dlDoneC, err := dl.AsyncDownloader(ctx, dir, filesC)
if err != nil {
return nil, nil, err
}
fn := func(msg []types.Message, _ string) (ProcessResult, error) {
n := pipeAndUpdateFiles(filesC, msg, dir)
return ProcessResult{Entity: "files", Count: n}, nil
}
cancelFn := func() {
trace.Log(ctx, "info", "closing files channel")
close(filesC)
<-dlDoneC
}
return fn, cancelFn, nil
}
// pipeAndUpdateFiles scans the messages and sends all the files discovered to
// the filesC.
func pipeAndUpdateFiles(filesC chan<- *slack.File, msgs []types.Message, dir string) int {
// place files in the download queue
total := 0
_ = files.Extract(msgs, files.Root, func(file slack.File, addr files.Addr) error {
filesC <- &file
total++
return files.Update(msgs, addr, files.UpdatePathFn(path.Join(dir, downloader.Filename(&file))))
})
return total
}
// newThreadProcessFn returns the new thread processor function. It will use limiter l
// to limit the API calls rate.
func (s *Session) newThreadProcessFn(ctx context.Context, l *rate.Limiter, oldest, latest time.Time) ProcessFunc {
processFn := func(chunk []types.Message, channelID string) (ProcessResult, error) {
n, err := s.populateThreads(ctx, l, chunk, channelID, oldest, latest, s.dumpThread)
if err != nil {
return ProcessResult{}, err
}
return ProcessResult{Entity: "threads", Count: n}, nil
}
return processFn
}