providers

package
v0.0.0-...-29a3764 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 4, 2020 License: GPL-3.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// SortMovies ...
	SortMovies = iota
	// SortShows ...
	SortShows
)
View Source
const (
	// SortBySeeders ...
	SortBySeeders = iota
	// SortByResolution ...
	SortByResolution
	// SortBalanced ...
	SortBalanced
	// SortBySize ...
	SortBySize
)
View Source
const (
	// Sort1080p720p480p ...
	Sort1080p720p480p = iota
	// Sort720p1080p480p ...
	Sort720p1080p480p
	// Sort720p480p1080p ...
	Sort720p480p1080p
	// Sort480p720p1080p ...
	Sort480p720p1080p
)

Variables

This section is empty.

Functions

func Balanced

func Balanced(t *bittorrent.TorrentFile) float64

Balanced ...

func CallbackHandler

func CallbackHandler(ctx *gin.Context)

CallbackHandler ...

func GetCallback

func GetCallback() (string, chan []byte)

GetCallback ...

func NormalizeTitle

func NormalizeTitle(title string) string

NormalizeTitle ...

func QualityFactor

func QualityFactor(t *bittorrent.TorrentFile) float64

QualityFactor ...

func RemoveCallback

func RemoveCallback(cid string)

RemoveCallback ...

func RemoveTrailingApostrophe

func RemoveTrailingApostrophe(str string) string

RemoveTrailingApostrophe ...

func RemoveTrailingApostrophes

func RemoveTrailingApostrophes(str string) string

RemoveTrailingApostrophes ...

func Resolution720p1080p

func Resolution720p1080p(t *bittorrent.TorrentFile) int

Resolution720p1080p ...

func Resolution720p480p

func Resolution720p480p(t *bittorrent.TorrentFile) int

Resolution720p480p ...

func RomanizeHepburn

func RomanizeHepburn(str string) string

RomanizeHepburn ... as per http://en.wikipedia.org/wiki/Hepburn_romanization#Variations

func Search(searchers []Searcher, query string) []*bittorrent.TorrentFile

Search ...

func SearchEpisode

func SearchEpisode(searchers []EpisodeSearcher, show *tmdb.Show, episode *tmdb.Episode) []*bittorrent.TorrentFile

SearchEpisode ...

func SearchMovie

func SearchMovie(searchers []MovieSearcher, movie *tmdb.Movie) []*bittorrent.TorrentFile

SearchMovie ...

func SearchMovieSilent

func SearchMovieSilent(searchers []MovieSearcher, movie *tmdb.Movie, withAuth bool) []*bittorrent.TorrentFile

SearchMovieSilent ...

func SearchSeason

func SearchSeason(searchers []SeasonSearcher, show *tmdb.Show, season *tmdb.Season) []*bittorrent.TorrentFile

SearchSeason ...

Types

type AddonSearcher

type AddonSearcher struct {
	MovieSearcher
	SeasonSearcher
	EpisodeSearcher
	// contains filtered or unexported fields
}

AddonSearcher ...

func NewAddonSearcher

func NewAddonSearcher(addonID string) *AddonSearcher

NewAddonSearcher ...

func (*AddonSearcher) GetEpisodeSearchObject

func (as *AddonSearcher) GetEpisodeSearchObject(show *tmdb.Show, episode *tmdb.Episode) *EpisodeSearchObject

GetEpisodeSearchObject ...

func (*AddonSearcher) GetMovieSearchObject

func (as *AddonSearcher) GetMovieSearchObject(movie *tmdb.Movie) *MovieSearchObject

GetMovieSearchObject ...

func (*AddonSearcher) GetMovieSearchSilentObject

func (as *AddonSearcher) GetMovieSearchSilentObject(movie *tmdb.Movie, withAuth bool) *MovieSearchObject

GetMovieSearchSilentObject ...

func (*AddonSearcher) GetQuerySearchObject

func (as *AddonSearcher) GetQuerySearchObject(query string) *QuerySearchObject

GetQuerySearchObject ...

func (*AddonSearcher) GetSeasonSearchObject

func (as *AddonSearcher) GetSeasonSearchObject(show *tmdb.Show, season *tmdb.Season) *SeasonSearchObject

GetSeasonSearchObject ...

func (as *AddonSearcher) SearchEpisodeLinks(show *tmdb.Show, episode *tmdb.Episode) []*bittorrent.TorrentFile

SearchEpisodeLinks ...

func (as *AddonSearcher) SearchLinks(query string) []*bittorrent.TorrentFile

SearchLinks ...

func (as *AddonSearcher) SearchMovieLinks(movie *tmdb.Movie) []*bittorrent.TorrentFile

SearchMovieLinks ...

func (*AddonSearcher) SearchMovieLinksSilent

func (as *AddonSearcher) SearchMovieLinksSilent(movie *tmdb.Movie, withAuth bool) []*bittorrent.TorrentFile

SearchMovieLinksSilent ...

func (as *AddonSearcher) SearchSeasonLinks(show *tmdb.Show, season *tmdb.Season) []*bittorrent.TorrentFile

SearchSeasonLinks ...

