Minor formatting tweaks on the help command (#22)

* Minor formatting tweaks on the `help` command

There were a few commas and capitalizations off. Also put some other stuff in italics or quotes for readibility.

* More formatting tweaks; error msgs slightly off

Some more formatting tweaks, for readibility.

Also fixed a minor typo on `add`: "atleast" -> "at least"

`check` and `start` also appeared to have a minor bug in an error message, as it displayed `stop: ` instead of the respective command. Read this as a copy-paste of a chunk of code and then forgetting to update it to the relevant command, but if I misunderstood and the behavior is actually intentional and I just missed the point, just ignore that bit :)
This commit is contained in:
JNat 2019-04-26 14:55:00 +01:00 committed by pyed
parent 576279cfe8
commit 274f19ebe7

144
main.go
View File

@ -32,16 +32,16 @@ const (
Lists the last n number of torrents, n defaults to 5 if no argument is provided. Lists the last n number of torrents, n defaults to 5 if no argument is provided.
*down* or *dl* *down* or *dl*
Lists torrents with the status of Downloading or in the queue to download. Lists torrents with the status of _Downloading_ or in the queue to download.
*seeding* or *sd* *seeding* or *sd*
Lists torrents with the status of Seeding or in the queue to seed. Lists torrents with the status of _Seeding_ or in the queue to seed.
*paused* or *pa* *paused* or *pa*
Lists Paused torrents. Lists _Paused_ torrents.
*checking* or *ch* *checking* or *ch*
Lists torrents with the status of Verifying or in the queue to verify. Lists torrents with the status of _Verifying_ or in the queue to verify.
*active* or *ac* *active* or *ac*
Lists torrents that are actively uploading or downloading. Lists torrents that are actively uploading or downloading.
@ -50,13 +50,13 @@ const (
Lists torrents with with errors along with the error message. Lists torrents with with errors along with the error message.
*sort* or *so* *sort* or *so*
Manipulate the sorting of the aforementioned commands, Call it without arguments for more. Manipulate the sorting of the aforementioned commands. Call it without arguments for more.
*trackers* or *tr* *trackers* or *tr*
Lists all the trackers along with the number of torrents. Lists all the trackers along with the number of torrents.
*add* or *ad* *add* or *ad*
Takes one or many URLs or magnets to add them, You can send a .torrent file via Telegram to add it. Takes one or many URLs or magnets to add them. You can send a ".torrent" file via Telegram to add it.
*search* or *se* *search* or *se*
Takes a query and lists torrents with matching names. Takes a query and lists torrents with matching names.
@ -391,7 +391,7 @@ func main() {
default: default:
// no such command, try help // no such command, try help
go send("no such command, try /help", update.Message.Chat.ID, false) go send("No such command, try /help", update.Message.Chat.ID, false)
} }
} }
@ -403,7 +403,7 @@ func main() {
func list(ud tgbotapi.Update, tokens []string) { func list(ud tgbotapi.Update, tokens []string) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("list: "+err.Error(), ud.Message.Chat.ID, false) send("*list:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -413,7 +413,7 @@ func list(ud tgbotapi.Update, tokens []string) {
// (?i) for case insensitivity // (?i) for case insensitivity
regx, err := regexp.Compile("(?i)" + tokens[0]) regx, err := regexp.Compile("(?i)" + tokens[0])
if err != nil { if err != nil {
send("list: "+err.Error(), ud.Message.Chat.ID, false) send("*list:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -431,10 +431,10 @@ func list(ud tgbotapi.Update, tokens []string) {
if buf.Len() == 0 { if buf.Len() == 0 {
// if we got a tracker query show different message // if we got a tracker query show different message
if len(tokens) != 0 { if len(tokens) != 0 {
send(fmt.Sprintf("list: No tracker matches: *%s*", tokens[0]), ud.Message.Chat.ID, true) send(fmt.Sprintf("*list:* No tracker matches: *%s*", tokens[0]), ud.Message.Chat.ID, true)
return return
} }
send("list: No torrents", ud.Message.Chat.ID, false) send("*list:* no torrents", ud.Message.Chat.ID, false)
return return
} }
@ -451,14 +451,14 @@ func head(ud tgbotapi.Update, tokens []string) {
if len(tokens) > 0 { if len(tokens) > 0 {
n, err = strconv.Atoi(tokens[0]) n, err = strconv.Atoi(tokens[0])
if err != nil { if err != nil {
send("head: argument must be a number", ud.Message.Chat.ID, false) send("*head:* argument must be a number", ud.Message.Chat.ID, false)
return return
} }
} }
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("head: "+err.Error(), ud.Message.Chat.ID, false) send("*head:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -477,7 +477,7 @@ func head(ud tgbotapi.Update, tokens []string) {
} }
if buf.Len() == 0 { if buf.Len() == 0 {
send("head: No torrents", ud.Message.Chat.ID, false) send("*head:* no torrents", ud.Message.Chat.ID, false)
return return
} }
@ -532,14 +532,14 @@ func tailf(ud tgbotapi.Update, tokens []string) {
if len(tokens) > 0 { if len(tokens) > 0 {
n, err = strconv.Atoi(tokens[0]) n, err = strconv.Atoi(tokens[0])
if err != nil { if err != nil {
send("tail: argument must be a number", ud.Message.Chat.ID, false) send("*tail:* argument must be a number", ud.Message.Chat.ID, false)
return return
} }
} }
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("tail: "+err.Error(), ud.Message.Chat.ID, false) send("*tail:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -558,7 +558,7 @@ func tailf(ud tgbotapi.Update, tokens []string) {
} }
if buf.Len() == 0 { if buf.Len() == 0 {
send("tail: No torrents", ud.Message.Chat.ID, false) send("*tail:* no torrents", ud.Message.Chat.ID, false)
return return
} }
@ -607,7 +607,7 @@ func tailf(ud tgbotapi.Update, tokens []string) {
func downs(ud tgbotapi.Update) { func downs(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("downs: "+err.Error(), ud.Message.Chat.ID, false) send("*downs:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -631,7 +631,7 @@ func downs(ud tgbotapi.Update) {
func seeding(ud tgbotapi.Update) { func seeding(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("seeding: "+err.Error(), ud.Message.Chat.ID, false) send("*seeding:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -656,7 +656,7 @@ func seeding(ud tgbotapi.Update) {
func paused(ud tgbotapi.Update) { func paused(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("paused: "+err.Error(), ud.Message.Chat.ID, false) send("*paused:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -682,7 +682,7 @@ func paused(ud tgbotapi.Update) {
func checking(ud tgbotapi.Update) { func checking(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("checking: "+err.Error(), ud.Message.Chat.ID, false) send("*checking:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -709,7 +709,7 @@ func checking(ud tgbotapi.Update) {
func active(ud tgbotapi.Update) { func active(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("active: "+err.Error(), ud.Message.Chat.ID, false) send("*active:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -791,7 +791,7 @@ func active(ud tgbotapi.Update) {
func errors(ud tgbotapi.Update) { func errors(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("errors: "+err.Error(), ud.Message.Chat.ID, false) send("*errors:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -812,7 +812,7 @@ func errors(ud tgbotapi.Update) {
// sort changes torrents sorting // sort changes torrents sorting
func sort(ud tgbotapi.Update, tokens []string) { func sort(ud tgbotapi.Update, tokens []string) {
if len(tokens) == 0 { if len(tokens) == 0 {
send(`sort takes one of: send(`*sort* takes one of:
(*id, name, age, size, progress, downspeed, upspeed, download, upload, ratio*) (*id, name, age, size, progress, downspeed, upspeed, download, upload, ratio*)
optionally start with (*rev*) for reversed order optionally start with (*rev*) for reversed order
e.g. "*sort rev size*" to get biggest torrents first.`, ud.Message.Chat.ID, true) e.g. "*sort rev size*" to get biggest torrents first.`, ud.Message.Chat.ID, true)
@ -892,10 +892,10 @@ func sort(ud tgbotapi.Update, tokens []string) {
} }
if reversed { if reversed {
send("sort: reversed "+tokens[0], ud.Message.Chat.ID, false) send("*sort:* reversed "+tokens[0], ud.Message.Chat.ID, false)
return return
} }
send("sort: "+tokens[0], ud.Message.Chat.ID, false) send("*sort:* "+tokens[0], ud.Message.Chat.ID, false)
} }
var trackerRegex = regexp.MustCompile(`[https?|udp]://([^:/]*)`) var trackerRegex = regexp.MustCompile(`[https?|udp]://([^:/]*)`)
@ -904,7 +904,7 @@ var trackerRegex = regexp.MustCompile(`[https?|udp]://([^:/]*)`)
func trackers(ud tgbotapi.Update) { func trackers(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("trackers: "+err.Error(), ud.Message.Chat.ID, false) send("*trackers:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -940,7 +940,7 @@ func trackers(ud tgbotapi.Update) {
// add takes an URL to a .torrent file to add it to transmission // add takes an URL to a .torrent file to add it to transmission
func add(ud tgbotapi.Update, tokens []string) { func add(ud tgbotapi.Update, tokens []string) {
if len(tokens) == 0 { if len(tokens) == 0 {
send("add: needs atleast one URL", ud.Message.Chat.ID, false) send("*add:* needs at least one URL", ud.Message.Chat.ID, false)
return return
} }
@ -950,16 +950,16 @@ func add(ud tgbotapi.Update, tokens []string) {
torrent, err := Client.ExecuteAddCommand(cmd) torrent, err := Client.ExecuteAddCommand(cmd)
if err != nil { if err != nil {
send("add: "+err.Error(), ud.Message.Chat.ID, false) send("*add:* "+err.Error(), ud.Message.Chat.ID, false)
continue continue
} }
// check if torrent.Name is empty, then an error happened // check if torrent.Name is empty, then an error happened
if torrent.Name == "" { if torrent.Name == "" {
send("add: error adding "+url, ud.Message.Chat.ID, false) send("*add:* error adding "+url, ud.Message.Chat.ID, false)
continue continue
} }
send(fmt.Sprintf("Added: <%d> %s", torrent.ID, torrent.Name), ud.Message.Chat.ID, false) send(fmt.Sprintf("*Added:* <%d> %s", torrent.ID, torrent.Name), ud.Message.Chat.ID, false)
} }
} }
@ -975,7 +975,7 @@ func receiveTorrent(ud tgbotapi.Update) {
} }
file, err := Bot.GetFile(fconfig) file, err := Bot.GetFile(fconfig)
if err != nil { if err != nil {
send("receiver: "+err.Error(), ud.Message.Chat.ID, false) send("*receiver:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -987,7 +987,7 @@ func receiveTorrent(ud tgbotapi.Update) {
func search(ud tgbotapi.Update, tokens []string) { func search(ud tgbotapi.Update, tokens []string) {
// make sure that we got a query // make sure that we got a query
if len(tokens) == 0 { if len(tokens) == 0 {
send("search: needs an argument", ud.Message.Chat.ID, false) send("*search:* needs an argument", ud.Message.Chat.ID, false)
return return
} }
@ -995,13 +995,13 @@ func search(ud tgbotapi.Update, tokens []string) {
// "(?i)" for case insensitivity // "(?i)" for case insensitivity
regx, err := regexp.Compile("(?i)" + query) regx, err := regexp.Compile("(?i)" + query)
if err != nil { if err != nil {
send("search: "+err.Error(), ud.Message.Chat.ID, false) send("*search:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("search: "+err.Error(), ud.Message.Chat.ID, false) send("*search:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -1028,14 +1028,14 @@ func latest(ud tgbotapi.Update, tokens []string) {
if len(tokens) > 0 { if len(tokens) > 0 {
n, err = strconv.Atoi(tokens[0]) n, err = strconv.Atoi(tokens[0])
if err != nil { if err != nil {
send("latest: argument must be a number", ud.Message.Chat.ID, false) send("*latest:* argument must be a number", ud.Message.Chat.ID, false)
return return
} }
} }
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("latest: "+err.Error(), ud.Message.Chat.ID, false) send("*latest:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -1052,7 +1052,7 @@ func latest(ud tgbotapi.Update, tokens []string) {
buf.WriteString(fmt.Sprintf("<%d> %s\n", torrents[i].ID, torrents[i].Name)) buf.WriteString(fmt.Sprintf("<%d> %s\n", torrents[i].ID, torrents[i].Name))
} }
if buf.Len() == 0 { if buf.Len() == 0 {
send("latest: No torrents", ud.Message.Chat.ID, false) send("*latest:* No torrents", ud.Message.Chat.ID, false)
return return
} }
send(buf.String(), ud.Message.Chat.ID, false) send(buf.String(), ud.Message.Chat.ID, false)
@ -1061,21 +1061,21 @@ func latest(ud tgbotapi.Update, tokens []string) {
// info takes an id of a torrent and returns some info about it // info takes an id of a torrent and returns some info about it
func info(ud tgbotapi.Update, tokens []string) { func info(ud tgbotapi.Update, tokens []string) {
if len(tokens) == 0 { if len(tokens) == 0 {
send("info: needs a torrent ID number", ud.Message.Chat.ID, false) send("*info:* needs a torrent ID number", ud.Message.Chat.ID, false)
return return
} }
for _, id := range tokens { for _, id := range tokens {
torrentID, err := strconv.Atoi(id) torrentID, err := strconv.Atoi(id)
if err != nil { if err != nil {
send(fmt.Sprintf("info: %s is not a number", id), ud.Message.Chat.ID, false) send(fmt.Sprintf("*info:* %s is not a number", id), ud.Message.Chat.ID, false)
continue continue
} }
// get the torrent // get the torrent
torrent, err := Client.GetTorrent(torrentID) torrent, err := Client.GetTorrent(torrentID)
if err != nil { if err != nil {
send(fmt.Sprintf("info: Can't find a torrent with an ID of %d", torrentID), ud.Message.Chat.ID, false) send(fmt.Sprintf("*info:* Can't find a torrent with an ID of %d", torrentID), ud.Message.Chat.ID, false)
continue continue
} }
@ -1146,38 +1146,38 @@ func info(ud tgbotapi.Update, tokens []string) {
func stop(ud tgbotapi.Update, tokens []string) { func stop(ud tgbotapi.Update, tokens []string) {
// make sure that we got at least one argument // make sure that we got at least one argument
if len(tokens) == 0 { if len(tokens) == 0 {
send("stop: needs an argument", ud.Message.Chat.ID, false) send("*stop:* needs an argument", ud.Message.Chat.ID, false)
return return
} }
// if the first argument is 'all' then stop all torrents // if the first argument is 'all' then stop all torrents
if tokens[0] == "all" { if tokens[0] == "all" {
if err := Client.StopAll(); err != nil { if err := Client.StopAll(); err != nil {
send("stop: error occurred while stopping some torrents", ud.Message.Chat.ID, false) send("*stop:* error occurred while stopping some torrents", ud.Message.Chat.ID, false)
return return
} }
send("stopped all torrents", ud.Message.Chat.ID, false) send("Stopped all torrents", ud.Message.Chat.ID, false)
return return
} }
for _, id := range tokens { for _, id := range tokens {
num, err := strconv.Atoi(id) num, err := strconv.Atoi(id)
if err != nil { if err != nil {
send(fmt.Sprintf("stop: %s is not a number", id), ud.Message.Chat.ID, false) send(fmt.Sprintf("*stop:* %s is not a number", id), ud.Message.Chat.ID, false)
continue continue
} }
status, err := Client.StopTorrent(num) status, err := Client.StopTorrent(num)
if err != nil { if err != nil {
send("stop: "+err.Error(), ud.Message.Chat.ID, false) send("*stop:* "+err.Error(), ud.Message.Chat.ID, false)
continue continue
} }
torrent, err := Client.GetTorrent(num) torrent, err := Client.GetTorrent(num)
if err != nil { if err != nil {
send(fmt.Sprintf("[fail] stop: No torrent with an ID of %d", num), ud.Message.Chat.ID, false) send(fmt.Sprintf("[fail] *stop:* No torrent with an ID of %d", num), ud.Message.Chat.ID, false)
return return
} }
send(fmt.Sprintf("[%s] stop: %s", status, torrent.Name), ud.Message.Chat.ID, false) send(fmt.Sprintf("[%s] *stop:* %s", status, torrent.Name), ud.Message.Chat.ID, false)
} }
} }
@ -1185,17 +1185,17 @@ func stop(ud tgbotapi.Update, tokens []string) {
func start(ud tgbotapi.Update, tokens []string) { func start(ud tgbotapi.Update, tokens []string) {
// make sure that we got at least one argument // make sure that we got at least one argument
if len(tokens) == 0 { if len(tokens) == 0 {
send("start: needs an argument", ud.Message.Chat.ID, false) send("*start:* needs an argument", ud.Message.Chat.ID, false)
return return
} }
// if the first argument is 'all' then start all torrents // if the first argument is 'all' then start all torrents
if tokens[0] == "all" { if tokens[0] == "all" {
if err := Client.StartAll(); err != nil { if err := Client.StartAll(); err != nil {
send("start: error occurred while starting some torrents", ud.Message.Chat.ID, false) send("*start:* error occurred while starting some torrents", ud.Message.Chat.ID, false)
return return
} }
send("started all torrents", ud.Message.Chat.ID, false) send("Started all torrents", ud.Message.Chat.ID, false)
return return
} }
@ -1203,21 +1203,21 @@ func start(ud tgbotapi.Update, tokens []string) {
for _, id := range tokens { for _, id := range tokens {
num, err := strconv.Atoi(id) num, err := strconv.Atoi(id)
if err != nil { if err != nil {
send(fmt.Sprintf("start: %s is not a number", id), ud.Message.Chat.ID, false) send(fmt.Sprintf("*start:* %s is not a number", id), ud.Message.Chat.ID, false)
continue continue
} }
status, err := Client.StartTorrent(num) status, err := Client.StartTorrent(num)
if err != nil { if err != nil {
send("stop: "+err.Error(), ud.Message.Chat.ID, false) send("*start:* "+err.Error(), ud.Message.Chat.ID, false)
continue continue
} }
torrent, err := Client.GetTorrent(num) torrent, err := Client.GetTorrent(num)
if err != nil { if err != nil {
send(fmt.Sprintf("[fail] start: No torrent with an ID of %d", num), ud.Message.Chat.ID, false) send(fmt.Sprintf("[fail] *start:* No torrent with an ID of %d", num), ud.Message.Chat.ID, false)
return return
} }
send(fmt.Sprintf("[%s] start: %s", status, torrent.Name), ud.Message.Chat.ID, false) send(fmt.Sprintf("[%s] *start:* %s", status, torrent.Name), ud.Message.Chat.ID, false)
} }
} }
@ -1225,17 +1225,17 @@ func start(ud tgbotapi.Update, tokens []string) {
func check(ud tgbotapi.Update, tokens []string) { func check(ud tgbotapi.Update, tokens []string) {
// make sure that we got at least one argument // make sure that we got at least one argument
if len(tokens) == 0 { if len(tokens) == 0 {
send("check: needs an argument", ud.Message.Chat.ID, false) send("*check:* needs an argument", ud.Message.Chat.ID, false)
return return
} }
// if the first argument is 'all' then start all torrents // if the first argument is 'all' then start all torrents
if tokens[0] == "all" { if tokens[0] == "all" {
if err := Client.VerifyAll(); err != nil { if err := Client.VerifyAll(); err != nil {
send("check: error occurred while verifying some torrents", ud.Message.Chat.ID, false) send("*check:* error occurred while verifying some torrents", ud.Message.Chat.ID, false)
return return
} }
send("verifying all torrents", ud.Message.Chat.ID, false) send("Verifying all torrents", ud.Message.Chat.ID, false)
return return
} }
@ -1243,21 +1243,21 @@ func check(ud tgbotapi.Update, tokens []string) {
for _, id := range tokens { for _, id := range tokens {
num, err := strconv.Atoi(id) num, err := strconv.Atoi(id)
if err != nil { if err != nil {
send(fmt.Sprintf("check: %s is not a number", id), ud.Message.Chat.ID, false) send(fmt.Sprintf("*check:* %s is not a number", id), ud.Message.Chat.ID, false)
continue continue
} }
status, err := Client.VerifyTorrent(num) status, err := Client.VerifyTorrent(num)
if err != nil { if err != nil {
send("stop: "+err.Error(), ud.Message.Chat.ID, false) send("*check:* "+err.Error(), ud.Message.Chat.ID, false)
continue continue
} }
torrent, err := Client.GetTorrent(num) torrent, err := Client.GetTorrent(num)
if err != nil { if err != nil {
send(fmt.Sprintf("[fail] check: No torrent with an ID of %d", num), ud.Message.Chat.ID, false) send(fmt.Sprintf("[fail] *check:* No torrent with an ID of %d", num), ud.Message.Chat.ID, false)
return return
} }
send(fmt.Sprintf("[%s] check: %s", status, torrent.Name), ud.Message.Chat.ID, false) send(fmt.Sprintf("[%s] *check:* %s", status, torrent.Name), ud.Message.Chat.ID, false)
} }
} }
@ -1266,7 +1266,7 @@ func check(ud tgbotapi.Update, tokens []string) {
func stats(ud tgbotapi.Update) { func stats(ud tgbotapi.Update) {
stats, err := Client.GetStats() stats, err := Client.GetStats()
if err != nil { if err != nil {
send("stats: "+err.Error(), ud.Message.Chat.ID, false) send("*stats:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -1307,7 +1307,7 @@ func stats(ud tgbotapi.Update) {
func speed(ud tgbotapi.Update) { func speed(ud tgbotapi.Update) {
stats, err := Client.GetStats() stats, err := Client.GetStats()
if err != nil { if err != nil {
send("speed: "+err.Error(), ud.Message.Chat.ID, false) send("*speed:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -1344,7 +1344,7 @@ func speed(ud tgbotapi.Update) {
func count(ud tgbotapi.Update) { func count(ud tgbotapi.Update) {
torrents, err := Client.GetTorrents() torrents, err := Client.GetTorrents()
if err != nil { if err != nil {
send("count: "+err.Error(), ud.Message.Chat.ID, false) send("*count:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
@ -1380,7 +1380,7 @@ func count(ud tgbotapi.Update) {
func del(ud tgbotapi.Update, tokens []string) { func del(ud tgbotapi.Update, tokens []string) {
// make sure that we got an argument // make sure that we got an argument
if len(tokens) == 0 { if len(tokens) == 0 {
send("del: needs an ID", ud.Message.Chat.ID, false) send("*del:* needs an ID", ud.Message.Chat.ID, false)
return return
} }
@ -1388,17 +1388,17 @@ func del(ud tgbotapi.Update, tokens []string) {
for _, id := range tokens { for _, id := range tokens {
num, err := strconv.Atoi(id) num, err := strconv.Atoi(id)
if err != nil { if err != nil {
send(fmt.Sprintf("del: %s is not an ID", id), ud.Message.Chat.ID, false) send(fmt.Sprintf("*del:* %s is not an ID", id), ud.Message.Chat.ID, false)
return return
} }
name, err := Client.DeleteTorrent(num, false) name, err := Client.DeleteTorrent(num, false)
if err != nil { if err != nil {
send("del: "+err.Error(), ud.Message.Chat.ID, false) send("*del:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }
send("Deleted: "+name, ud.Message.Chat.ID, false) send("*Deleted:* "+name, ud.Message.Chat.ID, false)
} }
} }
@ -1406,20 +1406,20 @@ func del(ud tgbotapi.Update, tokens []string) {
func deldata(ud tgbotapi.Update, tokens []string) { func deldata(ud tgbotapi.Update, tokens []string) {
// make sure that we got an argument // make sure that we got an argument
if len(tokens) == 0 { if len(tokens) == 0 {
send("deldata: needs an ID", ud.Message.Chat.ID, false) send("*deldata:* needs an ID", ud.Message.Chat.ID, false)
return return
} }
// loop over tokens to read each potential id // loop over tokens to read each potential id
for _, id := range tokens { for _, id := range tokens {
num, err := strconv.Atoi(id) num, err := strconv.Atoi(id)
if err != nil { if err != nil {
send(fmt.Sprintf("deldata: %s is not an ID", id), ud.Message.Chat.ID, false) send(fmt.Sprintf("*deldata:* %s is not an ID", id), ud.Message.Chat.ID, false)
return return
} }
name, err := Client.DeleteTorrent(num, true) name, err := Client.DeleteTorrent(num, true)
if err != nil { if err != nil {
send("deldata: "+err.Error(), ud.Message.Chat.ID, false) send("*deldata:* "+err.Error(), ud.Message.Chat.ID, false)
return return
} }