mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 08:19:12 +00:00
143 lines
4.1 KiB
Go
143 lines
4.1 KiB
Go
// Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
package action
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"encoding/base64"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/autobrr/autobrr/internal/domain"
|
|
"github.com/autobrr/autobrr/pkg/errors"
|
|
"github.com/autobrr/autobrr/pkg/porla"
|
|
|
|
"github.com/dcarbone/zadapters/zstdlog"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
func (s *service) porla(ctx context.Context, action *domain.Action, release domain.Release) ([]string, error) {
|
|
s.log.Debug().Msgf("action Porla: %s", action.Name)
|
|
|
|
client, err := s.clientSvc.FindByID(ctx, action.ClientID)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error finding client: %d", action.ClientID)
|
|
}
|
|
|
|
if client == nil {
|
|
return nil, errors.New("could not find client by id: %d", action.ClientID)
|
|
}
|
|
|
|
porlaSettings := porla.Config{
|
|
Hostname: client.Host,
|
|
AuthToken: client.Settings.APIKey,
|
|
TLSSkipVerify: client.TLSSkipVerify,
|
|
BasicUser: client.Settings.Basic.Username,
|
|
BasicPass: client.Settings.Basic.Password,
|
|
}
|
|
|
|
porlaSettings.Log = zstdlog.NewStdLoggerWithLevel(s.log.With().Str("type", "Porla").Str("client", client.Name).Logger(), zerolog.TraceLevel)
|
|
|
|
prl := porla.NewClient(porlaSettings)
|
|
|
|
rejections, err := s.porlaCheckRulesCanDownload(ctx, action, client, prl)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error checking Porla client rules: %s", action.Name)
|
|
}
|
|
|
|
if len(rejections) > 0 {
|
|
return rejections, nil
|
|
}
|
|
|
|
if release.HasMagnetUri() {
|
|
opts := &porla.TorrentsAddReq{
|
|
DownloadLimit: -1,
|
|
UploadLimit: -1,
|
|
SavePath: action.SavePath,
|
|
MagnetUri: release.MagnetURI,
|
|
}
|
|
|
|
if action.LimitDownloadSpeed > 0 {
|
|
opts.DownloadLimit = action.LimitDownloadSpeed * 1000
|
|
}
|
|
|
|
if action.LimitUploadSpeed > 0 {
|
|
opts.UploadLimit = action.LimitUploadSpeed * 1000
|
|
}
|
|
|
|
if err = prl.TorrentsAdd(ctx, opts); err != nil {
|
|
return nil, errors.Wrap(err, "could not add torrent from magnet %s to client: %s", release.MagnetURI, client.Name)
|
|
}
|
|
|
|
s.log.Info().Msgf("torrent with hash %s successfully added to client: '%s'", release.TorrentHash, client.Name)
|
|
|
|
return nil, nil
|
|
} else {
|
|
if release.TorrentTmpFile == "" {
|
|
if err := release.DownloadTorrentFileCtx(ctx); err != nil {
|
|
return nil, errors.Wrap(err, "error downloading torrent file for release: %s", release.TorrentName)
|
|
}
|
|
}
|
|
|
|
file, err := os.Open(release.TorrentTmpFile)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error opening file %s", release.TorrentTmpFile)
|
|
}
|
|
defer file.Close()
|
|
|
|
reader := bufio.NewReader(file)
|
|
content, err := io.ReadAll(reader)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to read file: %s", release.TorrentTmpFile)
|
|
}
|
|
|
|
opts := &porla.TorrentsAddReq{
|
|
DownloadLimit: -1,
|
|
SavePath: action.SavePath,
|
|
Ti: base64.StdEncoding.EncodeToString(content),
|
|
UploadLimit: -1,
|
|
}
|
|
|
|
if action.LimitDownloadSpeed > 0 {
|
|
opts.DownloadLimit = action.LimitDownloadSpeed * 1000
|
|
}
|
|
|
|
if action.LimitUploadSpeed > 0 {
|
|
opts.UploadLimit = action.LimitUploadSpeed * 1000
|
|
}
|
|
|
|
if err = prl.TorrentsAdd(ctx, opts); err != nil {
|
|
return nil, errors.Wrap(err, "could not add torrent %s to client: %s", release.TorrentTmpFile, client.Name)
|
|
}
|
|
|
|
s.log.Info().Msgf("torrent with hash %s successfully added to client: '%s'", release.TorrentHash, client.Name)
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
func (s *service) porlaCheckRulesCanDownload(ctx context.Context, action *domain.Action, client *domain.DownloadClient, prla *porla.Client) ([]string, error) {
|
|
s.log.Trace().Msgf("action Porla: %s check rules", action.Name)
|
|
|
|
// check for active downloads and other rules
|
|
if client.Settings.Rules.Enabled && !action.IgnoreRules {
|
|
torrents, err := prla.TorrentsList(ctx, &porla.TorrentsListFilters{Query: "is:downloading and not is:paused"})
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not fetch active downloads")
|
|
}
|
|
|
|
if client.Settings.Rules.MaxActiveDownloads > 0 {
|
|
if len(torrents.Torrents) >= client.Settings.Rules.MaxActiveDownloads {
|
|
rejection := "max active downloads reached, skipping"
|
|
|
|
s.log.Debug().Msg(rejection)
|
|
|
|
return []string{rejection}, nil
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil, nil
|
|
}
|