go-torrent-helper/qubes/main.go

60 lines
1.4 KiB
Go
Raw Normal View History

2023-06-24 04:33:24 +02:00
package qubes
import (
"log"
2023-07-17 04:28:25 +02:00
"regexp"
"strings"
2023-06-24 04:33:24 +02:00
"github.com/hekmon/transmissionrpc"
2023-07-17 04:28:25 +02:00
"tildegit.org/hyperreal/go-torrent-helper/common"
2023-06-24 04:33:24 +02:00
)
type Qubes struct {
NameSubstr string
Relver string
URL string
}
func (q Qubes) AddNewTorrents(transmissionbt *transmissionrpc.Client) error {
// Set torrentURLs for Qubes OS
2023-07-17 04:28:25 +02:00
q.URL = "https://mirrors.edge.kernel.org/qubes/iso/Qubes/iso/"
dataInBytes, err := common.GetResponse(q.URL)
2023-06-24 04:33:24 +02:00
if err != nil {
return err
}
2023-07-17 04:28:25 +02:00
bodyText := string(dataInBytes)
// Extract torrent URLs from web page contents
var torrentURLs []string
re := regexp.MustCompile(`(http|ftp|https):\/\/([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:\/~+#-]*[\w@?^=%&\/~+#-])`)
match := re.FindAllString(bodyText, 1000)
for _, v := range match {
if strings.Contains(v, ".torrent") && strings.Contains(v, q.Relver) {
torrentURLs = append(torrentURLs, v)
}
}
// Add torrents to Transmission instance
for _, torrentURL := range torrentURLs {
torrent, err := transmissionbt.TorrentAdd(&transmissionrpc.TorrentAddPayload{
Filename: &torrentURL,
})
if err != nil {
return err
}
log.Printf("%s added\n", *torrent.Name)
}
2023-06-24 04:33:24 +02:00
return nil
}
func (q Qubes) RemoveOldTorrents(transmissionbt *transmissionrpc.Client) error {
if err := common.RemoveTorrents(q.NameSubstr, q.Relver, transmissionbt); err != nil {
return err
}
return nil
}