├── .github └── workflows │ └── action.yml ├── .gitignore ├── LICENSE ├── action.go ├── go.mod ├── go.sum ├── init.go ├── main.go ├── menu.go ├── pkg └── ztool ├── readme.md ├── release.go ├── rsrc_windows_amd64.syso ├── src ├── caches │ ├── cache.go │ ├── cloudcache │ │ └── cloud.go │ └── localcache │ │ └── local.go ├── database │ ├── driver.go │ ├── modules │ │ ├── sqlite_cgo.go │ │ └── sqlite_etc.go │ └── types.go ├── env │ └── env.go ├── middleware │ ├── auth │ │ ├── auth.go │ │ └── ratelimit.go │ ├── dynlink │ │ └── dynlink.go │ ├── resp │ │ └── resp.go │ └── util │ │ └── util.go ├── server │ ├── api_music.go │ ├── app_lxmusic.go │ ├── app_musicfree.go │ ├── loadpublic.go │ ├── loadquality.go │ ├── public │ │ ├── icon.ico │ │ ├── lx-custom-source.js │ │ ├── lx-icon.ico │ │ ├── lx-source-script.js │ │ ├── status.html │ │ └── test.txt │ └── router.go └── sources │ ├── builtin │ ├── driver.go │ └── types.go │ ├── custom │ ├── custom.go │ ├── driver.go │ ├── kg │ │ ├── musicinfo.go │ │ ├── player.go │ │ ├── refresh.go │ │ ├── types.go │ │ └── utils.go │ ├── kw │ │ ├── encrypt.go │ │ ├── player.go │ │ ├── types.go │ │ └── utils.go │ ├── mg │ │ ├── albuminfo.go │ │ ├── musicinfo.go │ │ ├── player.go │ │ ├── refresh.go │ │ ├── types.go │ │ └── utils.go │ ├── tx │ │ ├── encrypt.go │ │ ├── info.go │ │ ├── login.go │ │ ├── musicinfo.go │ │ ├── player.go │ │ ├── refresh.go │ │ ├── types.go │ │ └── utils.go │ ├── utils │ │ └── utils.go │ └── wy │ │ ├── modules │ │ ├── core_crypto.go │ │ ├── core_request.go │ │ ├── core_types.go │ │ ├── login_qr_check.go │ │ ├── login_qr_create.go │ │ ├── login_qr_key.go │ │ ├── login_refresh.go │ │ ├── song_url.go │ │ └── song_url_v1.go │ │ ├── player.go │ │ ├── refresh.go │ │ └── types.go │ ├── example │ └── data.go │ ├── source.go │ └── types.go └── update.md /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/LICENSE -------------------------------------------------------------------------------- /action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/action.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/go.sum -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/init.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/main.go -------------------------------------------------------------------------------- /menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/menu.go -------------------------------------------------------------------------------- /pkg/ztool: -------------------------------------------------------------------------------- 1 | ../../ztool -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/readme.md -------------------------------------------------------------------------------- /release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/release.go -------------------------------------------------------------------------------- /rsrc_windows_amd64.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/rsrc_windows_amd64.syso -------------------------------------------------------------------------------- /src/caches/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/caches/cache.go -------------------------------------------------------------------------------- /src/caches/cloudcache/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/caches/cloudcache/cloud.go -------------------------------------------------------------------------------- /src/caches/localcache/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/caches/localcache/local.go -------------------------------------------------------------------------------- /src/database/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/database/driver.go -------------------------------------------------------------------------------- /src/database/modules/sqlite_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/database/modules/sqlite_cgo.go -------------------------------------------------------------------------------- /src/database/modules/sqlite_etc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/database/modules/sqlite_etc.go -------------------------------------------------------------------------------- /src/database/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/database/types.go -------------------------------------------------------------------------------- /src/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/env/env.go -------------------------------------------------------------------------------- /src/middleware/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/middleware/auth/auth.go -------------------------------------------------------------------------------- /src/middleware/auth/ratelimit.go: -------------------------------------------------------------------------------- 1 | package auth 2 | -------------------------------------------------------------------------------- /src/middleware/dynlink/dynlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/middleware/dynlink/dynlink.go -------------------------------------------------------------------------------- /src/middleware/resp/resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/middleware/resp/resp.go -------------------------------------------------------------------------------- /src/middleware/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/middleware/util/util.go -------------------------------------------------------------------------------- /src/server/api_music.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/api_music.go -------------------------------------------------------------------------------- /src/server/app_lxmusic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/app_lxmusic.go -------------------------------------------------------------------------------- /src/server/app_musicfree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/app_musicfree.go -------------------------------------------------------------------------------- /src/server/loadpublic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/loadpublic.go -------------------------------------------------------------------------------- /src/server/loadquality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/loadquality.go -------------------------------------------------------------------------------- /src/server/public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/public/icon.ico -------------------------------------------------------------------------------- /src/server/public/lx-custom-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/public/lx-custom-source.js -------------------------------------------------------------------------------- /src/server/public/lx-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/public/lx-icon.ico -------------------------------------------------------------------------------- /src/server/public/lx-source-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/public/lx-source-script.js -------------------------------------------------------------------------------- /src/server/public/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/public/status.html -------------------------------------------------------------------------------- /src/server/public/test.txt: -------------------------------------------------------------------------------- 1 | :) -------------------------------------------------------------------------------- /src/server/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/server/router.go -------------------------------------------------------------------------------- /src/sources/builtin/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/builtin/driver.go -------------------------------------------------------------------------------- /src/sources/builtin/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/builtin/types.go -------------------------------------------------------------------------------- /src/sources/custom/custom.go: -------------------------------------------------------------------------------- 1 | package custom 2 | 3 | // type CSource struct{} 4 | -------------------------------------------------------------------------------- /src/sources/custom/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/driver.go -------------------------------------------------------------------------------- /src/sources/custom/kg/musicinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kg/musicinfo.go -------------------------------------------------------------------------------- /src/sources/custom/kg/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kg/player.go -------------------------------------------------------------------------------- /src/sources/custom/kg/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kg/refresh.go -------------------------------------------------------------------------------- /src/sources/custom/kg/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kg/types.go -------------------------------------------------------------------------------- /src/sources/custom/kg/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kg/utils.go -------------------------------------------------------------------------------- /src/sources/custom/kw/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kw/encrypt.go -------------------------------------------------------------------------------- /src/sources/custom/kw/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kw/player.go -------------------------------------------------------------------------------- /src/sources/custom/kw/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kw/types.go -------------------------------------------------------------------------------- /src/sources/custom/kw/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/kw/utils.go -------------------------------------------------------------------------------- /src/sources/custom/mg/albuminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/mg/albuminfo.go -------------------------------------------------------------------------------- /src/sources/custom/mg/musicinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/mg/musicinfo.go -------------------------------------------------------------------------------- /src/sources/custom/mg/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/mg/player.go -------------------------------------------------------------------------------- /src/sources/custom/mg/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/mg/refresh.go -------------------------------------------------------------------------------- /src/sources/custom/mg/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/mg/types.go -------------------------------------------------------------------------------- /src/sources/custom/mg/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/mg/utils.go -------------------------------------------------------------------------------- /src/sources/custom/tx/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/encrypt.go -------------------------------------------------------------------------------- /src/sources/custom/tx/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/info.go -------------------------------------------------------------------------------- /src/sources/custom/tx/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/login.go -------------------------------------------------------------------------------- /src/sources/custom/tx/musicinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/musicinfo.go -------------------------------------------------------------------------------- /src/sources/custom/tx/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/player.go -------------------------------------------------------------------------------- /src/sources/custom/tx/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/refresh.go -------------------------------------------------------------------------------- /src/sources/custom/tx/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/types.go -------------------------------------------------------------------------------- /src/sources/custom/tx/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/tx/utils.go -------------------------------------------------------------------------------- /src/sources/custom/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/utils/utils.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/core_crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/core_crypto.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/core_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/core_request.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/core_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/core_types.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/login_qr_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/login_qr_check.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/login_qr_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/login_qr_create.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/login_qr_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/login_qr_key.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/login_refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/login_refresh.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/song_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/song_url.go -------------------------------------------------------------------------------- /src/sources/custom/wy/modules/song_url_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/modules/song_url_v1.go -------------------------------------------------------------------------------- /src/sources/custom/wy/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/player.go -------------------------------------------------------------------------------- /src/sources/custom/wy/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/refresh.go -------------------------------------------------------------------------------- /src/sources/custom/wy/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/custom/wy/types.go -------------------------------------------------------------------------------- /src/sources/example/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/example/data.go -------------------------------------------------------------------------------- /src/sources/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/source.go -------------------------------------------------------------------------------- /src/sources/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/src/sources/types.go -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxwyWebSite/lx-source/HEAD/update.md --------------------------------------------------------------------------------