mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
43 lines
705 B
Go
43 lines
705 B
Go
package utils
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/cloudsonic/sonic-server/conf"
|
|
)
|
|
|
|
func NoArticle(name string) string {
|
|
articles := strings.Split(conf.Sonic.IgnoredArticles, " ")
|
|
for _, a := range articles {
|
|
n := strings.TrimPrefix(name, a+" ")
|
|
if n != name {
|
|
return n
|
|
}
|
|
}
|
|
return name
|
|
}
|
|
|
|
func LongestCommonPrefix(list []string) string {
|
|
if len(list) == 0 {
|
|
return ""
|
|
}
|
|
|
|
for l := 0; l < len(list[0]); l++ {
|
|
c := list[0][l]
|
|
for i := 1; i < len(list); i++ {
|
|
if l >= len(list[i]) || list[i][l] != c {
|
|
return list[i][0:l]
|
|
}
|
|
}
|
|
}
|
|
return list[0]
|
|
}
|
|
|
|
func StringInSlice(a string, list []string) bool {
|
|
for _, b := range list {
|
|
if b == a {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|