├── .gitignore ├── EasySwooleEvent.php ├── README.md ├── app ├── Common.php ├── HttpController │ ├── Common.php │ ├── Login.php │ └── User.php ├── Service │ ├── Bean │ │ ├── AddressBean.php │ │ ├── AdminBean.php │ │ ├── AdminlogBean.php │ │ ├── AdvBean.php │ │ ├── AdvPositionBean.php │ │ ├── AgreementBean.php │ │ ├── AgreementRecordBean.php │ │ ├── AlbumItemBean.php │ │ ├── AlbumPictureBean.php │ │ ├── ArticleBean.php │ │ ├── ArticleCategoryBean.php │ │ ├── AuthGroupAccessBean.php │ │ ├── AuthGroupBean.php │ │ ├── AuthRuleBean.php │ │ ├── BalanceLogBean.php │ │ ├── BalanceWithdrawBean.php │ │ ├── BargainBean.php │ │ ├── BargainOrderBean.php │ │ ├── BargainRecordBean.php │ │ ├── BonusBean.php │ │ ├── BonusRecordBean.php │ │ ├── CartBean.php │ │ ├── ChatBean.php │ │ ├── ChatMessageBean.php │ │ ├── CommissionBean.php │ │ ├── ConfigBean.php │ │ ├── CouponsBean.php │ │ ├── CouponsRecordBean.php │ │ ├── DistrictBean.php │ │ ├── ExpressTemplateBean.php │ │ ├── GoodsAttrBean.php │ │ ├── GoodsAttributeBean.php │ │ ├── GoodsBean.php │ │ ├── GoodsBrandBean.php │ │ ├── GoodsCategoryBean.php │ │ ├── GoodsCommentBean.php │ │ ├── GoodsSkuBean.php │ │ ├── GoodsSpecBean.php │ │ ├── GoodsSpecValueBean.php │ │ ├── GoodsTypeBean.php │ │ ├── ImpactBagBean.php │ │ ├── ImpactBean.php │ │ ├── NoticeBean.php │ │ ├── OrderBean.php │ │ ├── OrderBillBean.php │ │ ├── OrderBillLogBean.php │ │ ├── OrderGoodsBean.php │ │ ├── OrderGoodsReturnBean.php │ │ ├── OrderLogBean.php │ │ ├── OrderRefundBean.php │ │ ├── OrderRefundRecordsBean.php │ │ ├── OrderReturnBean.php │ │ ├── OrderShopReturnBean.php │ │ ├── QueueBean.php │ │ ├── SeckillBean.php │ │ ├── SeckillGoodsBean.php │ │ ├── SeckillTimeBean.php │ │ ├── ServiceBean.php │ │ ├── ServicesChatBean.php │ │ ├── ShareImgBean.php │ │ ├── ShareQrcodeBean.php │ │ ├── ShopAccountBean.php │ │ ├── ShopAccountRecordsBean.php │ │ ├── ShopAmountBean.php │ │ ├── ShopBean.php │ │ ├── ShopGoodsCategoryBean.php │ │ ├── ShopLogBean.php │ │ ├── ShopPlatformRateBean.php │ │ ├── ShopRuleBean.php │ │ ├── ShopServerBean.php │ │ ├── SmsBean.php │ │ ├── TemplatesBean.php │ │ ├── TemplatesContentBean.php │ │ ├── ThirdBean.php │ │ ├── UserBankBean.php │ │ ├── UserBean.php │ │ ├── UserLevelBean.php │ │ ├── UserScorelogBean.php │ │ ├── ZgArticleBean.php │ │ └── ZgCategoryBean.php │ ├── Chat.php │ ├── Common.php │ └── User.php └── WebSocket │ ├── Controller │ ├── Chat.php │ ├── Common.php │ └── User.php │ ├── MsgCode.php │ ├── RelationMap.php │ ├── WebSocketEvent.php │ └── WebSocketParser.php ├── composer.json ├── composer.lock ├── dev.php ├── easyswoole ├── phpunit.php ├── produce.php └── public ├── index.html └── static ├── img ├── default-nodata.png ├── qa.png ├── release.png ├── tabbar │ ├── add.png │ ├── addactive.png │ ├── guanzhu.png │ ├── guanzhuactive.png │ ├── home.png │ ├── homeactive.png │ ├── me.png │ ├── meactive.png │ ├── news.png │ └── newsactive.png └── video.png ├── index.css ├── js ├── chunk-vendors.9f12e7bc.js ├── index.78d9634b.js ├── pages-chat_detail.732334c5.js ├── pages-tabbar-chat.e9dace9a.js └── pages-tabbar-friend.94d3806c.js └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/.gitignore -------------------------------------------------------------------------------- /EasySwooleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/EasySwooleEvent.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/README.md -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Common.php -------------------------------------------------------------------------------- /app/HttpController/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/HttpController/Common.php -------------------------------------------------------------------------------- /app/HttpController/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/HttpController/Login.php -------------------------------------------------------------------------------- /app/HttpController/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/HttpController/User.php -------------------------------------------------------------------------------- /app/Service/Bean/AddressBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AddressBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AdminBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AdminBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AdminlogBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AdminlogBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AdvBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AdvBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AdvPositionBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AdvPositionBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AgreementBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AgreementBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AgreementRecordBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AgreementRecordBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AlbumItemBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AlbumItemBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AlbumPictureBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AlbumPictureBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ArticleBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ArticleBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ArticleCategoryBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ArticleCategoryBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AuthGroupAccessBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AuthGroupAccessBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AuthGroupBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AuthGroupBean.php -------------------------------------------------------------------------------- /app/Service/Bean/AuthRuleBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/AuthRuleBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BalanceLogBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BalanceLogBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BalanceWithdrawBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BalanceWithdrawBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BargainBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BargainBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BargainOrderBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BargainOrderBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BargainRecordBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BargainRecordBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BonusBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BonusBean.php -------------------------------------------------------------------------------- /app/Service/Bean/BonusRecordBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/BonusRecordBean.php -------------------------------------------------------------------------------- /app/Service/Bean/CartBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/CartBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ChatBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ChatBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ChatMessageBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ChatMessageBean.php -------------------------------------------------------------------------------- /app/Service/Bean/CommissionBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/CommissionBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ConfigBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ConfigBean.php -------------------------------------------------------------------------------- /app/Service/Bean/CouponsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/CouponsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/CouponsRecordBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/CouponsRecordBean.php -------------------------------------------------------------------------------- /app/Service/Bean/DistrictBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/DistrictBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ExpressTemplateBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ExpressTemplateBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsAttrBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsAttrBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsAttributeBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsAttributeBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsBrandBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsBrandBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsCategoryBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsCategoryBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsCommentBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsCommentBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsSkuBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsSkuBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsSpecBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsSpecBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsSpecValueBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsSpecValueBean.php -------------------------------------------------------------------------------- /app/Service/Bean/GoodsTypeBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/GoodsTypeBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ImpactBagBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ImpactBagBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ImpactBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ImpactBean.php -------------------------------------------------------------------------------- /app/Service/Bean/NoticeBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/NoticeBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderBillBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderBillBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderBillLogBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderBillLogBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderGoodsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderGoodsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderGoodsReturnBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderGoodsReturnBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderLogBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderLogBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderRefundBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderRefundBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderRefundRecordsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderRefundRecordsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderReturnBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderReturnBean.php -------------------------------------------------------------------------------- /app/Service/Bean/OrderShopReturnBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/OrderShopReturnBean.php -------------------------------------------------------------------------------- /app/Service/Bean/QueueBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/QueueBean.php -------------------------------------------------------------------------------- /app/Service/Bean/SeckillBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/SeckillBean.php -------------------------------------------------------------------------------- /app/Service/Bean/SeckillGoodsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/SeckillGoodsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/SeckillTimeBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/SeckillTimeBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ServiceBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ServiceBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ServicesChatBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ServicesChatBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShareImgBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShareImgBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShareQrcodeBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShareQrcodeBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopAccountBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopAccountBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopAccountRecordsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopAccountRecordsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopAmountBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopAmountBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopGoodsCategoryBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopGoodsCategoryBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopLogBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopLogBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopPlatformRateBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopPlatformRateBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopRuleBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopRuleBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ShopServerBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ShopServerBean.php -------------------------------------------------------------------------------- /app/Service/Bean/SmsBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/SmsBean.php -------------------------------------------------------------------------------- /app/Service/Bean/TemplatesBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/TemplatesBean.php -------------------------------------------------------------------------------- /app/Service/Bean/TemplatesContentBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/TemplatesContentBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ThirdBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ThirdBean.php -------------------------------------------------------------------------------- /app/Service/Bean/UserBankBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/UserBankBean.php -------------------------------------------------------------------------------- /app/Service/Bean/UserBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/UserBean.php -------------------------------------------------------------------------------- /app/Service/Bean/UserLevelBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/UserLevelBean.php -------------------------------------------------------------------------------- /app/Service/Bean/UserScorelogBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/UserScorelogBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ZgArticleBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ZgArticleBean.php -------------------------------------------------------------------------------- /app/Service/Bean/ZgCategoryBean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Bean/ZgCategoryBean.php -------------------------------------------------------------------------------- /app/Service/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Chat.php -------------------------------------------------------------------------------- /app/Service/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/Common.php -------------------------------------------------------------------------------- /app/Service/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/Service/User.php -------------------------------------------------------------------------------- /app/WebSocket/Controller/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/Controller/Chat.php -------------------------------------------------------------------------------- /app/WebSocket/Controller/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/Controller/Common.php -------------------------------------------------------------------------------- /app/WebSocket/Controller/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/Controller/User.php -------------------------------------------------------------------------------- /app/WebSocket/MsgCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/MsgCode.php -------------------------------------------------------------------------------- /app/WebSocket/RelationMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/RelationMap.php -------------------------------------------------------------------------------- /app/WebSocket/WebSocketEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/WebSocketEvent.php -------------------------------------------------------------------------------- /app/WebSocket/WebSocketParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/app/WebSocket/WebSocketParser.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/composer.lock -------------------------------------------------------------------------------- /dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/dev.php -------------------------------------------------------------------------------- /easyswoole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/easyswoole -------------------------------------------------------------------------------- /phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/phpunit.php -------------------------------------------------------------------------------- /produce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/produce.php -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/index.html -------------------------------------------------------------------------------- /public/static/img/default-nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/default-nodata.png -------------------------------------------------------------------------------- /public/static/img/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/qa.png -------------------------------------------------------------------------------- /public/static/img/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/release.png -------------------------------------------------------------------------------- /public/static/img/tabbar/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/add.png -------------------------------------------------------------------------------- /public/static/img/tabbar/addactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/addactive.png -------------------------------------------------------------------------------- /public/static/img/tabbar/guanzhu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/guanzhu.png -------------------------------------------------------------------------------- /public/static/img/tabbar/guanzhuactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/guanzhuactive.png -------------------------------------------------------------------------------- /public/static/img/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/home.png -------------------------------------------------------------------------------- /public/static/img/tabbar/homeactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/homeactive.png -------------------------------------------------------------------------------- /public/static/img/tabbar/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/me.png -------------------------------------------------------------------------------- /public/static/img/tabbar/meactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/meactive.png -------------------------------------------------------------------------------- /public/static/img/tabbar/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/news.png -------------------------------------------------------------------------------- /public/static/img/tabbar/newsactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/tabbar/newsactive.png -------------------------------------------------------------------------------- /public/static/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/img/video.png -------------------------------------------------------------------------------- /public/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/index.css -------------------------------------------------------------------------------- /public/static/js/chunk-vendors.9f12e7bc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/js/chunk-vendors.9f12e7bc.js -------------------------------------------------------------------------------- /public/static/js/index.78d9634b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/js/index.78d9634b.js -------------------------------------------------------------------------------- /public/static/js/pages-chat_detail.732334c5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/js/pages-chat_detail.732334c5.js -------------------------------------------------------------------------------- /public/static/js/pages-tabbar-chat.e9dace9a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/js/pages-tabbar-chat.e9dace9a.js -------------------------------------------------------------------------------- /public/static/js/pages-tabbar-friend.94d3806c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/js/pages-tabbar-friend.94d3806c.js -------------------------------------------------------------------------------- /public/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxyangs/swoole_im/HEAD/public/static/logo.png --------------------------------------------------------------------------------