mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
go fmt
This commit is contained in:
parent
9d41f5a39f
commit
4843ccb46c
42 changed files with 150 additions and 160 deletions
|
@ -3,17 +3,17 @@ package api_test
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
|
_ "github.com/deluan/gosonic/conf"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
_ "github.com/deluan/gosonic/conf"
|
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
testUser = "deluan"
|
testUser = "deluan"
|
||||||
testPassword = "wordpass"
|
testPassword = "wordpass"
|
||||||
testClient = "test"
|
testClient = "test"
|
||||||
testVersion = "1.0.0"
|
testVersion = "1.0.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
func AddParams(endpoint string, params ...string) string {
|
func AddParams(endpoint string, params ...string) string {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/xml"
|
||||||
|
"fmt"
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/deluan/gosonic/api/responses"
|
||||||
"fmt"
|
|
||||||
"encoding/xml"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type BaseAPIController struct{ beego.Controller }
|
type BaseAPIController struct{ beego.Controller }
|
||||||
|
@ -16,7 +16,7 @@ func (c *BaseAPIController) NewEmpty() responses.Subsonic {
|
||||||
func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
|
func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
|
||||||
response := responses.Subsonic{Version: beego.AppConfig.String("apiVersion"), Status: "fail"}
|
response := responses.Subsonic{Version: beego.AppConfig.String("apiVersion"), Status: "fail"}
|
||||||
var msg string
|
var msg string
|
||||||
if (len(message) == 0) {
|
if len(message) == 0 {
|
||||||
msg = responses.ErrorMsg(errorCode)
|
msg = responses.ErrorMsg(errorCode)
|
||||||
} else {
|
} else {
|
||||||
msg = fmt.Sprintf(message[0].(string), message[1:len(message)]...)
|
msg = fmt.Sprintf(message[0].(string), message[1:len(message)]...)
|
||||||
|
@ -24,13 +24,15 @@ func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
|
||||||
response.Error = &responses.Error{Code: errorCode, Message: msg}
|
response.Error = &responses.Error{Code: errorCode, Message: msg}
|
||||||
|
|
||||||
xmlBody, _ := xml.Marshal(&response)
|
xmlBody, _ := xml.Marshal(&response)
|
||||||
c.CustomAbort(200, xml.Header + string(xmlBody))
|
c.CustomAbort(200, xml.Header+string(xmlBody))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *BaseAPIController) prepResponse(response responses.Subsonic) interface{} {
|
func (c *BaseAPIController) prepResponse(response responses.Subsonic) interface{} {
|
||||||
f := c.GetString("f")
|
f := c.GetString("f")
|
||||||
if f == "json" {
|
if f == "json" {
|
||||||
type jsonWrapper struct{ Subsonic responses.Subsonic `json:"subsonic-response"` }
|
type jsonWrapper struct {
|
||||||
|
Subsonic responses.Subsonic `json:"subsonic-response"`
|
||||||
|
}
|
||||||
return jsonWrapper{Subsonic: response}
|
return jsonWrapper{Subsonic: response}
|
||||||
}
|
}
|
||||||
return response
|
return response
|
||||||
|
@ -39,7 +41,9 @@ func (c *BaseAPIController) prepResponse(response responses.Subsonic) interface{
|
||||||
func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
|
func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
|
||||||
f := c.GetString("f")
|
f := c.GetString("f")
|
||||||
if f == "json" {
|
if f == "json" {
|
||||||
type jsonWrapper struct{ Subsonic responses.Subsonic `json:"subsonic-response"` }
|
type jsonWrapper struct {
|
||||||
|
Subsonic responses.Subsonic `json:"subsonic-response"`
|
||||||
|
}
|
||||||
w := &jsonWrapper{Subsonic: response}
|
w := &jsonWrapper{Subsonic: response}
|
||||||
c.Data["json"] = &w
|
c.Data["json"] = &w
|
||||||
c.ServeJSON()
|
c.ServeJSON()
|
||||||
|
@ -48,4 +52,3 @@ func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
|
||||||
c.ServeXML()
|
c.ServeXML()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,12 @@ package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
"github.com/karlkfi/inject"
|
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/deluan/gosonic/api/responses"
|
||||||
"github.com/deluan/gosonic/consts"
|
"github.com/deluan/gosonic/consts"
|
||||||
"strconv"
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
|
"github.com/karlkfi/inject"
|
||||||
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
type GetIndexesController struct {
|
type GetIndexesController struct {
|
||||||
|
@ -42,7 +42,7 @@ func (c *GetIndexesController) Get() {
|
||||||
i, _ := strconv.Atoi(ifModifiedSince)
|
i, _ := strconv.Atoi(ifModifiedSince)
|
||||||
l, _ := strconv.Atoi(res.LastModified)
|
l, _ := strconv.Atoi(res.LastModified)
|
||||||
|
|
||||||
if (l > i) {
|
if l > i {
|
||||||
indexes, err := c.repo.GetAll()
|
indexes, err := c.repo.GetAll()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
beego.Error("Error retrieving Indexes:", err)
|
beego.Error("Error retrieving Indexes:", err)
|
||||||
|
|
|
@ -3,14 +3,14 @@ package api_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/deluan/gosonic/api/responses"
|
||||||
"github.com/deluan/gosonic/consts"
|
"github.com/deluan/gosonic/consts"
|
||||||
"github.com/deluan/gosonic/tests/mocks"
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
|
"github.com/deluan/gosonic/tests"
|
||||||
|
"github.com/deluan/gosonic/tests/mocks"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -104,4 +104,4 @@ func TestGetIndexes(t *testing.T) {
|
||||||
propRepo.SetError(false)
|
propRepo.SetError(false)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@ package api_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
|
"github.com/deluan/gosonic/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"testing"
|
"testing"
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetLicense(t *testing.T) {
|
func TestGetLicense(t *testing.T) {
|
||||||
|
|
|
@ -3,8 +3,8 @@ package api
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/deluan/gosonic/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
"github.com/karlkfi/inject"
|
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/deluan/gosonic/utils"
|
||||||
|
"github.com/karlkfi/inject"
|
||||||
)
|
)
|
||||||
|
|
||||||
type GetMusicFoldersController struct {
|
type GetMusicFoldersController struct {
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/deluan/gosonic/tests"
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetMusicFolders(t *testing.T) {
|
func TestGetMusicFolders(t *testing.T) {
|
||||||
|
|
|
@ -3,9 +3,9 @@ package api_test
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/deluan/gosonic/api/responses"
|
||||||
|
"github.com/deluan/gosonic/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"testing"
|
"testing"
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestPing(t *testing.T) {
|
func TestPing(t *testing.T) {
|
||||||
|
|
|
@ -3,53 +3,52 @@ package responses
|
||||||
import "encoding/xml"
|
import "encoding/xml"
|
||||||
|
|
||||||
type Subsonic struct {
|
type Subsonic struct {
|
||||||
XMLName xml.Name `xml:"http://subsonic.org/restapi subsonic-response" json:"-"`
|
XMLName xml.Name `xml:"http://subsonic.org/restapi subsonic-response" json:"-"`
|
||||||
Status string `xml:"status,attr" json:"status"`
|
Status string `xml:"status,attr" json:"status"`
|
||||||
Version string `xml:"version,attr" json:"version"`
|
Version string `xml:"version,attr" json:"version"`
|
||||||
Error *Error `xml:",omitempty" json:"error,omitempty"`
|
Error *Error `xml:",omitempty" json:"error,omitempty"`
|
||||||
License *License `xml:",omitempty" json:"license,omitempty"`
|
License *License `xml:",omitempty" json:"license,omitempty"`
|
||||||
MusicFolders *MusicFolders `xml:",omitempty" json:"musicFolders,omitempty"`
|
MusicFolders *MusicFolders `xml:",omitempty" json:"musicFolders,omitempty"`
|
||||||
ArtistIndex *Indexes `xml:",omitempty" json:"indexes,omitempty"`
|
ArtistIndex *Indexes `xml:",omitempty" json:"indexes,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Error struct {
|
type Error struct {
|
||||||
XMLName xml.Name `xml:"error" json:"-"`
|
XMLName xml.Name `xml:"error" json:"-"`
|
||||||
Code int `xml:"code,attr"`
|
Code int `xml:"code,attr"`
|
||||||
Message string `xml:"message,attr"`
|
Message string `xml:"message,attr"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type License struct {
|
type License struct {
|
||||||
XMLName xml.Name `xml:"license" json:"-" json:"-"`
|
XMLName xml.Name `xml:"license" json:"-"`
|
||||||
Valid bool `xml:"valid,attr" json:"valid"`
|
Valid bool `xml:"valid,attr" json:"valid"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type MusicFolder struct {
|
type MusicFolder struct {
|
||||||
XMLName xml.Name `xml:"musicFolder" json:"-"`
|
XMLName xml.Name `xml:"musicFolder" json:"-"`
|
||||||
Id string `xml:"id,attr" json:"id"`
|
Id string `xml:"id,attr" json:"id"`
|
||||||
Name string `xml:"name,attr" json:"name"`
|
Name string `xml:"name,attr" json:"name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type MusicFolders struct {
|
type MusicFolders struct {
|
||||||
XMLName xml.Name `xml:"musicFolders" json:"-"`
|
XMLName xml.Name `xml:"musicFolders" json:"-"`
|
||||||
Folders []MusicFolder `xml:"musicFolders" json:"musicFolder"`
|
Folders []MusicFolder `xml:"musicFolders" json:"musicFolder"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Artist struct {
|
type Artist struct {
|
||||||
XMLName xml.Name `xml:"artist" json:"-"`
|
XMLName xml.Name `xml:"artist" json:"-"`
|
||||||
Id string `xml:"id,attr" json:"id"`
|
Id string `xml:"id,attr" json:"id"`
|
||||||
Name string `xml:"name,attr" json:"name"`
|
Name string `xml:"name,attr" json:"name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Index struct {
|
type Index struct {
|
||||||
XMLName xml.Name `xml:"index" json:"-"`
|
XMLName xml.Name `xml:"index" json:"-"`
|
||||||
Name string `xml:"name,attr" json:"name"`
|
Name string `xml:"name,attr" json:"name"`
|
||||||
Artists []Artist `xml:"index" json:"artist"`
|
Artists []Artist `xml:"index" json:"artist"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Indexes struct {
|
type Indexes struct {
|
||||||
XMLName xml.Name `xml:"indexes" json:"-"`
|
XMLName xml.Name `xml:"indexes" json:"-"`
|
||||||
Index []Index `xml:"indexes" json:"index"`
|
Index []Index `xml:"indexes" json:"index"`
|
||||||
LastModified string `xml:"lastModified,attr" json:"lastModified"`
|
LastModified string `xml:"lastModified,attr" json:"lastModified"`
|
||||||
IgnoredArticles string `xml:"ignoredArticles,attr" json:"ignoredArticles"`
|
IgnoredArticles string `xml:"ignoredArticles,attr" json:"ignoredArticles"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ package api_test
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/deluan/gosonic/api/responses"
|
||||||
|
"github.com/deluan/gosonic/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"testing"
|
"testing"
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCheckParams(t *testing.T) {
|
func TestCheckParams(t *testing.T) {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package conf
|
package conf
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
"github.com/deluan/gosonic/persistence"
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
|
"github.com/deluan/gosonic/persistence"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init () {
|
func init() {
|
||||||
utils.DefineSingleton(new(domain.ArtistIndexRepository), persistence.NewArtistIndexRepository)
|
utils.DefineSingleton(new(domain.ArtistIndexRepository), persistence.NewArtistIndexRepository)
|
||||||
utils.DefineSingleton(new(domain.PropertyRepository), persistence.NewPropertyRepository)
|
utils.DefineSingleton(new(domain.PropertyRepository), persistence.NewPropertyRepository)
|
||||||
utils.DefineSingleton(new(domain.MediaFolderRepository), persistence.NewMediaFolderRepository)
|
utils.DefineSingleton(new(domain.MediaFolderRepository), persistence.NewMediaFolderRepository)
|
||||||
|
|
|
@ -40,4 +40,4 @@ func mapFilters() {
|
||||||
}
|
}
|
||||||
|
|
||||||
beego.InsertFilter("/rest/*", beego.BeforeRouter, ValidateRequest)
|
beego.InsertFilter("/rest/*", beego.BeforeRouter, ValidateRequest)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
package controllers_test
|
package controllers_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/astaxie/beego"
|
||||||
|
_ "github.com/deluan/gosonic/conf"
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/deluan/gosonic/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"testing"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"github.com/astaxie/beego"
|
"testing"
|
||||||
"fmt"
|
|
||||||
_ "github.com/deluan/gosonic/conf"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestErrorHandler(t *testing.T) {
|
func TestErrorHandler(t *testing.T) {
|
||||||
|
@ -25,4 +25,4 @@ func TestErrorHandler(t *testing.T) {
|
||||||
So(w.Code, ShouldEqual, 404)
|
So(w.Code, ShouldEqual, 404)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,5 +11,3 @@ func (c *SyncController) Get() {
|
||||||
scanner.StartImport()
|
scanner.StartImport()
|
||||||
c.Ctx.WriteString("Import started. Check logs")
|
c.Ctx.WriteString("Import started. Check logs")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@ type AlbumRepository interface {
|
||||||
BaseRepository
|
BaseRepository
|
||||||
Put(m *Album) error
|
Put(m *Album) error
|
||||||
Get(id string) (*Album, error)
|
Get(id string) (*Album, error)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package domain
|
package domain
|
||||||
|
|
||||||
type Artist struct {
|
type Artist struct {
|
||||||
Id string
|
Id string
|
||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
type ArtistRepository interface {
|
type ArtistRepository interface {
|
||||||
|
@ -11,4 +11,3 @@ type ArtistRepository interface {
|
||||||
Get(id string) (*Artist, error)
|
Get(id string) (*Artist, error)
|
||||||
GetByName(name string) (*Artist, error)
|
GetByName(name string) (*Artist, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,4 @@ package domain
|
||||||
type BaseRepository interface {
|
type BaseRepository interface {
|
||||||
NewId(fields ...string) string
|
NewId(fields ...string) string
|
||||||
CountAll() (int, error)
|
CountAll() (int, error)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,15 +2,14 @@ package domain
|
||||||
|
|
||||||
type ArtistInfo struct {
|
type ArtistInfo struct {
|
||||||
ArtistId string
|
ArtistId string
|
||||||
Artist string
|
Artist string
|
||||||
}
|
}
|
||||||
|
|
||||||
type ArtistIndex struct {
|
type ArtistIndex struct {
|
||||||
Id string
|
Id string
|
||||||
Artists []ArtistInfo
|
Artists []ArtistInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
type ArtistIndexRepository interface {
|
type ArtistIndexRepository interface {
|
||||||
BaseRepository
|
BaseRepository
|
||||||
Put(m *ArtistIndex) error
|
Put(m *ArtistIndex) error
|
||||||
|
|
|
@ -11,7 +11,7 @@ type MediaFile struct {
|
||||||
Album string
|
Album string
|
||||||
Artist string
|
Artist string
|
||||||
AlbumArtist string
|
AlbumArtist string
|
||||||
AlbumId string `parent:"album"`
|
AlbumId string `parent:"album"`
|
||||||
Compilation bool
|
Compilation bool
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time
|
||||||
UpdatedAt time.Time
|
UpdatedAt time.Time
|
||||||
|
@ -20,4 +20,4 @@ type MediaFile struct {
|
||||||
type MediaFileRepository interface {
|
type MediaFileRepository interface {
|
||||||
BaseRepository
|
BaseRepository
|
||||||
Put(m *MediaFile) error
|
Put(m *MediaFile) error
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package domain
|
package domain
|
||||||
|
|
||||||
type MediaFolder struct {
|
type MediaFolder struct {
|
||||||
Id string
|
Id string
|
||||||
Name string
|
Name string
|
||||||
Path string
|
Path string
|
||||||
}
|
}
|
||||||
|
@ -9,4 +9,3 @@ type MediaFolder struct {
|
||||||
type MediaFolderRepository interface {
|
type MediaFolderRepository interface {
|
||||||
GetAll() ([]MediaFolder, error)
|
GetAll() ([]MediaFolder, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,4 +10,3 @@ type PropertyRepository interface {
|
||||||
Get(id string) (string, error)
|
Get(id string) (string, error)
|
||||||
DefaultGet(id string, defaultValue string) (string, error)
|
DefaultGet(id string, defaultValue string) (string, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
main.go
2
main.go
|
@ -1,8 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_ "github.com/deluan/gosonic/conf"
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
|
_ "github.com/deluan/gosonic/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -25,4 +25,4 @@ func (r *albumRepository) Get(id string) (*domain.Album, error) {
|
||||||
var rec interface{}
|
var rec interface{}
|
||||||
rec, err := r.readEntity(id)
|
rec, err := r.readEntity(id)
|
||||||
return rec.(*domain.Album), err
|
return rec.(*domain.Album), err
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,4 +31,3 @@ func (r *artistRepository) GetByName(name string) (*domain.Artist, error) {
|
||||||
id := r.NewId(name)
|
id := r.NewId(name)
|
||||||
return r.Get(id)
|
return r.Get(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"strings"
|
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
type baseRepository struct {
|
type baseRepository struct {
|
||||||
|
@ -90,7 +90,7 @@ func (r *baseRepository) getFieldKeys(id string) [][]byte {
|
||||||
return fieldKeys
|
return fieldKeys
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r*baseRepository) newInstance() interface{} {
|
func (r *baseRepository) newInstance() interface{} {
|
||||||
return reflect.New(r.entityType).Interface()
|
return reflect.New(r.entityType).Interface()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ func (r *baseRepository) toEntity(response [][]byte, entity interface{}) error {
|
||||||
// TODO Optimize it! Probably very slow (and confusing!)
|
// TODO Optimize it! Probably very slow (and confusing!)
|
||||||
func (r *baseRepository) loadAll(entities interface{}, sortBy string) error {
|
func (r *baseRepository) loadAll(entities interface{}, sortBy string) error {
|
||||||
total, err := r.CountAll()
|
total, err := r.CountAll()
|
||||||
if (err != nil) {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,7 +134,7 @@ func (r *baseRepository) loadAll(entities interface{}, sortBy string) error {
|
||||||
}
|
}
|
||||||
setName := r.table + "s:all"
|
setName := r.table + "s:all"
|
||||||
response, err := db().XSSort([]byte(setName), 0, 0, true, false, sortKey, r.getFieldKeys("*"))
|
response, err := db().XSSort([]byte(setName), 0, 0, true, false, sortKey, r.getFieldKeys("*"))
|
||||||
if (err != nil) {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
numFields := len(r.fieldNames)
|
numFields := len(r.fieldNames)
|
||||||
|
@ -142,7 +142,7 @@ func (r *baseRepository) loadAll(entities interface{}, sortBy string) error {
|
||||||
start := i * numFields
|
start := i * numFields
|
||||||
entity := reflect.New(r.entityType).Interface()
|
entity := reflect.New(r.entityType).Interface()
|
||||||
|
|
||||||
if err := r.toEntity(response[start:start + numFields], entity); err != nil {
|
if err := r.toEntity(response[start:start+numFields], entity); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
reflected.Set(reflect.Append(reflected, reflect.ValueOf(entity).Elem()))
|
reflected.Set(reflect.Append(reflected, reflect.ValueOf(entity).Elem()))
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/deluan/gosonic/tests"
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TestEntity struct {
|
type TestEntity struct {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"errors"
|
"errors"
|
||||||
"sort"
|
"github.com/deluan/gosonic/domain"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/deluan/gosonic/utils"
|
||||||
|
"sort"
|
||||||
)
|
)
|
||||||
|
|
||||||
type artistIndex struct {
|
type artistIndex struct {
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
"strconv"
|
"github.com/deluan/gosonic/tests"
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
|
"strconv"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestIndexRepository(t *testing.T) {
|
func TestIndexRepository(t *testing.T) {
|
||||||
|
@ -19,7 +19,7 @@ func TestIndexRepository(t *testing.T) {
|
||||||
i := &domain.ArtistIndex{Id: "123"}
|
i := &domain.ArtistIndex{Id: "123"}
|
||||||
|
|
||||||
repo.Put(i)
|
repo.Put(i)
|
||||||
s,_ := repo.Get("123")
|
s, _ := repo.Get("123")
|
||||||
|
|
||||||
So(s, shouldBeEqual, i)
|
So(s, shouldBeEqual, i)
|
||||||
})
|
})
|
||||||
|
@ -37,7 +37,7 @@ func TestIndexRepository(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Convey("When I call GetAll()", func() {
|
Convey("When I call GetAll()", func() {
|
||||||
indices, err := repo.GetAll()
|
indices, err := repo.GetAll()
|
||||||
Convey("Then It should not return any error", func() {
|
Convey("Then It should not return any error", func() {
|
||||||
So(err, ShouldBeNil)
|
So(err, ShouldBeNil)
|
||||||
})
|
})
|
||||||
|
@ -55,4 +55,4 @@ func TestIndexRepository(t *testing.T) {
|
||||||
dropDb()
|
dropDb()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sync"
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/siddontang/ledisdb/ledis"
|
|
||||||
"github.com/siddontang/ledisdb/config"
|
"github.com/siddontang/ledisdb/config"
|
||||||
|
"github.com/siddontang/ledisdb/ledis"
|
||||||
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
_ledisInstance *ledis.Ledis
|
_ledisInstance *ledis.Ledis
|
||||||
_dbInstance *ledis.DB
|
_dbInstance *ledis.DB
|
||||||
once sync.Once
|
once sync.Once
|
||||||
)
|
)
|
||||||
|
|
||||||
func db() *ledis.DB {
|
func db() *ledis.DB {
|
||||||
|
@ -28,8 +28,7 @@ func db() *ledis.DB {
|
||||||
return _dbInstance
|
return _dbInstance
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func dropDb() {
|
func dropDb() {
|
||||||
db()
|
db()
|
||||||
_ledisInstance.FlushAll()
|
_ledisInstance.FlushAll()
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,4 +16,4 @@ func NewMediaFileRepository() domain.MediaFileRepository {
|
||||||
|
|
||||||
func (r *mediaFileRepository) Put(m *domain.MediaFile) error {
|
func (r *mediaFileRepository) Put(m *domain.MediaFile) error {
|
||||||
return r.saveOrUpdate(m.Id, m)
|
return r.saveOrUpdate(m.Id, m)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
|
"github.com/deluan/gosonic/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type mediaFolderRepository struct {
|
type mediaFolderRepository struct {
|
||||||
|
@ -13,10 +13,9 @@ func NewMediaFolderRepository() domain.MediaFolderRepository {
|
||||||
return &mediaFolderRepository{}
|
return &mediaFolderRepository{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (*mediaFolderRepository) GetAll() ([]domain.MediaFolder, error) {
|
func (*mediaFolderRepository) GetAll() ([]domain.MediaFolder, error) {
|
||||||
mediaFolder := domain.MediaFolder{Id: "0", Name: "iTunes Library", Path: beego.AppConfig.String("musicFolder")}
|
mediaFolder := domain.MediaFolder{Id: "0", Name: "iTunes Library", Path: beego.AppConfig.String("musicFolder")}
|
||||||
result := make([]domain.MediaFolder, 1)
|
result := make([]domain.MediaFolder, 1)
|
||||||
result[0] = mediaFolder
|
result[0] = mediaFolder
|
||||||
return result, nil
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
"errors"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type propertyRepository struct {
|
type propertyRepository struct {
|
||||||
|
@ -29,7 +29,7 @@ func (r *propertyRepository) Get(id string) (string, error) {
|
||||||
return rec.(*domain.Property).Value, err
|
return rec.(*domain.Property).Value, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r*propertyRepository) DefaultGet(id string, defaultValue string) (string, error) {
|
func (r *propertyRepository) DefaultGet(id string, defaultValue string) (string, error) {
|
||||||
v, err := r.Get(id)
|
v, err := r.Get(id)
|
||||||
|
|
||||||
if v == "" {
|
if v == "" {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ItunesScanner struct {}
|
type ItunesScanner struct{}
|
||||||
|
|
||||||
func (s *ItunesScanner) LoadFolder(path string) []Track {
|
func (s *ItunesScanner) LoadFolder(path string) []Track {
|
||||||
xml, _ := os.Open(path)
|
xml, _ := os.Open(path)
|
||||||
|
@ -35,8 +35,8 @@ func (s *ItunesScanner) LoadFolder(path string) []Track {
|
||||||
}
|
}
|
||||||
|
|
||||||
func unescape(s string) string {
|
func unescape(s string) string {
|
||||||
s,_ = url.QueryUnescape(s)
|
s, _ = url.QueryUnescape(s)
|
||||||
return strings.Replace(s, "&", "&", -1)
|
return strings.Replace(s, "&", "&", -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ Scanner = (*ItunesScanner)(nil)
|
var _ Scanner = (*ItunesScanner)(nil)
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
package scanner
|
package scanner
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
|
||||||
"github.com/deluan/gosonic/persistence"
|
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"strings"
|
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
"github.com/deluan/gosonic/consts"
|
|
||||||
"time"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/astaxie/beego"
|
||||||
|
"github.com/deluan/gosonic/consts"
|
||||||
|
"github.com/deluan/gosonic/domain"
|
||||||
|
"github.com/deluan/gosonic/persistence"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Scanner interface {
|
type Scanner interface {
|
||||||
|
@ -29,7 +29,7 @@ func doImport(mediaFolder string, scanner Scanner) {
|
||||||
beego.Info("Finished importing", len(files), "files")
|
beego.Info("Finished importing", len(files), "files")
|
||||||
}
|
}
|
||||||
|
|
||||||
func importLibrary(files []Track) (err error){
|
func importLibrary(files []Track) (err error) {
|
||||||
indexGroups := utils.ParseIndexGroups(beego.AppConfig.String("indexGroups"))
|
indexGroups := utils.ParseIndexGroups(beego.AppConfig.String("indexGroups"))
|
||||||
mfRepo := persistence.NewMediaFileRepository()
|
mfRepo := persistence.NewMediaFileRepository()
|
||||||
albumRepo := persistence.NewAlbumRepository()
|
albumRepo := persistence.NewAlbumRepository()
|
||||||
|
@ -65,20 +65,20 @@ func importLibrary(files []Track) (err error){
|
||||||
|
|
||||||
func parseTrack(t *Track) (*domain.MediaFile, *domain.Album, *domain.Artist) {
|
func parseTrack(t *Track) (*domain.MediaFile, *domain.Album, *domain.Artist) {
|
||||||
mf := &domain.MediaFile{
|
mf := &domain.MediaFile{
|
||||||
Id: t.Id,
|
Id: t.Id,
|
||||||
Album: t.Album,
|
Album: t.Album,
|
||||||
Artist: t.Artist,
|
Artist: t.Artist,
|
||||||
AlbumArtist: t.AlbumArtist,
|
AlbumArtist: t.AlbumArtist,
|
||||||
Title: t.Title,
|
Title: t.Title,
|
||||||
Compilation: t.Compilation,
|
Compilation: t.Compilation,
|
||||||
Path: t.Path,
|
Path: t.Path,
|
||||||
CreatedAt: t.CreatedAt,
|
CreatedAt: t.CreatedAt,
|
||||||
UpdatedAt: t.UpdatedAt,
|
UpdatedAt: t.UpdatedAt,
|
||||||
}
|
}
|
||||||
|
|
||||||
album := &domain.Album{
|
album := &domain.Album{
|
||||||
Name: t.Album,
|
Name: t.Album,
|
||||||
Year: t.Year,
|
Year: t.Year,
|
||||||
Compilation: t.Compilation,
|
Compilation: t.Compilation,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,4 +145,4 @@ func saveIndex(artistIndex map[string]tempIndex) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
package scanner
|
package scanner
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/deluan/gosonic/domain"
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/deluan/gosonic/tests"
|
||||||
|
"github.com/deluan/gosonic/utils"
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCollectIndex(t *testing.T) {
|
func TestCollectIndex(t *testing.T) {
|
||||||
tests.Init(t, false)
|
tests.Init(t, false)
|
||||||
|
|
||||||
ig := utils.IndexGroups{"A":"A", "B":"B", "Tom":"Tom", "X":"X-Z"}
|
ig := utils.IndexGroups{"A": "A", "B": "B", "Tom": "Tom", "X": "X-Z"}
|
||||||
|
|
||||||
Convey("Simple Name", t, func() {
|
Convey("Simple Name", t, func() {
|
||||||
a := &domain.Artist{Name: "Björk"}
|
a := &domain.Artist{Name: "Björk"}
|
||||||
|
|
|
@ -18,11 +18,11 @@ type Track struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Track) RealArtist() string {
|
func (m *Track) RealArtist() string {
|
||||||
if (m.Compilation) {
|
if m.Compilation {
|
||||||
return "Various Artists"
|
return "Various Artists"
|
||||||
}
|
}
|
||||||
if (m.AlbumArtist != "") {
|
if m.AlbumArtist != "" {
|
||||||
return m.AlbumArtist
|
return m.AlbumArtist
|
||||||
}
|
}
|
||||||
return m.Artist
|
return m.Artist
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,4 +22,3 @@ func Init(t *testing.T, skipOnShort bool) {
|
||||||
beego.SetLevel(beego.LevelError)
|
beego.SetLevel(beego.LevelError)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package mocks
|
package mocks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"fmt"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"github.com/deluan/gosonic/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateMockArtistIndexRepo() *MockArtistIndex {
|
func CreateMockArtistIndexRepo() *MockArtistIndex {
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
// Let's you specify how the index should look like.
|
// Let's you specify how the index should look like.
|
||||||
//
|
//
|
||||||
// The specification is a space-separated list of index entries. Normally, each entry is just a single character,
|
// The specification is a space-separated list of index entries. Normally, each entry is just a single character,
|
||||||
// but you may also specify multiple characters. For instance, the entry "The" will link to all files and
|
// but you may also specify multiple characters. For instance, the entry "The" will link to all files and
|
||||||
// folders starting with "The".
|
// folders starting with "The".
|
||||||
//
|
//
|
||||||
// You may also create an entry using a group of index characters in paranthesis. For instance, the entry
|
// You may also create an entry using a group of index characters in paranthesis. For instance, the entry
|
||||||
// "A-E(ABCDE)" will display as "A-E" and link to all files and folders starting with either
|
// "A-E(ABCDE)" will display as "A-E" and link to all files and folders starting with either
|
||||||
// A, B, C, D or E. This may be useful for grouping less-frequently used characters (such and X, Y and Z), or
|
// A, B, C, D or E. This may be useful for grouping less-frequently used characters (such and X, Y and Z), or
|
||||||
// for grouping accented characters (such as A, \u00C0 and \u00C1)
|
// for grouping accented characters (such as A, \u00C0 and \u00C1)
|
||||||
//
|
//
|
||||||
// Files and folders that are not covered by an index entry will be placed under the index entry "#".
|
// Files and folders that are not covered by an index entry will be placed under the index entry "#".
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
type IndexGroups map[string]string
|
type IndexGroups map[string]string
|
||||||
|
@ -37,4 +37,4 @@ func ParseIndexGroups(spec string) IndexGroups {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return parsed
|
return parsed
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strconv"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
const delimiter = "."
|
const delimiter = "."
|
||||||
|
@ -49,7 +49,7 @@ func flattenList(l []interface{}, parent string, delimiter string) (map[string]i
|
||||||
j[newkey] = value
|
j[newkey] = value
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return j, nil
|
return j, nil
|
||||||
|
@ -92,7 +92,7 @@ func flattenMap(m map[string]interface{}, parent string, delimiter string) (map[
|
||||||
j[key] = value
|
j[key] = value
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
//nothing
|
//nothing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return j, nil
|
return j, nil
|
||||||
|
@ -110,7 +110,7 @@ func FlattenMap(input map[string]interface{}) (map[string]interface{}, error) {
|
||||||
|
|
||||||
func ToMap(rec interface{}) (map[string]interface{}, error) {
|
func ToMap(rec interface{}) (map[string]interface{}, error) {
|
||||||
// Convert to JSON...
|
// Convert to JSON...
|
||||||
b, err := json.Marshal(rec);
|
b, err := json.Marshal(rec)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -123,7 +123,7 @@ func ToMap(rec interface{}) (map[string]interface{}, error) {
|
||||||
|
|
||||||
func ToStruct(m map[string]interface{}, rec interface{}) error {
|
func ToStruct(m map[string]interface{}, rec interface{}) error {
|
||||||
// Convert to JSON...
|
// Convert to JSON...
|
||||||
b, err := json.Marshal(m);
|
b, err := json.Marshal(m)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NoArticle(name string) string {
|
func NoArticle(name string) string {
|
||||||
articles := strings.Split(beego.AppConfig.String("ignoredArticles"), " ")
|
articles := strings.Split(beego.AppConfig.String("ignoredArticles"), " ")
|
||||||
for _, a := range articles {
|
for _, a := range articles {
|
||||||
n := strings.TrimPrefix(name, a + " ")
|
n := strings.TrimPrefix(name, a+" ")
|
||||||
if (n != name) {
|
if n != name {
|
||||||
return n
|
return n
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestParseIndexGroup(t *testing.T) {
|
func TestParseIndexGroup(t *testing.T) {
|
||||||
|
@ -40,4 +40,4 @@ func TestParseIndexGroup(t *testing.T) {
|
||||||
So(parsed, ShouldContainKey, "海")
|
So(parsed, ShouldContainKey, "海")
|
||||||
So(parsed["海"], ShouldEqual, "UTF8")
|
So(parsed["海"], ShouldEqual, "UTF8")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue