mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Renamed project to CloudSonic
This commit is contained in:
parent
ce863f0f35
commit
c417a00e62
67 changed files with 190 additions and 196 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
||||||
/gosonic
|
/sonic-server
|
||||||
/iTunes*.xml
|
/iTunes*.xml
|
||||||
static/Jamstash
|
static/Jamstash
|
||||||
devDb
|
devDb
|
||||||
|
@ -6,7 +6,6 @@ devDb
|
||||||
vendor/*/
|
vendor/*/
|
||||||
wiki
|
wiki
|
||||||
TODO.md
|
TODO.md
|
||||||
gosonic.log
|
|
||||||
var
|
var
|
||||||
Artwork
|
Artwork
|
||||||
gosonic.toml
|
sonic.toml
|
|
@ -1,8 +1,8 @@
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- 1.7
|
- 1.8
|
||||||
- tip
|
# - tip
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- go get github.com/kardianos/govendor
|
- go get github.com/kardianos/govendor
|
||||||
|
@ -15,4 +15,4 @@ script:
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
- gosonic@deluan.com
|
- cloudsonic@deluan.com
|
||||||
|
|
15
README.md
15
README.md
|
@ -1,11 +1,12 @@
|
||||||
GoSonic
|
CloudSonic Server
|
||||||
=======
|
=======
|
||||||
|
|
||||||
[](https://travis-ci.org/deluan/gosonic) [](https://goreportcard.com/report/github.com/deluan/gosonic)
|
[](https://travis-ci.org/cloudsonic/sonic-server)
|
||||||
|
[](https://goreportcard.com/report/github.com/cloudsonic/sonic-server)
|
||||||
|
|
||||||
__This is still a work in progress, and has no releases available__
|
__This is still a work in progress, and has no releases available__
|
||||||
|
|
||||||
GoSonic is an application that implements the [Subsonic API](http://www.subsonic.org/pages/api.jsp), but instead of
|
CloudSonic is an application that implements the [Subsonic API](http://www.subsonic.org/pages/api.jsp), but instead of
|
||||||
having its own music library like the original [Subsonic application](http://www.subsonic.org), it interacts directly
|
having its own music library like the original [Subsonic application](http://www.subsonic.org), it interacts directly
|
||||||
with your iTunes library.
|
with your iTunes library.
|
||||||
|
|
||||||
|
@ -26,14 +27,14 @@ The project's main goals are:
|
||||||
|
|
||||||
I'm currently trying to implement all functionality from API v1.8.0, with some exceptions.
|
I'm currently trying to implement all functionality from API v1.8.0, with some exceptions.
|
||||||
|
|
||||||
Check the (almost) up to date [compatibility chart](https://github.com/deluan/gosonic/wiki/Compatibility) for what is working.
|
Check the (almost) up to date [compatibility chart](https://github.com/cloudsonic/sonic-server/wiki/Compatibility) for what is working.
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
As this is a work in progress, there are no installers yet. To have GoSonic running in your computer, follow the steps in the
|
As this is a work in progress, there are no installers yet. To have the server running in your computer, follow the steps in the
|
||||||
Development Environment section below, then run it with:
|
Development Environment section below, then run it with:
|
||||||
```
|
```
|
||||||
$ export GOSONIC_MUSICFOLDER="/path/to/your/iTunes Library.xml"
|
$ export SONIC_MUSICFOLDER="/path/to/your/iTunes Library.xml"
|
||||||
$ bee run
|
$ bee run
|
||||||
```
|
```
|
||||||
The server should start listening on port 4533.
|
The server should start listening on port 4533.
|
||||||
|
@ -60,6 +61,6 @@ $ make test
|
||||||
|
|
||||||
### Copying
|
### Copying
|
||||||
|
|
||||||
GoSonic - Copyright (C) 2017 Deluan Cotts Quintao
|
CloudSonic - Copyright (C) 2017 Deluan Cotts Quintao
|
||||||
|
|
||||||
The source code is licensed under GNU Affero GPL v3. License is available [here](/LICENSE)
|
The source code is licensed under GNU Affero GPL v3. License is available [here](/LICENSE)
|
||||||
|
|
|
@ -4,9 +4,9 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlbumListController struct {
|
type AlbumListController struct {
|
||||||
|
|
|
@ -3,12 +3,12 @@ package api_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/persistence"
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
_ "github.com/deluan/gosonic/init"
|
_ "github.com/cloudsonic/sonic-server/init"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -3,14 +3,13 @@ package api
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"strconv"
|
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BaseAPIController struct{ beego.Controller }
|
type BaseAPIController struct{ beego.Controller }
|
||||||
|
|
|
@ -5,11 +5,11 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BrowsingController struct {
|
type BrowsingController struct {
|
||||||
|
@ -41,7 +41,7 @@ func (c *BrowsingController) getArtistIndex(ifModifiedSince time.Time) responses
|
||||||
}
|
}
|
||||||
|
|
||||||
res := responses.Indexes{
|
res := responses.Indexes{
|
||||||
IgnoredArticles: conf.GoSonic.IgnoredArticles,
|
IgnoredArticles: conf.Sonic.IgnoredArticles,
|
||||||
LastModified: fmt.Sprint(utils.ToMillis(lastModified)),
|
LastModified: fmt.Sprint(utils.ToMillis(lastModified)),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,12 +3,12 @@ package api_test
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/persistence"
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MediaAnnotationController struct {
|
type MediaAnnotationController struct {
|
||||||
|
|
|
@ -5,10 +5,10 @@ import (
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MediaRetrievalController struct {
|
type MediaRetrievalController struct {
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
package api_test
|
package api_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/persistence"
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,10 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PlaylistsController struct {
|
type PlaylistsController struct {
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
. "github.com/deluan/gosonic/api/responses"
|
. "github.com/cloudsonic/sonic-server/api/responses"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -163,13 +163,13 @@ func TestSubsonicResponses(t *testing.T) {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
Convey("With optional fields", func() {
|
Convey("With optional fields", func() {
|
||||||
response.User.Email = "gosonic@deluan.com"
|
response.User.Email = "cloudsonic@deluan.com"
|
||||||
response.User.Folder = []int{1}
|
response.User.Folder = []int{1}
|
||||||
Convey("XML", func() {
|
Convey("XML", func() {
|
||||||
So(response, ShouldMatchXML, `<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.0.0"><user username="deluan" email="gosonic@deluan.com" scrobblingEnabled="false" adminRole="false" settingsRole="false" downloadRole="false" uploadRole="false" playlistRole="false" coverArtRole="false" commentRole="false" podcastRole="false" streamRole="false" jukeboxRole="false" shareRole="false" videoConversionRole="false"><folder>1</folder></user></subsonic-response>`)
|
So(response, ShouldMatchXML, `<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.0.0"><user username="deluan" email="cloudsonic@deluan.com" scrobblingEnabled="false" adminRole="false" settingsRole="false" downloadRole="false" uploadRole="false" playlistRole="false" coverArtRole="false" commentRole="false" podcastRole="false" streamRole="false" jukeboxRole="false" shareRole="false" videoConversionRole="false"><folder>1</folder></user></subsonic-response>`)
|
||||||
})
|
})
|
||||||
Convey("JSON", func() {
|
Convey("JSON", func() {
|
||||||
So(response, ShouldMatchJSON, `{"status":"ok","user":{"adminRole":false,"commentRole":false,"coverArtRole":false,"downloadRole":false,"email":"gosonic@deluan.com","folder":[1],"jukeboxRole":false,"playlistRole":false,"podcastRole":false,"scrobblingEnabled":false,"settingsRole":false,"shareRole":false,"streamRole":false,"uploadRole":false,"username":"deluan","videoConversionRole":false},"version":"1.0.0"}`)
|
So(response, ShouldMatchJSON, `{"status":"ok","user":{"adminRole":false,"commentRole":false,"coverArtRole":false,"downloadRole":false,"email":"cloudsonic@deluan.com","folder":[1],"jukeboxRole":false,"playlistRole":false,"podcastRole":false,"scrobblingEnabled":false,"settingsRole":false,"shareRole":false,"streamRole":false,"uploadRole":false,"username":"deluan","videoConversionRole":false},"version":"1.0.0"}`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -4,9 +4,9 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SearchingController struct {
|
type SearchingController struct {
|
||||||
|
|
|
@ -2,10 +2,10 @@ package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type StreamController struct {
|
type StreamController struct {
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
package api_test
|
package api_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/persistence"
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import "github.com/deluan/gosonic/api/responses"
|
import "github.com/cloudsonic/sonic-server/api/responses"
|
||||||
|
|
||||||
type SystemController struct{ BaseAPIController }
|
type SystemController struct{ BaseAPIController }
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import "github.com/deluan/gosonic/api/responses"
|
import "github.com/cloudsonic/sonic-server/api/responses"
|
||||||
|
|
||||||
type UsersController struct{ BaseAPIController }
|
type UsersController struct{ BaseAPIController }
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ControllerInterface interface {
|
type ControllerInterface interface {
|
||||||
|
@ -18,7 +18,7 @@ type ControllerInterface interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
func Validate(controller BaseAPIController) {
|
func Validate(controller BaseAPIController) {
|
||||||
if !conf.GoSonic.DisableValidation {
|
if !conf.Sonic.DisableValidation {
|
||||||
checkParameters(controller)
|
checkParameters(controller)
|
||||||
authenticate(controller)
|
authenticate(controller)
|
||||||
// TODO Validate version
|
// TODO Validate version
|
||||||
|
@ -41,7 +41,7 @@ func checkParameters(c BaseAPIController) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func authenticate(c BaseAPIController) {
|
func authenticate(c BaseAPIController) {
|
||||||
password := conf.GoSonic.Password
|
password := conf.Sonic.Password
|
||||||
user := c.GetString("u")
|
user := c.GetString("u")
|
||||||
pass := c.GetString("p")
|
pass := c.GetString("p")
|
||||||
salt := c.GetString("s")
|
salt := c.GetString("s")
|
||||||
|
@ -62,7 +62,7 @@ func authenticate(c BaseAPIController) {
|
||||||
valid = (t == token)
|
valid = (t == token)
|
||||||
}
|
}
|
||||||
|
|
||||||
if user != conf.GoSonic.User || !valid {
|
if user != conf.Sonic.User || !valid {
|
||||||
logWarn(c, fmt.Sprintf(`Invalid login for user "%s"`, user))
|
logWarn(c, fmt.Sprintf(`Invalid login for user "%s"`, user))
|
||||||
abortRequest(c, responses.ErrorAuthenticationFail)
|
abortRequest(c, responses.ErrorAuthenticationFail)
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
appname = github.com/deluan/gosonic
|
appname = github.com/cloudsonic/sonic-server
|
||||||
serverName = GoSonic
|
serverName = CloudSonic
|
||||||
runMode = dev
|
runMode = dev
|
||||||
autoRender = false
|
autoRender = false
|
||||||
copyRequestBody = true
|
copyRequestBody = true
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"github.com/koding/multiconfig"
|
"github.com/koding/multiconfig"
|
||||||
)
|
)
|
||||||
|
|
||||||
type goSonic struct {
|
type sonic struct {
|
||||||
Port int `default:"4533"`
|
Port int `default:"4533"`
|
||||||
MusicFolder string `default:"./iTunes1.xml"`
|
MusicFolder string `default:"./iTunes1.xml"`
|
||||||
DbPath string `default:"./devDb"`
|
DbPath string `default:"./devDb"`
|
||||||
|
@ -26,32 +26,32 @@ type goSonic struct {
|
||||||
RunMode string `default:"dev"`
|
RunMode string `default:"dev"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var GoSonic *goSonic
|
var Sonic *sonic
|
||||||
|
|
||||||
func LoadFromFlags() {
|
func LoadFromFlags() {
|
||||||
l := &multiconfig.FlagLoader{}
|
l := &multiconfig.FlagLoader{}
|
||||||
l.Load(GoSonic)
|
l.Load(Sonic)
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadFromFile(tomlFile string) {
|
func LoadFromFile(tomlFile string) {
|
||||||
l := &multiconfig.TOMLLoader{Path: tomlFile}
|
l := &multiconfig.TOMLLoader{Path: tomlFile}
|
||||||
err := l.Load(GoSonic)
|
err := l.Load(Sonic)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("Error loading %s: %v\n", tomlFile, err)
|
fmt.Printf("Error loading %s: %v\n", tomlFile, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadFromLocalFile() {
|
func LoadFromLocalFile() {
|
||||||
if _, err := os.Stat("./gosonic.toml"); err == nil {
|
if _, err := os.Stat("./sonic.toml"); err == nil {
|
||||||
LoadFromFile("./gosonic.toml")
|
LoadFromFile("./sonic.toml")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
GoSonic = new(goSonic)
|
Sonic = new(sonic)
|
||||||
var l multiconfig.Loader
|
var l multiconfig.Loader
|
||||||
l = &multiconfig.TagLoader{}
|
l = &multiconfig.TagLoader{}
|
||||||
l.Load(GoSonic)
|
l.Load(Sonic)
|
||||||
l = &multiconfig.EnvironmentLoader{}
|
l = &multiconfig.EnvironmentLoader{}
|
||||||
l.Load(GoSonic)
|
l.Load(Sonic)
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
_ "github.com/deluan/gosonic/init"
|
_ "github.com/cloudsonic/sonic-server/init"
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ package controllers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/scanner"
|
"github.com/cloudsonic/sonic-server/scanner"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SyncController struct{ beego.Controller }
|
type SyncController struct{ beego.Controller }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package domain
|
package domain
|
||||||
|
|
||||||
import "github.com/deluan/gosonic/utils"
|
import "github.com/cloudsonic/sonic-server/utils"
|
||||||
|
|
||||||
type ArtistInfo struct {
|
type ArtistInfo struct {
|
||||||
ArtistId string
|
ArtistId string
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Browser interface {
|
type Browser interface {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Entry struct {
|
type Entry struct {
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/dhowden/tag"
|
"github.com/dhowden/tag"
|
||||||
"github.com/nfnt/resize"
|
"github.com/nfnt/resize"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
package engine_test
|
package engine_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"image"
|
"image"
|
||||||
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/persistence"
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ListGenerator interface {
|
type ListGenerator interface {
|
||||||
|
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/itunesbridge"
|
"github.com/cloudsonic/sonic-server/itunesbridge"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Playlists interface {
|
type Playlists interface {
|
||||||
|
|
|
@ -2,9 +2,9 @@ package engine
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/itunesbridge"
|
"github.com/cloudsonic/sonic-server/itunesbridge"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Ratings interface {
|
type Ratings interface {
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/itunesbridge"
|
"github.com/cloudsonic/sonic-server/itunesbridge"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -4,10 +4,10 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/itunesbridge"
|
"github.com/cloudsonic/sonic-server/itunesbridge"
|
||||||
"github.com/deluan/gosonic/persistence"
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"github.com/syndtr/goleveldb/leveldb/errors"
|
"github.com/syndtr/goleveldb/leveldb/errors"
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gomate"
|
"github.com/deluan/gomate"
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"github.com/kennygrant/sanitize"
|
"github.com/kennygrant/sanitize"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -8,14 +8,14 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO Encapsulate as a io.Reader
|
// TODO Encapsulate as a io.Reader
|
||||||
func Stream(path string, bitRate int, maxBitRate int, w io.Writer) error {
|
func Stream(path string, bitRate int, maxBitRate int, w io.Writer) error {
|
||||||
var f io.Reader
|
var f io.Reader
|
||||||
var err error
|
var err error
|
||||||
enabled := !conf.GoSonic.DisableDownsampling
|
enabled := !conf.Sonic.DisableDownsampling
|
||||||
if enabled && maxBitRate > 0 && bitRate > maxBitRate {
|
if enabled && maxBitRate > 0 && bitRate > maxBitRate {
|
||||||
f, err = downsample(path, maxBitRate)
|
f, err = downsample(path, maxBitRate)
|
||||||
} else {
|
} else {
|
||||||
|
@ -45,7 +45,7 @@ func downsample(path string, maxBitRate int) (f io.Reader, err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func createDownsamplingCommand(path string, maxBitRate int) (string, []string) {
|
func createDownsamplingCommand(path string, maxBitRate int) (string, []string) {
|
||||||
cmd := conf.GoSonic.DownsampleCommand
|
cmd := conf.Sonic.DownsampleCommand
|
||||||
|
|
||||||
split := strings.Split(cmd, " ")
|
split := strings.Split(cmd, " ")
|
||||||
for i, s := range split {
|
for i, s := range split {
|
||||||
|
|
|
@ -3,7 +3,7 @@ package engine
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
. "github.com/deluan/gosonic/tests"
|
. "github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
package init
|
package init
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
|
"github.com/cloudsonic/sonic-server/itunesbridge"
|
||||||
|
"github.com/cloudsonic/sonic-server/persistence"
|
||||||
|
"github.com/cloudsonic/sonic-server/scanner"
|
||||||
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
"github.com/deluan/gomate"
|
"github.com/deluan/gomate"
|
||||||
"github.com/deluan/gomate/ledis"
|
"github.com/deluan/gomate/ledis"
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"github.com/deluan/gosonic/engine"
|
|
||||||
"github.com/deluan/gosonic/persistence"
|
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
|
|
||||||
"github.com/deluan/gosonic/itunesbridge"
|
|
||||||
"github.com/deluan/gosonic/scanner"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
package init
|
package init
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/api"
|
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/astaxie/beego/context"
|
"github.com/astaxie/beego/context"
|
||||||
"github.com/astaxie/beego/plugins/cors"
|
"github.com/astaxie/beego/plugins/cors"
|
||||||
"github.com/deluan/gosonic/controllers"
|
"github.com/cloudsonic/sonic-server/api"
|
||||||
|
"github.com/cloudsonic/sonic-server/controllers"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
12
main.go
12
main.go
|
@ -4,19 +4,19 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
_ "github.com/deluan/gosonic/init"
|
_ "github.com/cloudsonic/sonic-server/init"
|
||||||
_ "github.com/deluan/gosonic/tasks"
|
_ "github.com/cloudsonic/sonic-server/tasks"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
conf.LoadFromLocalFile()
|
conf.LoadFromLocalFile()
|
||||||
conf.LoadFromFlags()
|
conf.LoadFromFlags()
|
||||||
|
|
||||||
beego.BConfig.RunMode = conf.GoSonic.RunMode
|
beego.BConfig.RunMode = conf.Sonic.RunMode
|
||||||
beego.BConfig.Listen.HTTPPort = conf.GoSonic.Port
|
beego.BConfig.Listen.HTTPPort = conf.Sonic.Port
|
||||||
|
|
||||||
fmt.Printf("\nGoSonic v%s (%s mode)\n\n", "0.1", beego.BConfig.RunMode)
|
fmt.Printf("\nCloudSonic Server v%s (%s mode)\n\n", "0.1", beego.BConfig.RunMode)
|
||||||
if beego.BConfig.RunMode == "prod" {
|
if beego.BConfig.RunMode == "prod" {
|
||||||
beego.SetLevel(beego.LevelInformational)
|
beego.SetLevel(beego.LevelInformational)
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type albumRepository struct {
|
type albumRepository struct {
|
||||||
|
|
|
@ -3,7 +3,7 @@ package persistence
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type artistRepository struct {
|
type artistRepository struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/scanner"
|
"github.com/cloudsonic/sonic-server/scanner"
|
||||||
"github.com/siddontang/ledisdb/ledis"
|
"github.com/siddontang/ledisdb/ledis"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type artistIndexRepository struct {
|
type artistIndexRepository struct {
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/cloudsonic/sonic-server/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ package persistence
|
||||||
import (
|
import (
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
"github.com/siddontang/ledisdb/config"
|
"github.com/siddontang/ledisdb/config"
|
||||||
"github.com/siddontang/ledisdb/ledis"
|
"github.com/siddontang/ledisdb/ledis"
|
||||||
)
|
)
|
||||||
|
@ -17,7 +17,7 @@ var (
|
||||||
func Db() *ledis.DB {
|
func Db() *ledis.DB {
|
||||||
once.Do(func() {
|
once.Do(func() {
|
||||||
config := config.NewConfigDefault()
|
config := config.NewConfigDefault()
|
||||||
config.DataDir = conf.GoSonic.DbPath
|
config.DataDir = conf.Sonic.DbPath
|
||||||
l, _ := ledis.Open(config)
|
l, _ := ledis.Open(config)
|
||||||
instance, err := l.Select(0)
|
instance, err := l.Select(0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -8,8 +8,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
"github.com/siddontang/ledisdb/ledis"
|
"github.com/siddontang/ledisdb/ledis"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,9 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/tests"
|
"github.com/cloudsonic/sonic-server/tests"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,9 @@ package persistence
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type mediaFileRepository struct {
|
type mediaFileRepository struct {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package persistence
|
package persistence
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type mediaFolderRepository struct {
|
type mediaFolderRepository struct {
|
||||||
|
@ -14,7 +14,7 @@ func NewMediaFolderRepository() domain.MediaFolderRepository {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*mediaFolderRepository) GetAll() (domain.MediaFolders, error) {
|
func (*mediaFolderRepository) GetAll() (domain.MediaFolders, error) {
|
||||||
mediaFolder := domain.MediaFolder{Id: "0", Name: "iTunes Library", Path: conf.GoSonic.MusicFolder}
|
mediaFolder := domain.MediaFolder{Id: "0", Name: "iTunes Library", Path: conf.Sonic.MusicFolder}
|
||||||
result := make(domain.MediaFolders, 1)
|
result := make(domain.MediaFolders, 1)
|
||||||
result[0] = mediaFolder
|
result[0] = mediaFolder
|
||||||
return result, nil
|
return result, nil
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateMockAlbumRepo() *MockAlbum {
|
func CreateMockAlbumRepo() *MockAlbum {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateMockArtistRepo() *MockArtist {
|
func CreateMockArtistRepo() *MockArtist {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateMockArtistIndexRepo() *MockArtistIndex {
|
func CreateMockArtistIndexRepo() *MockArtistIndex {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreateMockMediaFileRepo() *MockMediaFile {
|
func CreateMockMediaFileRepo() *MockMediaFile {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -3,7 +3,7 @@ package persistence
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type playlistRepository struct {
|
type playlistRepository struct {
|
||||||
|
|
|
@ -3,8 +3,8 @@ package persistence
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
)
|
)
|
||||||
|
|
||||||
type propertyRepository struct {
|
type propertyRepository struct {
|
||||||
|
|
|
@ -8,10 +8,10 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/gosonic/engine"
|
"github.com/cloudsonic/sonic-server/engine"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Scanner interface {
|
type Scanner interface {
|
||||||
|
@ -50,7 +50,7 @@ func CheckForUpdates(force bool) {
|
||||||
|
|
||||||
func startImport() {
|
func startImport() {
|
||||||
go func() {
|
go func() {
|
||||||
itunesLibrary = conf.GoSonic.MusicFolder
|
itunesLibrary = conf.Sonic.MusicFolder
|
||||||
|
|
||||||
info, err := os.Stat(itunesLibrary)
|
info, err := os.Stat(itunesLibrary)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -264,7 +264,7 @@ func (i *Importer) importArtists() domain.Artists {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *Importer) importArtistIndex() {
|
func (i *Importer) importArtistIndex() {
|
||||||
indexGroups := utils.ParseIndexGroups(conf.GoSonic.IndexGroups)
|
indexGroups := utils.ParseIndexGroups(conf.Sonic.IndexGroups)
|
||||||
artistIndex := make(map[string]tempIndex)
|
artistIndex := make(map[string]tempIndex)
|
||||||
|
|
||||||
for _, ar := range i.scanner.Artists() {
|
for _, ar := range i.scanner.Artists() {
|
||||||
|
@ -281,7 +281,7 @@ func (i *Importer) importPlaylists() domain.Playlists {
|
||||||
j := 0
|
j := 0
|
||||||
for _, pl := range i.scanner.Playlists() {
|
for _, pl := range i.scanner.Playlists() {
|
||||||
pl.Public = true
|
pl.Public = true
|
||||||
pl.Owner = conf.GoSonic.User
|
pl.Owner = conf.Sonic.User
|
||||||
pl.Comment = "Original: " + pl.FullPath
|
pl.Comment = "Original: " + pl.FullPath
|
||||||
pls[j] = *pl
|
pls[j] = *pl
|
||||||
j++
|
j++
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
package scanner
|
package scanner
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/deluan/gosonic/domain"
|
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
"github.com/deluan/gosonic/utils"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
|
"github.com/cloudsonic/sonic-server/tests"
|
||||||
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCollectIndex(t *testing.T) {
|
func TestCollectIndex(t *testing.T) {
|
||||||
|
|
|
@ -14,8 +14,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
"github.com/deluan/gosonic/domain"
|
"github.com/cloudsonic/sonic-server/domain"
|
||||||
"github.com/deluan/itl"
|
"github.com/deluan/itl"
|
||||||
"github.com/dhowden/tag"
|
"github.com/dhowden/tag"
|
||||||
)
|
)
|
||||||
|
@ -103,8 +103,8 @@ func (s *ItunesScanner) ScanLibrary(lastModifiedSince time.Time, path string) (i
|
||||||
beego.Debug("Saved", len(s.newSums), "checksums")
|
beego.Debug("Saved", len(s.newSums), "checksums")
|
||||||
}
|
}
|
||||||
|
|
||||||
ignFolders := conf.GoSonic.PlsIgnoreFolders
|
ignFolders := conf.Sonic.PlsIgnoreFolders
|
||||||
ignPatterns := strings.Split(conf.GoSonic.PlsIgnoredPatterns, ";")
|
ignPatterns := strings.Split(conf.Sonic.PlsIgnoredPatterns, ";")
|
||||||
for _, p := range l.Playlists {
|
for _, p := range l.Playlists {
|
||||||
rel := plsRelation{pID: p.PlaylistPersistentID, parentPID: p.ParentPersistentID, name: unescape(p.Name)}
|
rel := plsRelation{pID: p.PlaylistPersistentID, parentPID: p.ParentPersistentID, name: unescape(p.Name)}
|
||||||
s.pplaylists[p.PlaylistPersistentID] = rel
|
s.pplaylists[p.PlaylistPersistentID] = rel
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/astaxie/beego/toolbox"
|
"github.com/astaxie/beego/toolbox"
|
||||||
"github.com/deluan/gosonic/scanner"
|
"github.com/cloudsonic/sonic-server/scanner"
|
||||||
)
|
)
|
||||||
|
|
||||||
const TaskItunesScan = "iTunes Library Scanner"
|
const TaskItunesScan = "iTunes Library Scanner"
|
||||||
|
|
|
@ -7,12 +7,12 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
"github.com/deluan/gosonic/utils"
|
"github.com/cloudsonic/sonic-server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Init(t *testing.T, skipOnShort bool) {
|
func Init(t *testing.T, skipOnShort bool) {
|
||||||
conf.LoadFromFile("../tests/gosonic-test.toml")
|
conf.LoadFromFile("../tests/sonic-test.toml")
|
||||||
if skipOnShort && testing.Short() {
|
if skipOnShort && testing.Short() {
|
||||||
t.Skip("skipping test in short mode.")
|
t.Skip("skipping test in short mode.")
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/api/responses"
|
"github.com/cloudsonic/sonic-server/api/responses"
|
||||||
"github.com/smartystreets/goconvey/convey"
|
"github.com/smartystreets/goconvey/convey"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,11 @@ package utils
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/deluan/gosonic/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NoArticle(name string) string {
|
func NoArticle(name string) string {
|
||||||
articles := strings.Split(conf.GoSonic.IgnoredArticles, " ")
|
articles := strings.Split(conf.Sonic.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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue