mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-04 11:33:15 -05:00
73 lines
1.5 KiB
Go
73 lines
1.5 KiB
Go
package src
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"golang.org/x/text/language"
|
|
)
|
|
|
|
var separator = regexp.MustCompile(`[\s.]+`)
|
|
|
|
func (mi *MediaInfo) SearchExternalSubtitles() error {
|
|
base_path := strings.TrimSuffix(mi.Path, filepath.Ext(mi.Path))
|
|
dir, err := os.ReadDir(filepath.Dir(mi.Path))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
outer:
|
|
for _, entry := range dir {
|
|
match := filepath.Join(filepath.Dir(mi.Path), entry.Name())
|
|
if entry.IsDir() || !strings.HasPrefix(match, base_path) {
|
|
continue
|
|
}
|
|
|
|
for codec, ext := range SubtitleExtensions {
|
|
if strings.HasSuffix(match, ext) {
|
|
link := fmt.Sprintf(
|
|
"%s/%s/direct/%s",
|
|
Settings.RoutePrefix,
|
|
base64.RawURLEncoding.EncodeToString([]byte(match)),
|
|
filepath.Base(match),
|
|
)
|
|
sub := Subtitle{
|
|
Index: nil,
|
|
Codec: codec,
|
|
Extension: &ext,
|
|
IsExternal: true,
|
|
Path: &match,
|
|
Link: &link,
|
|
}
|
|
flags := separator.Split(match[len(base_path):], -1)
|
|
// remove extension from flags
|
|
flags = flags[:len(flags)-1]
|
|
|
|
for _, flag := range flags {
|
|
switch strings.ToLower(flag) {
|
|
case "default":
|
|
sub.IsDefault = true
|
|
case "forced":
|
|
sub.IsForced = true
|
|
default:
|
|
lang, err := language.Parse(flag)
|
|
if err == nil && lang != language.Und {
|
|
lang := lang.String()
|
|
sub.Language = &lang
|
|
} else {
|
|
sub.Title = &flag
|
|
}
|
|
}
|
|
}
|
|
mi.Subtitles = append(mi.Subtitles, sub)
|
|
continue outer
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|