type ByQuality

type ByQuality []*bittorrent.TorrentFile

ByQuality ...

func (ByQuality) Len

func (a ByQuality) Len() int

func (ByQuality) Less

func (a ByQuality) Less(i, j int) bool

func (ByQuality) Swap

func (a ByQuality) Swap(i, j int)

type ByResolution

type ByResolution []*bittorrent.TorrentFile

ByResolution ...

func (ByResolution) Len

func (a ByResolution) Len() int

func (ByResolution) Less

func (a ByResolution) Less(i, j int) bool

func (ByResolution) Swap

func (a ByResolution) Swap(i, j int)

type BySeeds

type BySeeds []*bittorrent.TorrentFile

BySeeds ...

func (BySeeds) Len

func (a BySeeds) Len() int

func (BySeeds) Less

func (a BySeeds) Less(i, j int) bool

func (BySeeds) Swap

func (a BySeeds) Swap(i, j int)

type EpisodeSearchObject

type EpisodeSearchObject struct {
	GeneralSearchObject
	IMDBId         string            `json:"imdb_id"`
	TVDBId         int               `json:"tvdb_id"`
	TMDBId         int               `json:"tmdb_id"`
	ShowTMDBId     int               `json:"show_tmdb_id"`
	Title          string            `json:"title"`
	Season         int               `json:"season"`
	Episode        int               `json:"episode"`
	Year           int               `json:"year"`
	Titles         map[string]string `json:"titles"`
	AbsoluteNumber int               `json:"absolute_number"`
}

EpisodeSearchObject ...

type EpisodeSearcher

type EpisodeSearcher interface {
	SearchEpisodeLinks(show *tmdb.Show, episode *tmdb.Episode) []*bittorrent.TorrentFile
}

EpisodeSearcher ...

func GetEpisodeSearchers

func GetEpisodeSearchers() []EpisodeSearcher

GetEpisodeSearchers ...

type GeneralSearchObject

type GeneralSearchObject struct {
	ProxyURL         string `json:"proxy_url"`
	InternalProxyURL string `json:"internal_proxy_url"`

	Silent   bool `json:"silent"`
	SkipAuth bool `json:"skip_auth"`
	// contains filtered or unexported fields
}

GeneralSearchObject ...

type MovieSearchObject

type MovieSearchObject struct {
	GeneralSearchObject
	IMDBId string            `json:"imdb_id"`
	TMDBId int               `json:"tmdb_id"`
	Title  string            `json:"title"`
	Year   int               `json:"year"`
	Years  map[string]int    `json:"years"`
	Titles map[string]string `json:"titles"`
}

MovieSearchObject ...

type MovieSearcher

type MovieSearcher interface {
	SearchMovieLinks(movie *tmdb.Movie) []*bittorrent.TorrentFile
	SearchMovieLinksSilent(movie *tmdb.Movie, withAuth bool) []*bittorrent.TorrentFile
}

MovieSearcher ...

func GetMovieSearchers

func GetMovieSearchers() []MovieSearcher

GetMovieSearchers ...

type MultiSorter

type MultiSorter struct {
	// contains filtered or unexported fields
}

MultiSorter ...

func SortBy

func SortBy(less ...lessFunc) *MultiSorter

SortBy ...

func (*MultiSorter) Len

func (ms *MultiSorter) Len() int

func (*MultiSorter) Less

func (ms *MultiSorter) Less(i, j int) bool

func (*MultiSorter) Sort

func (ms *MultiSorter) Sort(torrents []*bittorrent.TorrentFile)

Sort ...

func (*MultiSorter) Swap

func (ms *MultiSorter) Swap(i, j int)

type QuerySearchObject

type QuerySearchObject struct {
	GeneralSearchObject
	Query string `json:"query"`
}

QuerySearchObject ...

type SearchPayload

type SearchPayload struct {
	Method       string      `json:"method"`
	CallbackURL  string      `json:"callback_url"`
	SearchObject interface{} `json:"search_object"`
}

SearchPayload ...

func (*SearchPayload) String

func (sp *SearchPayload) String() string

type Searcher

type Searcher interface {
	SearchLinks(query string) []*bittorrent.TorrentFile
}

Searcher ...

func GetSearchers

func GetSearchers() []Searcher

GetSearchers ...

type SeasonSearchObject

type SeasonSearchObject struct {
	GeneralSearchObject
	IMDBId     string            `json:"imdb_id"`
	TVDBId     int               `json:"tvdb_id"`
	TMDBId     int               `json:"tmdb_id"`
	ShowTMDBId int               `json:"show_tmdb_id"`
	Title      string            `json:"title"`
	Season     int               `json:"season"`
	Year       int               `json:"year"`
	Titles     map[string]string `json:"titles"`
}

SeasonSearchObject ...

type SeasonSearcher

type SeasonSearcher interface {
	SearchSeasonLinks(show *tmdb.Show, season *tmdb.Season) []*bittorrent.TorrentFile
}

SeasonSearcher ...

func GetSeasonSearchers

func GetSeasonSearchers() []SeasonSearcher

GetSeasonSearchers ...

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL