mirror of
https://git.um-react.app/um/cli.git
synced 2025-11-28 03:33:02 +00:00
68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
package common
|
|
|
|
import (
|
|
"io"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"go.uber.org/zap"
|
|
"unlock-music.dev/cli/internal/utils"
|
|
)
|
|
|
|
type QMCKeys map[string]string
|
|
|
|
type CryptoParams struct {
|
|
// KuGou kgg database path
|
|
KggDbPath string
|
|
|
|
// QMC Crypto config
|
|
QmcKeys QMCKeys
|
|
}
|
|
|
|
func (k QMCKeys) Get(key string) (string, bool) {
|
|
value, ok := k[utils.NormalizeUnicode(key)]
|
|
return value, ok
|
|
}
|
|
|
|
type DecoderParams struct {
|
|
Reader io.ReadSeeker // required
|
|
Extension string // required, source extension, eg. ".mp3"
|
|
|
|
FilePath string // optional, source file path
|
|
|
|
Logger *zap.Logger // required
|
|
|
|
CryptoParams CryptoParams
|
|
}
|
|
type NewDecoderFunc func(p *DecoderParams) Decoder
|
|
|
|
type DecoderFactory struct {
|
|
noop bool
|
|
Suffix string
|
|
Create NewDecoderFunc
|
|
}
|
|
|
|
var DecoderRegistry []DecoderFactory
|
|
|
|
func RegisterDecoder(ext string, noop bool, dispatchFunc NewDecoderFunc) {
|
|
DecoderRegistry = append(DecoderRegistry,
|
|
DecoderFactory{noop: noop, Create: dispatchFunc, Suffix: "." + strings.TrimPrefix(ext, ".")})
|
|
}
|
|
|
|
func GetDecoder(filename string, skipNoop bool) []DecoderFactory {
|
|
var result []DecoderFactory
|
|
// Some extensions contains multiple dots, e.g. ".kgm.flac", hence iterate
|
|
// all decoders for each extension.
|
|
name := strings.ToLower(filepath.Base(filename))
|
|
for _, dec := range DecoderRegistry {
|
|
if !strings.HasSuffix(name, dec.Suffix) {
|
|
continue
|
|
}
|
|
if skipNoop && dec.noop {
|
|
continue
|
|
}
|
|
result = append(result, dec)
|
|
}
|
|
return result
|
|
}
|