mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add startup banner
This commit is contained in:
parent
0673371a71
commit
c995766c45
3 changed files with 23 additions and 5 deletions
4
main.go
4
main.go
|
@ -1,16 +1,12 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/cloudsonic/sonic-server/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
conf.Load()
|
conf.Load()
|
||||||
|
|
||||||
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
|
||||||
|
|
||||||
a := CreateApp(conf.Sonic.MusicFolder)
|
a := CreateApp(conf.Sonic.MusicFolder)
|
||||||
a.MountRouter("/rest/", CreateSubsonicAPIRouter())
|
a.MountRouter("/rest/", CreateSubsonicAPIRouter())
|
||||||
a.Run(":" + conf.Sonic.Port)
|
a.Run(":" + conf.Sonic.Port)
|
||||||
|
|
|
@ -14,6 +14,8 @@ import (
|
||||||
"github.com/go-chi/cors"
|
"github.com/go-chi/cors"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const Version = "0.2"
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
Importer *scanner.Importer
|
Importer *scanner.Importer
|
||||||
router *chi.Mux
|
router *chi.Mux
|
||||||
|
@ -21,6 +23,7 @@ type Server struct {
|
||||||
|
|
||||||
func New(importer *scanner.Importer) *Server {
|
func New(importer *scanner.Importer) *Server {
|
||||||
a := &Server{Importer: importer}
|
a := &Server{Importer: importer}
|
||||||
|
showBanner(Version)
|
||||||
initMimeTypes()
|
initMimeTypes()
|
||||||
a.initRoutes()
|
a.initRoutes()
|
||||||
a.initImporter()
|
a.initImporter()
|
||||||
|
@ -35,7 +38,7 @@ func (a *Server) MountRouter(path string, subRouter http.Handler) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *Server) Run(addr string) {
|
func (a *Server) Run(addr string) {
|
||||||
log.Info("Started CloudSonic server", "address", addr)
|
log.Info("Starting CloudSonic server", "address", addr)
|
||||||
log.Error(http.ListenAndServe(addr, a.router))
|
log.Error(http.ListenAndServe(addr, a.router))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
19
server/banner.go
Normal file
19
server/banner.go
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
package server
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
// http://patorjk.com/software/taag/#p=display&f=ANSI%20Shadow&t=Cloud%20Sonic
|
||||||
|
const banner = `
|
||||||
|
██████╗██╗ ██████╗ ██╗ ██╗██████╗ ███████╗ ██████╗ ███╗ ██╗██╗ ██████╗
|
||||||
|
██╔════╝██║ ██╔═══██╗██║ ██║██╔══██╗ ██╔════╝██╔═══██╗████╗ ██║██║██╔════╝
|
||||||
|
██║ ██║ ██║ ██║██║ ██║██║ ██║ ███████╗██║ ██║██╔██╗ ██║██║██║
|
||||||
|
██║ ██║ ██║ ██║██║ ██║██║ ██║ ╚════██║██║ ██║██║╚██╗██║██║██║
|
||||||
|
╚██████╗███████╗╚██████╔╝╚██████╔╝██████╔╝ ███████║╚██████╔╝██║ ╚████║██║╚██████╗
|
||||||
|
╚═════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═════╝
|
||||||
|
Version %s
|
||||||
|
|
||||||
|
`
|
||||||
|
|
||||||
|
func showBanner(version string) {
|
||||||
|
fmt.Printf(banner, version)
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue