Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/util/feeds/convert.go

26 lignes
461 o
Go
Brut Vue normale Historique

2017-06-15 21:54:06 +02:00
package nyaafeeds
import (
"strings"
)
// ConvertToCat : Convert a torznab cat to our cat
func ConvertToCat(cat string) (string, string) {
c := strings.Split(cat, "0000")
if len(c) < 2 {
return cat, ""
}
return c[0], c[1]
}
// ConvertFromCat : Convert a cat to a torznab cat
func ConvertFromCat(category string) (cat string) {
c := strings.Split(category, "_")
if len(c) < 2 {
cat = c[0] + "0000"
return
}
cat = c[0] + "0000" + c[1]
return
}