This repository has been archived by the owner on Dec 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathreadarr.go
138 lines (105 loc) · 3.11 KB
/
readarr.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
135
136
137
138
package processor
import (
"context"
"strings"
"time"
"github.com/autobrr/omegabrr/internal/domain"
"github.com/autobrr/omegabrr/pkg/autobrr"
"github.com/pkg/errors"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"golift.io/starr"
"golift.io/starr/readarr"
)
func (s Service) readarr(ctx context.Context, cfg *domain.ArrConfig, dryRun bool, brr *autobrr.Client) error {
l := log.With().Str("type", "readarr").Str("client", cfg.Name).Logger()
l.Debug().Msgf("gathering titles...")
titles, err := s.processReadarr(ctx, cfg, &l)
if err != nil {
return err
}
l.Debug().Msgf("got %v filter titles", len(titles))
joinedTitles := strings.Join(titles, ",")
l.Trace().Msgf("%v", joinedTitles)
if len(joinedTitles) == 0 {
return nil
}
for _, filterID := range cfg.Filters {
l.Debug().Msgf("updating filter: %v", filterID)
if !dryRun {
f := autobrr.UpdateFilter{MatchReleases: joinedTitles}
if !dryRun {
if err := brr.UpdateFilterByID(ctx, filterID, f); err != nil {
l.Error().Err(err).Msgf("error updating filter: %v", filterID)
return errors.Wrapf(err, "error updating filter: %v", filterID)
}
}
}
l.Debug().Msgf("successfully updated filter: %v", filterID)
}
return nil
}
func (s Service) processReadarr(ctx context.Context, cfg *domain.ArrConfig, logger *zerolog.Logger) ([]string, error) {
c := starr.New(cfg.Apikey, cfg.Host, 60*time.Second)
if cfg.BasicAuth != nil {
if cfg.BasicAuth.User != "" {
c.HTTPUser = cfg.BasicAuth.User
}
if cfg.BasicAuth.Pass != "" {
c.HTTPPass = cfg.BasicAuth.Pass
}
}
r := readarr.New(c)
// I did not find support for tags here.
//
// var tags []*starr.Tag
// if len(cfg.TagsExclude) > 0 || len(cfg.TagsInclude) > 0 {
// t, err := r.GetTagsContext(ctx)
// if err != nil {
// logger.Debug().Msg("could not get tags")
// }
// tags = t
// }
ebooks, err := r.GetBookContext(ctx, "")
if err != nil {
return nil, err
}
logger.Debug().Msgf("found %d ebooks to process", len(ebooks))
var titles []string
var monitoredTitles int
for _, ebook := range ebooks {
m := ebook
// only want monitored
if !m.Monitored {
continue
}
// I did not find support for tags here
//
// if len(cfg.TagsInclude) > 0 {
// if len(m.Tags) == 0 {
// continue
// }
// if !containsTag(tags, m.Tags, cfg.TagsInclude) {
// continue
// }
// }
//
// if len(cfg.TagsExclude) > 0 {
// if containsTag(tags, m.Tags, cfg.TagsExclude) {
// continue
// }
// }
// increment monitored titles
monitoredTitles++
//titles = append(titles, rls.MustNormalize(m.Title))
//titles = append(titles, rls.MustNormalize(m.OriginalTitle))
//titles = append(titles, rls.MustClean(m.Title))
titles = append(titles, processTitle(m.Title, cfg.MatchRelease)...)
// titles = append(titles, processTitle(m.OriginalTitle)...)
//for _, title := range m.AlternateTitles {
// titles = append(titles, processTitle(title.Title)...)
//}
}
logger.Debug().Msgf("from a total of %d ebooks we found %d monitored and created %d release titles", len(ebooks), monitoredTitles, len(titles))
return titles, nil
}