mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Some refactoring
This commit is contained in:
parent
1c47b7b8ef
commit
1a4f783669
4 changed files with 19 additions and 24 deletions
|
@ -1,23 +1,7 @@
|
||||||
package models
|
package models
|
||||||
|
|
||||||
import (
|
|
||||||
"strings"
|
|
||||||
"github.com/astaxie/beego"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Artist struct {
|
type Artist struct {
|
||||||
Id string
|
Id string
|
||||||
Name string
|
Name string
|
||||||
Albums map[string]bool
|
Albums map[string]bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func NoArticle(name string) string {
|
|
||||||
articles := strings.Split(beego.AppConfig.String("ignoredArticles"), " ")
|
|
||||||
for _, a := range articles {
|
|
||||||
n := strings.TrimPrefix(name, a + " ")
|
|
||||||
if (n != name) {
|
|
||||||
return n
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return name
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
package models
|
|
||||||
|
|
||||||
import "testing"
|
|
||||||
|
|
||||||
func TestEmpty(t *testing.T) {
|
|
||||||
|
|
||||||
}
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"github.com/deluan/gosonic/repositories"
|
"github.com/deluan/gosonic/repositories"
|
||||||
"github.com/deluan/gosonic/models"
|
"github.com/deluan/gosonic/models"
|
||||||
"strings"
|
"strings"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Scanner interface {
|
type Scanner interface {
|
||||||
|
@ -92,7 +93,7 @@ func persist(mfRepo *repositories.MediaFile, mf *models.MediaFile, albumRepo *re
|
||||||
|
|
||||||
func collectIndex(a *models.Artist, artistIndex map[string]tempIndex) {
|
func collectIndex(a *models.Artist, artistIndex map[string]tempIndex) {
|
||||||
name := a.Name
|
name := a.Name
|
||||||
indexName := strings.ToLower(models.NoArticle(name))
|
indexName := strings.ToLower(utils.NoArticle(name))
|
||||||
if indexName == "" {
|
if indexName == "" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
17
utils/strings.go
Normal file
17
utils/strings.go
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
"github.com/astaxie/beego"
|
||||||
|
)
|
||||||
|
|
||||||
|
func NoArticle(name string) string {
|
||||||
|
articles := strings.Split(beego.AppConfig.String("ignoredArticles"), " ")
|
||||||
|
for _, a := range articles {
|
||||||
|
n := strings.TrimPrefix(name, a + " ")
|
||||||
|
if (n != name) {
|
||||||
|
return n
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return name
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue