Documentation
¶
Index ¶
- Variables
- func NewIbitClient(opts IbitClientOptions, cache Cache, logger *zap.Logger, logFoundTorrents bool) *ibitClient
- func NewLeetxClient(opts LeetxClientOptions, cache Cache, metaGetter MetaGetter, ...) *leetxClient
- func NewRARBGclient(opts RARBGclientOptions, cache Cache, logger *zap.Logger, ...) *rarbgClient
- func NewTPBclient(opts TPBclientOptions, cache Cache, metaGetter MetaGetter, logger *zap.Logger, ...) (*tpbClient, error)
- func NewYTSclient(opts YTSclientOptions, cache Cache, logger *zap.Logger, logFoundTorrents bool) *ytsClient
- type Cache
- type CacheItem
- type Client
- type IbitClientOptions
- type InMemoryCache
- type LeetxClientOptions
- type MagnetSearcher
- type Meta
- type MetaGetter
- type RARBGclientOptions
- type Result
- type TPBclientOptions
- type YTSclientOptions
Constants ¶
This section is empty.
Variables ¶
var DefaultIbitClientOpts = IbitClientOptions{ BaseURL: "https://ibit.am", Timeout: 5 * time.Second, CacheAge: 24 * time.Hour, }
var DefaultLeetxClientOpts = LeetxClientOptions{ BaseURL: "https://1337x.to", Timeout: 5 * time.Second, CacheAge: 24 * time.Hour, }
var DefaultRARBGclientOpts = RARBGclientOptions{ BaseURL: "https://torrentapi.org", Timeout: 5 * time.Second, CacheAge: 24 * time.Hour, }
var DefaultTPBclientOpts = TPBclientOptions{ BaseURL: "https://apibay.org", Timeout: 5 * time.Second, CacheAge: 24 * time.Hour, }
var DefaultYTSclientOpts = YTSclientOptions{ BaseURL: "https://yts.mx", Timeout: 5 * time.Second, CacheAge: 24 * time.Hour, }
Functions ¶
func NewIbitClient ¶
func NewIbitClient(opts IbitClientOptions, cache Cache, logger *zap.Logger, logFoundTorrents bool) *ibitClient
func NewLeetxClient ¶
func NewLeetxClient(opts LeetxClientOptions, cache Cache, metaGetter MetaGetter, logger *zap.Logger, logFoundTorrents bool) *leetxClient
func NewRARBGclient ¶
func NewRARBGclient(opts RARBGclientOptions, cache Cache, logger *zap.Logger, logFoundTorrents bool) *rarbgClient
func NewTPBclient ¶
func NewTPBclient(opts TPBclientOptions, cache Cache, metaGetter MetaGetter, logger *zap.Logger, logFoundTorrents bool) (*tpbClient, error)
func NewYTSclient ¶
func NewYTSclient(opts YTSclientOptions, cache Cache, logger *zap.Logger, logFoundTorrents bool) *ytsClient
Types ¶
type Cache ¶
type Cache interface { Set(key string, results []Result) error Get(key string) ([]Result, time.Time, bool, error) }
Cache is the interface that the imdb2torrent clients use for caching results. A package user must pass an implementation of this interface. Usually you create a simple wrapper around an existing cache package. An example implementation is the InMemoryCache in this package.
type CacheItem ¶
CacheItem combines Result objects and a creation time in a single struct. This can be useful for implementing the Cache interface, but is not necessarily required. See the InMemoryCache example implementation of the Cache interface for its usage.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) FindMovie ¶
FindMovie tries to find magnet URLs for the movie identified by the given IMDb ID. It only returns 720p, 1080p, 1080p 10bit, 2160p and 2160p 10bit videos. It caches results once they're found. It can return an empty slice and no error if no actual error occurred (for example if torrents where found but no >=720p videos).
func (*Client) FindTVShow ¶
func (c *Client) FindTVShow(ctx context.Context, imdbID string, season, episode int) ([]Result, error)
FindTVShow tries to find magnet URLs for the TV show identified by the given IMDb ID + season + episode. It only returns 720p, 1080p, 1080p 10bit, 2160p and 2160p 10bit videos. It caches results once they're found. It can return an empty slice and no error if no actual error occurred (for example if torrents where found but no >=720p videos).
func (*Client) GetMagnetSearchers ¶
func (c *Client) GetMagnetSearchers() map[string]MagnetSearcher
type IbitClientOptions ¶
func NewIbitClientOpts ¶
func NewIbitClientOpts(baseURL string, timeout, cacheAge time.Duration) IbitClientOptions
type InMemoryCache ¶
type InMemoryCache struct {
// contains filtered or unexported fields
}
InMemoryCache is an example implementation of the Cache interface. It doesn't persist its data, so it's not suited for production use of the imdb2torrent package.
func NewInMemoryCache ¶
func NewInMemoryCache() *InMemoryCache
NewInMemoryCache creates a new InMemoryCache.
type LeetxClientOptions ¶
func NewLeetxClientOpts ¶
func NewLeetxClientOpts(baseURL string, timeout, cacheAge time.Duration) LeetxClientOptions
type MagnetSearcher ¶
type MetaGetter ¶
type RARBGclientOptions ¶
func NewRARBGclientOpts ¶
func NewRARBGclientOpts(baseURL string, timeout, cacheAge time.Duration) RARBGclientOptions
type TPBclientOptions ¶
type TPBclientOptions struct { BaseURL string SocksProxyAddr string Timeout time.Duration CacheAge time.Duration }
func NewTPBclientOpts ¶
func NewTPBclientOpts(baseURL, socksProxyAddr string, timeout, cacheAge time.Duration) TPBclientOptions
type YTSclientOptions ¶
func NewYTSclientOpts ¶
func NewYTSclientOpts(baseURL string, timeout, cacheAge time.Duration) YTSclientOptions