├── api_doc.md ├── doc ├── apiserver ├── config.ini ├── gotye_open_live.sql ├── gotyelive_server.tar.gz └── run ├── install ├── pic ├── freamwork.jpg ├── gotyelive-group01.png └── gotyelive1.0.png ├── readme.md ├── server.md └── src ├── apiserver ├── config.ini ├── liveapi │ ├── authCode.go │ ├── createLiveRoom.go │ ├── followLiveRoom.go │ ├── getLiveRoomList.go │ ├── getLiveroomNumber.go │ ├── getMyLiveRoom.go │ ├── getMyLiveRoomId.go │ ├── getUserHeadPic.go │ ├── login.go │ ├── modifyMyLiveRoom.go │ ├── modifyUserHeadPic.go │ ├── modifyUserInfo.go │ ├── modifyUserPwd.go │ ├── payApi.go │ ├── playLiveStream.go │ ├── pushLiveStream.go │ ├── refreshPlayUrls.go │ ├── register.go │ ├── router.go │ └── searchLiveRoom.go ├── main.go └── service │ ├── authCode.go │ ├── dbInit.go │ ├── dbLiveRoom.go │ ├── dbUser.go │ ├── gotyeRequestApi.go │ ├── gotyeRequestApi_test.go │ ├── liveroom.go │ ├── liveroomList.go │ ├── liveroomSearch.go │ ├── onlineLiveManager.go │ ├── payManager.go │ ├── payManager_test.go │ ├── refreshPlayUrls.go │ ├── sessionManager.go │ └── user.go └── gotye_protocol ├── api.go ├── api_doc.md ├── base.go ├── gotye_sdk ├── api.go └── status_code.go └── status_code.go /api_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/api_doc.md -------------------------------------------------------------------------------- /doc/apiserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/doc/apiserver -------------------------------------------------------------------------------- /doc/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/doc/config.ini -------------------------------------------------------------------------------- /doc/gotye_open_live.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/doc/gotye_open_live.sql -------------------------------------------------------------------------------- /doc/gotyelive_server.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/doc/gotyelive_server.tar.gz -------------------------------------------------------------------------------- /doc/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/doc/run -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/install -------------------------------------------------------------------------------- /pic/freamwork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/pic/freamwork.jpg -------------------------------------------------------------------------------- /pic/gotyelive-group01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/pic/gotyelive-group01.png -------------------------------------------------------------------------------- /pic/gotyelive1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/pic/gotyelive1.0.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/readme.md -------------------------------------------------------------------------------- /server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/server.md -------------------------------------------------------------------------------- /src/apiserver/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/config.ini -------------------------------------------------------------------------------- /src/apiserver/liveapi/authCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/authCode.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/createLiveRoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/createLiveRoom.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/followLiveRoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/followLiveRoom.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/getLiveRoomList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/getLiveRoomList.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/getLiveroomNumber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/getLiveroomNumber.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/getMyLiveRoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/getMyLiveRoom.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/getMyLiveRoomId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/getMyLiveRoomId.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/getUserHeadPic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/getUserHeadPic.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/login.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/modifyMyLiveRoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/modifyMyLiveRoom.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/modifyUserHeadPic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/modifyUserHeadPic.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/modifyUserInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/modifyUserInfo.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/modifyUserPwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/modifyUserPwd.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/payApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/payApi.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/playLiveStream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/playLiveStream.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/pushLiveStream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/pushLiveStream.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/refreshPlayUrls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/refreshPlayUrls.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/register.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/router.go -------------------------------------------------------------------------------- /src/apiserver/liveapi/searchLiveRoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/liveapi/searchLiveRoom.go -------------------------------------------------------------------------------- /src/apiserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/main.go -------------------------------------------------------------------------------- /src/apiserver/service/authCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/authCode.go -------------------------------------------------------------------------------- /src/apiserver/service/dbInit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/dbInit.go -------------------------------------------------------------------------------- /src/apiserver/service/dbLiveRoom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/dbLiveRoom.go -------------------------------------------------------------------------------- /src/apiserver/service/dbUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/dbUser.go -------------------------------------------------------------------------------- /src/apiserver/service/gotyeRequestApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/gotyeRequestApi.go -------------------------------------------------------------------------------- /src/apiserver/service/gotyeRequestApi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/gotyeRequestApi_test.go -------------------------------------------------------------------------------- /src/apiserver/service/liveroom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/liveroom.go -------------------------------------------------------------------------------- /src/apiserver/service/liveroomList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/liveroomList.go -------------------------------------------------------------------------------- /src/apiserver/service/liveroomSearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/liveroomSearch.go -------------------------------------------------------------------------------- /src/apiserver/service/onlineLiveManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/onlineLiveManager.go -------------------------------------------------------------------------------- /src/apiserver/service/payManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/payManager.go -------------------------------------------------------------------------------- /src/apiserver/service/payManager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/payManager_test.go -------------------------------------------------------------------------------- /src/apiserver/service/refreshPlayUrls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/refreshPlayUrls.go -------------------------------------------------------------------------------- /src/apiserver/service/sessionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/sessionManager.go -------------------------------------------------------------------------------- /src/apiserver/service/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/apiserver/service/user.go -------------------------------------------------------------------------------- /src/gotye_protocol/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/gotye_protocol/api.go -------------------------------------------------------------------------------- /src/gotye_protocol/api_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/gotye_protocol/api_doc.md -------------------------------------------------------------------------------- /src/gotye_protocol/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/gotye_protocol/base.go -------------------------------------------------------------------------------- /src/gotye_protocol/gotye_sdk/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/gotye_protocol/gotye_sdk/api.go -------------------------------------------------------------------------------- /src/gotye_protocol/gotye_sdk/status_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/gotye_protocol/gotye_sdk/status_code.go -------------------------------------------------------------------------------- /src/gotye_protocol/status_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QPlus/GotyeLive/HEAD/src/gotye_protocol/status_code.go --------------------------------------------------------------------------------