- Add Proxy for each debrid - Add support for multiple-API keys - Use internal http.Client for streaming - Bug fixes etc
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package utils
|
|
|
|
import (
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
VIDEOMATCH = "(?i)(\\.)(webm|m4v|3gp|nsv|ty|strm|rm|rmvb|m3u|ifo|mov|qt|divx|xvid|bivx|nrg|pva|wmv|asf|asx|ogm|ogv|m2v|avi|bin|dat|dvr-ms|mpg|mpeg|mp4|avc|vp3|svq3|nuv|viv|dv|fli|flv|wpl|img|iso|vob|mkv|mk3d|ts|wtv|m2ts)$"
|
|
MUSICMATCH = "(?i)(\\.)(mp2|mp3|m4a|m4b|m4p|ogg|oga|opus|wma|wav|wv|flac|ape|aif|aiff|aifc)$"
|
|
)
|
|
|
|
var SAMPLEMATCH = `(?i)(^|[\\/])(sample|trailer|thumb|special|extras?)s?([\s._-]|$|/)|(\(sample\))|(-\s*sample)`
|
|
|
|
func RegexMatch(regex string, value string) bool {
|
|
re := regexp.MustCompile(regex)
|
|
return re.MatchString(value)
|
|
}
|
|
|
|
func RemoveInvalidChars(value string) string {
|
|
return strings.Map(func(r rune) rune {
|
|
if r == filepath.Separator || r == ':' {
|
|
return r
|
|
}
|
|
if filepath.IsAbs(string(r)) {
|
|
return r
|
|
}
|
|
if strings.ContainsRune(filepath.VolumeName("C:"+string(r)), r) {
|
|
return r
|
|
}
|
|
if r < 32 || strings.ContainsRune(`<>:"/\|?*`, r) {
|
|
return -1
|
|
}
|
|
return r
|
|
}, value)
|
|
}
|
|
|
|
func RemoveExtension(value string) string {
|
|
re := regexp.MustCompile(VIDEOMATCH + "|" + MUSICMATCH)
|
|
|
|
// Find the last index of the matched extension
|
|
loc := re.FindStringIndex(value)
|
|
if loc != nil {
|
|
return value[:loc[0]]
|
|
} else {
|
|
return value
|
|
}
|
|
}
|
|
|
|
func IsMediaFile(path string) bool {
|
|
mediaPattern := VIDEOMATCH + "|" + MUSICMATCH
|
|
return RegexMatch(mediaPattern, path)
|
|
}
|
|
|
|
func IsSampleFile(path string) bool {
|
|
return RegexMatch(SAMPLEMATCH, path)
|
|
}
|