forked from pyed/rtelegram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactive.go
92 lines (79 loc) · 2.68 KB
/
active.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
package main
import (
"bytes"
"fmt"
"time"
humanize "github.com/pyed/go-humanize"
"gopkg.in/telegram-bot-api.v4"
)
// active will send torrents that are actively downloading or uploading
func active() {
torrents, err := rtorrent.Torrents()
if err != nil {
logger.Print(err)
send("active: "+err.Error(), false)
return
}
buf := new(bytes.Buffer)
for i := range torrents {
if torrents[i].DownRate > 0 ||
torrents[i].UpRate > 0 {
torrentName := mdReplacer.Replace(torrents[i].Name) // escape markdown
buf.WriteString(fmt.Sprintf("`<%d>` *%s*\n%s *%s* (%s) ↓ *%s* ↑ *%s* R: *%.2f*\n\n",
i, torrentName, torrents[i].State, humanize.Bytes(torrents[i].Completed),
torrents[i].Percent, humanize.Bytes(torrents[i].DownRate),
humanize.Bytes(torrents[i].UpRate), torrents[i].Ratio))
}
}
if buf.Len() == 0 {
send("No active torrents", false)
return
}
msgID := send(buf.String(), true)
if NoLive {
return
}
// keep the active list live for 'duration * interval'
for i := 0; i < duration; i++ {
time.Sleep(time.Second * interval)
// reset the buffer to reuse it
buf.Reset()
// update torrents
torrents, err = rtorrent.Torrents()
if err != nil {
continue // if there was error getting torrents, skip to the next iteration
}
// do the same loop again
for i := range torrents {
if torrents[i].DownRate > 0 ||
torrents[i].DownRate > 0 {
torrentName := mdReplacer.Replace(torrents[i].Name) // replace markdown chars
buf.WriteString(fmt.Sprintf("`<%d>` *%s*\n%s *%s* (%s) ↓ *%s* ↑ *%s* R: *%.2f*\n\n",
i, torrentName, torrents[i].State, humanize.Bytes(torrents[i].Completed),
torrents[i].Percent, humanize.Bytes(torrents[i].DownRate),
humanize.Bytes(torrents[i].UpRate), torrents[i].Ratio))
}
}
// no need to check if it is empty, as if the buffer is empty telegram won't change the message
editConf := tgbotapi.NewEditMessageText(chatID, msgID, buf.String())
editConf.ParseMode = tgbotapi.ModeMarkdown
Bot.Send(editConf)
}
// sleep one more time before putting the dashes
time.Sleep(time.Second * interval)
// replace the speed with dashes to indicate that we are done being live
buf.Reset()
for i := range torrents {
if torrents[i].DownRate > 0 ||
torrents[i].DownRate > 0 {
// escape markdown
torrentName := mdReplacer.Replace(torrents[i].Name)
buf.WriteString(fmt.Sprintf("`<%d>` *%s*\n%s *%s* (%s) ↓ *-* ↑ *-* R: *%.2f*\n\n",
i, torrentName, torrents[i].State, humanize.Bytes(torrents[i].Completed),
torrents[i].Percent, torrents[i].Ratio))
}
}
editConf := tgbotapi.NewEditMessageText(chatID, msgID, buf.String())
editConf.ParseMode = tgbotapi.ModeMarkdown
Bot.Send(editConf)
}