├── .example.env ├── .gitignore ├── .travis.yml ├── Database.sql ├── LICENSE ├── README.md ├── app ├── AppService.php ├── ExceptionHandle.php ├── Request.php ├── api │ ├── BaseController.php │ ├── controller │ │ ├── Activity.php │ │ ├── Attach.php │ │ ├── Badge.php │ │ ├── Error.php │ │ ├── Index.php │ │ ├── Message.php │ │ ├── Room.php │ │ ├── Sms.php │ │ ├── Song.php │ │ ├── System.php │ │ ├── User.php │ │ └── Weapp.php │ └── view │ │ ├── activity │ │ └── index.html │ │ ├── badge │ │ ├── bg.html │ │ └── player.html │ │ └── song │ │ └── search_chrome.html ├── command │ ├── BaseCommand.php │ ├── Download.php │ └── Song.php ├── common.php ├── event.php ├── index │ ├── BaseController.php │ └── controller │ │ ├── Error.php │ │ └── Index.php ├── middleware.php ├── model │ ├── Access.php │ ├── App.php │ ├── Attach.php │ ├── BaseModel.php │ ├── Conf.php │ ├── Keywords.php │ ├── Message.php │ ├── Room.php │ ├── Sms.php │ ├── Song.php │ ├── User.php │ └── Weapp.php ├── provider.php └── service.php ├── composer.json ├── config ├── app.php ├── cache.php ├── console.php ├── cookie.php ├── database.php ├── filesystem.php ├── lang.php ├── log.php ├── middleware.php ├── route.php ├── session.php ├── trace.php └── view.php ├── extend └── .gitignore ├── public ├── .htaccess ├── chrome.xml ├── favicon.ico ├── index.html ├── index.php ├── new │ ├── favicon.ico │ ├── images │ │ ├── bg.jpg │ │ ├── bg_dark.jpg │ │ ├── bg_light.jpg │ │ ├── button_emoji.png │ │ ├── button_image.png │ │ ├── emoji │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── error.jpg │ │ ├── gh_42bdbe5c9412_1280.jpg │ │ ├── linus.jpg │ │ ├── loading.gif │ │ ├── loading.png │ │ ├── logo.png │ │ ├── menubar_mysong.png │ │ ├── menubar_pickedsong.png │ │ ├── menubar_picksong.png │ │ ├── menubar_selectroom.png │ │ ├── menubar_setting.png │ │ ├── menubar_upload.png │ │ ├── nohead.jpg │ │ ├── player_bar.png │ │ ├── player_bg.png │ │ ├── qrcode.jpg │ │ ├── snow1.png │ │ └── snow2.png │ └── mp3 │ │ ├── ci.m4a │ │ ├── da.m4a │ │ ├── dingdong.mp3 │ │ ├── dong.m4a │ │ └── message.mp3 ├── router.php ├── sdk │ └── bbbug.js └── uploads │ └── .gitignore ├── route └── app.php ├── runtime └── .gitignore ├── think └── websocket_bbbug_chat.js /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/.travis.yml -------------------------------------------------------------------------------- /Database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/Database.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/README.md -------------------------------------------------------------------------------- /app/AppService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/AppService.php -------------------------------------------------------------------------------- /app/ExceptionHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/ExceptionHandle.php -------------------------------------------------------------------------------- /app/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/Request.php -------------------------------------------------------------------------------- /app/api/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/BaseController.php -------------------------------------------------------------------------------- /app/api/controller/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Activity.php -------------------------------------------------------------------------------- /app/api/controller/Attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Attach.php -------------------------------------------------------------------------------- /app/api/controller/Badge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Badge.php -------------------------------------------------------------------------------- /app/api/controller/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Error.php -------------------------------------------------------------------------------- /app/api/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Index.php -------------------------------------------------------------------------------- /app/api/controller/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Message.php -------------------------------------------------------------------------------- /app/api/controller/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Room.php -------------------------------------------------------------------------------- /app/api/controller/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Sms.php -------------------------------------------------------------------------------- /app/api/controller/Song.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Song.php -------------------------------------------------------------------------------- /app/api/controller/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/System.php -------------------------------------------------------------------------------- /app/api/controller/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/User.php -------------------------------------------------------------------------------- /app/api/controller/Weapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/controller/Weapp.php -------------------------------------------------------------------------------- /app/api/view/activity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/view/activity/index.html -------------------------------------------------------------------------------- /app/api/view/badge/bg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/view/badge/bg.html -------------------------------------------------------------------------------- /app/api/view/badge/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/view/badge/player.html -------------------------------------------------------------------------------- /app/api/view/song/search_chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/api/view/song/search_chrome.html -------------------------------------------------------------------------------- /app/command/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/command/BaseCommand.php -------------------------------------------------------------------------------- /app/command/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/command/Download.php -------------------------------------------------------------------------------- /app/command/Song.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/command/Song.php -------------------------------------------------------------------------------- /app/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/common.php -------------------------------------------------------------------------------- /app/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/event.php -------------------------------------------------------------------------------- /app/index/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/index/BaseController.php -------------------------------------------------------------------------------- /app/index/controller/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/index/controller/Error.php -------------------------------------------------------------------------------- /app/index/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/index/controller/Index.php -------------------------------------------------------------------------------- /app/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/middleware.php -------------------------------------------------------------------------------- /app/model/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/Access.php -------------------------------------------------------------------------------- /app/model/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/App.php -------------------------------------------------------------------------------- /app/model/Attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/Attach.php -------------------------------------------------------------------------------- /app/model/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/BaseModel.php -------------------------------------------------------------------------------- /app/model/Conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/Conf.php -------------------------------------------------------------------------------- /app/model/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/Keywords.php -------------------------------------------------------------------------------- /app/model/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/Message.php -------------------------------------------------------------------------------- /app/model/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbug-com/BBBUG-API/HEAD/app/model/Room.php -------------------------------------------------------------------------------- /app/model/Sms.php: -------------------------------------------------------------------------------- 1 |