1
0
mirror of https://github.com/thebaer/cdr.git synced 2024-11-14 17:21:01 +00:00
cdr/sanitize.go

71 lines
1.6 KiB
Go
Raw Permalink Normal View History

2020-02-26 01:54:12 +00:00
package cdr
import (
"fmt"
"log"
"os"
"regexp"
"strings"
"unicode"
"github.com/dhowden/tag"
"github.com/rainycape/unidecode"
2020-02-26 01:54:12 +00:00
)
var trackNameReg = regexp.MustCompile("^([0-9]{2}).+")
func NewTrack(file string) (*Track, error) {
2020-02-26 01:54:12 +00:00
f, err := os.Open(file)
if err != nil {
return nil, fmt.Errorf("error loading file: %v", err)
2020-02-26 01:54:12 +00:00
}
defer f.Close()
m, err := tag.ReadFrom(f)
if err != nil {
return nil, fmt.Errorf("unable to read file: %v", err)
}
return &Track{
Title: m.Title(),
Artist: m.Artist(),
Filename: f.Name(),
2020-02-26 05:28:15 +00:00
}, nil
}
// RenameTrack takes a filename, opens it, reads the metadata, and returns both
// the old and new filename.
func RenameTrack(file string) string {
t, err := NewTrack(file)
if err != nil {
return ""
}
ext := t.Filename[strings.LastIndex(t.Filename, "."):]
// Extract playlist track number from filename
fMatch := trackNameReg.FindStringSubmatch(t.Filename)
2020-02-26 01:54:12 +00:00
if len(fMatch) < 2 {
log.Printf("No track number found: '%s'. Continuing anyway.\n", t.Filename)
return fmt.Sprintf("%s-%s%s", Sanitize(t.Artist), Sanitize(t.Title), ext)
2020-02-26 01:54:12 +00:00
}
trackNum := fMatch[1]
return fmt.Sprintf("%s-%s-%s%s", trackNum, Sanitize(t.Artist), Sanitize(t.Title), ext)
2020-02-26 01:54:12 +00:00
}
// Sanitize takes a string and removes problematic characters from it.
func Sanitize(s string) string {
2020-02-29 18:28:19 +00:00
s = unidecode.Unidecode(s)
2020-02-26 01:54:12 +00:00
s = strings.Map(func(r rune) rune {
2020-02-29 18:28:19 +00:00
if r == '(' || r == ')' || r == '[' || r == ']' || r == '.' || r == ',' || r == '\'' || r == '"' || r == ';' {
2020-02-26 01:54:12 +00:00
return -1
}
if unicode.IsSpace(r) {
return '_'
}
return r
}, s)
return s
}