├── .env ├── .gitignore ├── README.md ├── docker-compose.yml ├── gateway-api-cloud ├── .env ├── Dockerfile ├── app │ ├── Boot │ │ ├── HttpServerListener.php │ │ └── TaskFinish.php │ ├── Breaker │ │ ├── GroupServiceBreaker.php │ │ ├── MsgServiceBreaker.php │ │ ├── RedisServiceBreaker.php │ │ └── UserServiceBreaker.php │ ├── Controllers │ │ └── Api │ │ │ ├── BaseController.php │ │ │ ├── GroupController.php │ │ │ ├── InitController.php │ │ │ ├── LoginController.php │ │ │ ├── MsgController.php │ │ │ ├── ToolController.php │ │ │ ├── UserController.php │ │ │ ├── UserGroupController.php │ │ │ ├── UserGroupMemberController.php │ │ │ └── UserRecordController.php │ ├── Exception │ │ ├── Http │ │ │ ├── FileException.php │ │ │ ├── GroupException.php │ │ │ ├── HttpExceptionHandler.php │ │ │ ├── LoginException.php │ │ │ ├── ParameterException.php │ │ │ ├── RegisterException.php │ │ │ ├── RpcException.php │ │ │ └── SockException.php │ │ └── SwoftExceptionHandler.php │ ├── Fallback │ │ └── RedisServiceFallback.php │ ├── Helper │ │ └── Functions.php │ ├── Listener │ │ └── TaskFinish.php │ ├── Middlewares │ │ ├── ControllerMiddleware.php │ │ └── TokenCheckMiddleware.php │ ├── Models │ │ ├── Dao │ │ │ └── RpcDao.php │ │ └── Entity │ │ │ ├── Group.php │ │ │ ├── GroupMember.php │ │ │ ├── GroupRecord.php │ │ │ ├── Msg.php │ │ │ ├── User.php │ │ │ ├── UserGroup.php │ │ │ ├── UserGroupMember.php │ │ │ └── UserRecord.php │ ├── Pool │ │ ├── Config │ │ │ ├── GroupPoolConfig.php │ │ │ ├── MsgPoolConfig.php │ │ │ ├── RedisCachePoolConfig.php │ │ │ └── UserPoolConfig.php │ │ ├── GroupServicePool.php │ │ ├── MsgServicePool.php │ │ ├── RedisCacheServicePool.php │ │ └── UserServicePool.php │ ├── Process │ │ ├── KeepUser.php │ │ └── MyProcess.php │ ├── Swoft.php │ └── Tasks │ │ └── SyncTask.php ├── bin │ ├── bootstrap.php │ └── swoft ├── composer.json ├── config │ ├── beans │ │ ├── base.php │ │ ├── console.php │ │ ├── log.php │ │ └── service.php │ ├── define.php │ ├── properties │ │ ├── app.php │ │ ├── breaker.php │ │ ├── cache.php │ │ ├── provider.php │ │ └── service.php │ └── server.php ├── makefile └── runtime │ ├── logs │ └── swoole.log │ └── swoft.pid ├── gateway-api ├── .env ├── Dockerfile ├── app │ ├── Boot │ │ ├── HttpServerListener.php │ │ └── TaskFinish.php │ ├── Breaker │ │ ├── GroupServiceBreaker.php │ │ ├── MsgServiceBreaker.php │ │ ├── RedisServiceBreaker.php │ │ └── UserServiceBreaker.php │ ├── Controllers │ │ └── Api │ │ │ ├── BaseController.php │ │ │ ├── GroupController.php │ │ │ ├── InitController.php │ │ │ ├── LoginController.php │ │ │ ├── MsgController.php │ │ │ ├── ToolController.php │ │ │ ├── UserController.php │ │ │ ├── UserGroupController.php │ │ │ ├── UserGroupMemberController.php │ │ │ └── UserRecordController.php │ ├── Exception │ │ ├── Http │ │ │ ├── FileException.php │ │ │ ├── GroupException.php │ │ │ ├── HttpExceptionHandler.php │ │ │ ├── LoginException.php │ │ │ ├── ParameterException.php │ │ │ ├── RegisterException.php │ │ │ ├── RpcException.php │ │ │ └── SockException.php │ │ └── SwoftExceptionHandler.php │ ├── Fallback │ │ └── RedisServiceFallback.php │ ├── Helper │ │ └── Functions.php │ ├── Listener │ │ └── TaskFinish.php │ ├── Middlewares │ │ ├── ControllerMiddleware.php │ │ └── TokenCheckMiddleware.php │ ├── Models │ │ ├── Dao │ │ │ └── RpcDao.php │ │ └── Entity │ │ │ ├── Group.php │ │ │ ├── GroupMember.php │ │ │ ├── GroupRecord.php │ │ │ ├── Msg.php │ │ │ ├── User.php │ │ │ ├── UserGroup.php │ │ │ ├── UserGroupMember.php │ │ │ └── UserRecord.php │ ├── Pool │ │ ├── Config │ │ │ ├── GroupPoolConfig.php │ │ │ ├── MsgPoolConfig.php │ │ │ ├── RedisCachePoolConfig.php │ │ │ └── UserPoolConfig.php │ │ ├── GroupServicePool.php │ │ ├── MsgServicePool.php │ │ ├── RedisCacheServicePool.php │ │ └── UserServicePool.php │ ├── Process │ │ ├── KeepUser.php │ │ └── MyProcess.php │ ├── Swoft.php │ ├── Tasks │ │ └── SyncTask.php │ └── Websocket │ │ ├── Common │ │ └── TaskHelper.php │ │ ├── Controller │ │ ├── BaseWs.php │ │ ├── Chat.php │ │ ├── Friend.php │ │ ├── Group.php │ │ └── OnOpen.php │ │ ├── Enum │ │ └── MsgBoxEnum.php │ │ ├── Service │ │ ├── ChatService.php │ │ ├── FriendService.php │ │ ├── GroupService.php │ │ ├── GroupUserMemberService.php │ │ ├── MsgBoxServer.php │ │ └── UserService.php │ │ └── WebsocketController.php ├── bin │ ├── bootstrap.php │ └── swoft ├── composer.json ├── config │ ├── beans │ │ ├── base.php │ │ ├── console.php │ │ ├── log.php │ │ └── service.php │ ├── define.php │ ├── properties │ │ ├── app.php │ │ ├── breaker.php │ │ ├── cache.php │ │ ├── db.php │ │ ├── provider.php │ │ └── service.php │ └── server.php ├── makefile ├── public │ └── no └── runtime │ ├── logs │ └── swoole.log │ └── swoft.pid ├── group-service ├── .env ├── Dockerfile ├── app │ ├── Aspect │ │ └── ServicePoint.php │ ├── Exception │ │ ├── Http │ │ │ ├── FileException.php │ │ │ ├── GroupException.php │ │ │ ├── HttpExceptionHandler.php │ │ │ ├── LoginException.php │ │ │ ├── ParameterException.php │ │ │ └── RegisterException.php │ │ └── SwoftExceptionHandler.php │ ├── Helper │ │ └── Functions.php │ ├── Models │ │ ├── Dao │ │ │ ├── GroupMemberModelDao.php │ │ │ ├── GroupModelDao.php │ │ │ └── RpcDao.php │ │ └── Entity │ │ │ ├── Group.php │ │ │ ├── GroupMember.php │ │ │ ├── GroupRecord.php │ │ │ ├── Msg.php │ │ │ ├── User.php │ │ │ ├── UserGroup.php │ │ │ ├── UserGroupMember.php │ │ │ └── UserRecord.php │ ├── Pool │ │ ├── Config │ │ │ └── RedisCachePoolConfig.php │ │ └── RedisCachePool.php │ ├── Services │ │ └── GroupService.php │ └── Swoft.php ├── bin │ ├── bootstrap.php │ └── swoft ├── composer.json ├── config │ ├── beans │ │ ├── base.php │ │ ├── console.php │ │ ├── log.php │ │ └── service.php │ ├── define.php │ ├── properties │ │ ├── app.php │ │ ├── breaker.php │ │ ├── cache.php │ │ ├── db.php │ │ ├── provider.php │ │ └── service.php │ └── server.php ├── makefile ├── public │ └── no └── runtime │ ├── logs │ ├── .gitkeep │ └── swoole.log │ ├── swoft.pid │ └── uploadfiles │ └── .gitkeep ├── makefile ├── msg-service ├── .env ├── Dockerfile ├── app │ ├── Aspect │ │ └── ServicePoint.php │ ├── Exception │ │ └── SwoftExceptionHandler.php │ ├── Helper │ │ └── Functions.php │ ├── Models │ │ ├── Dao │ │ │ └── MsgModelDao.php │ │ └── Entity │ │ │ ├── Group.php │ │ │ ├── GroupMember.php │ │ │ ├── GroupRecord.php │ │ │ ├── Msg.php │ │ │ ├── User.php │ │ │ ├── UserGroup.php │ │ │ ├── UserGroupMember.php │ │ │ └── UserRecord.php │ ├── Pool │ │ ├── Config │ │ │ └── RedisCachePoolConfig.php │ │ └── RedisCachePool.php │ ├── Services │ │ └── MsgService.php │ └── Swoft.php ├── bin │ ├── bootstrap.php │ └── swoft ├── composer.json ├── config │ ├── beans │ │ ├── base.php │ │ ├── console.php │ │ ├── log.php │ │ └── service.php │ ├── define.php │ ├── properties │ │ ├── app.php │ │ ├── breaker.php │ │ ├── cache.php │ │ ├── db.php │ │ ├── provider.php │ │ └── service.php │ └── server.php ├── makefile ├── public │ └── no └── runtime │ ├── logs │ ├── .gitkeep │ └── swoole.log │ ├── swoft.pid │ └── uploadfiles │ └── .gitkeep ├── mysql-init ├── chat.sql └── init.sql ├── redis-service ├── .env ├── Dockerfile ├── app │ ├── Aspect │ │ └── ServicePoint.php │ ├── Exception │ │ └── SwoftExceptionHandler.php │ ├── Helper │ │ └── Functions.php │ ├── Models │ │ └── Entity │ │ │ ├── Group.php │ │ │ ├── GroupMember.php │ │ │ ├── GroupRecord.php │ │ │ ├── Msg.php │ │ │ ├── User.php │ │ │ ├── UserGroup.php │ │ │ ├── UserGroupMember.php │ │ │ └── UserRecord.php │ ├── Pool │ │ ├── Config │ │ │ └── RedisCachePoolConfig.php │ │ └── RedisCachePool.php │ ├── Services │ │ └── UserCacheService.php │ └── Swoft.php ├── bin │ ├── bootstrap.php │ └── swoft ├── composer.json ├── config │ ├── beans │ │ ├── base.php │ │ ├── console.php │ │ ├── log.php │ │ └── service.php │ ├── define.php │ ├── properties │ │ ├── app.php │ │ ├── breaker.php │ │ ├── cache.php │ │ ├── db.php │ │ ├── provider.php │ │ └── service.php │ └── server.php ├── makefile ├── public │ └── no └── runtime │ ├── logs │ ├── .gitkeep │ └── swoole.log │ ├── swoft.pid │ └── uploadfiles │ └── .gitkeep ├── resource ├── api.png ├── process.png ├── services.png ├── start.png └── swoole.png ├── service-components ├── .gitignore ├── composer.json └── src │ ├── Common │ ├── Common.php │ └── Message.php │ ├── Enum │ ├── StatusEnum.php │ └── UserEnum.php │ └── Rpc │ ├── Group │ └── GroupServiceInterface.php │ ├── Msg │ └── MsgServiceInterface.php │ ├── Record │ └── RecordServiceInterface.php │ ├── Redis │ └── UserCacheInterface.php │ └── User │ ├── RecordServiceInterface.php │ ├── UserGroupMemberServiceInterface.php │ ├── UserGroupServiceInterface.php │ └── UserServiceInterface.php └── user-service ├── .env ├── Dockerfile ├── app ├── Aspect │ └── ServicePoint.php ├── Boot │ └── TcpListener.php ├── Breaker │ ├── GroupServiceBreaker.php │ ├── MsgServiceBreaker.php │ ├── RedisServiceBreaker.php │ └── UserServiceBreaker.php ├── Exception │ ├── Http │ │ ├── FileException.php │ │ ├── GroupException.php │ │ ├── HttpExceptionHandler.php │ │ ├── LoginException.php │ │ ├── ParameterException.php │ │ └── RegisterException.php │ └── SwoftExceptionHandler.php ├── Helper │ └── Functions.php ├── Listener │ └── TaskFinish.php ├── Models │ ├── Dao │ │ ├── GroupRecordModelDao.php │ │ ├── RpcDao.php │ │ ├── UserGroupMemberDao.php │ │ ├── UserGroupModelDao.php │ │ ├── UserModelDao.php │ │ └── UserRecordModelDao.php │ ├── Entity │ │ ├── Group.php │ │ ├── GroupMember.php │ │ ├── GroupRecord.php │ │ ├── Msg.php │ │ ├── User.php │ │ ├── UserGroup.php │ │ ├── UserGroupMember.php │ │ └── UserRecord.php │ └── Service │ │ ├── FriendService.php │ │ └── MemberService.php ├── Pool │ ├── Config │ │ ├── GroupPoolConfig.php │ │ ├── MsgPoolConfig.php │ │ ├── RedisCachePoolConfig.php │ │ └── UserPoolConfig.php │ ├── GroupServicePool.php │ ├── MsgServicePool.php │ ├── RedisCacheServicePool.php │ └── UserServicePool.php ├── Services │ ├── RecordService.php │ ├── UserGroupMemberService.php │ ├── UserGroupService.php │ └── UserService.php └── Swoft.php ├── bin ├── bootstrap.php └── swoft ├── composer.json ├── config ├── beans │ ├── base.php │ ├── console.php │ ├── log.php │ └── service.php ├── define.php ├── properties │ ├── app.php │ ├── breaker.php │ ├── cache.php │ ├── db.php │ ├── provider.php │ └── service.php └── server.php ├── makefile ├── public └── no └── runtime ├── logs ├── .gitkeep └── swoole.log ├── swoft.pid └── uploadfiles └── .gitkeep /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gateway-api-cloud/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/.env -------------------------------------------------------------------------------- /gateway-api-cloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/Dockerfile -------------------------------------------------------------------------------- /gateway-api-cloud/app/Boot/HttpServerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Boot/HttpServerListener.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Boot/TaskFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Boot/TaskFinish.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Breaker/GroupServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Breaker/GroupServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Breaker/MsgServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Breaker/MsgServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Breaker/RedisServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Breaker/RedisServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Breaker/UserServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Breaker/UserServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/BaseController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/GroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/GroupController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/InitController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/InitController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/LoginController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/MsgController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/MsgController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/ToolController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/ToolController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/UserController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/UserGroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/UserGroupController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/UserGroupMemberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/UserGroupMemberController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Controllers/Api/UserRecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Controllers/Api/UserRecordController.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/FileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/FileException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/GroupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/GroupException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/HttpExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/HttpExceptionHandler.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/LoginException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/LoginException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/ParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/ParameterException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/RegisterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/RegisterException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/RpcException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/RpcException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/Http/SockException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/Http/SockException.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Exception/SwoftExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Exception/SwoftExceptionHandler.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Fallback/RedisServiceFallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Fallback/RedisServiceFallback.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Helper/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Helper/Functions.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Listener/TaskFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Listener/TaskFinish.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Middlewares/ControllerMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Middlewares/ControllerMiddleware.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Middlewares/TokenCheckMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Middlewares/TokenCheckMiddleware.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Dao/RpcDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Dao/RpcDao.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/Group.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/GroupMember.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/GroupRecord.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/Msg.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/User.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/UserGroup.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/UserGroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/UserGroupMember.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Models/Entity/UserRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Models/Entity/UserRecord.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/Config/GroupPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/Config/GroupPoolConfig.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/Config/MsgPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/Config/MsgPoolConfig.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/Config/RedisCachePoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/Config/RedisCachePoolConfig.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/Config/UserPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/Config/UserPoolConfig.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/GroupServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/GroupServicePool.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/MsgServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/MsgServicePool.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/RedisCacheServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/RedisCacheServicePool.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Pool/UserServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Pool/UserServicePool.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Process/KeepUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Process/KeepUser.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Process/MyProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Process/MyProcess.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Swoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Swoft.php -------------------------------------------------------------------------------- /gateway-api-cloud/app/Tasks/SyncTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/app/Tasks/SyncTask.php -------------------------------------------------------------------------------- /gateway-api-cloud/bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/bin/bootstrap.php -------------------------------------------------------------------------------- /gateway-api-cloud/bin/swoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/bin/swoft -------------------------------------------------------------------------------- /gateway-api-cloud/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/composer.json -------------------------------------------------------------------------------- /gateway-api-cloud/config/beans/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/beans/base.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/beans/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/beans/console.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/beans/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/beans/log.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/beans/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/beans/service.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/define.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/define.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/properties/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/properties/app.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/properties/breaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/properties/breaker.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/properties/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/properties/cache.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/properties/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/properties/provider.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/properties/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/properties/service.php -------------------------------------------------------------------------------- /gateway-api-cloud/config/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/config/server.php -------------------------------------------------------------------------------- /gateway-api-cloud/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/makefile -------------------------------------------------------------------------------- /gateway-api-cloud/runtime/logs/swoole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api-cloud/runtime/logs/swoole.log -------------------------------------------------------------------------------- /gateway-api-cloud/runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 8306,8307 -------------------------------------------------------------------------------- /gateway-api/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/.env -------------------------------------------------------------------------------- /gateway-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/Dockerfile -------------------------------------------------------------------------------- /gateway-api/app/Boot/HttpServerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Boot/HttpServerListener.php -------------------------------------------------------------------------------- /gateway-api/app/Boot/TaskFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Boot/TaskFinish.php -------------------------------------------------------------------------------- /gateway-api/app/Breaker/GroupServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Breaker/GroupServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api/app/Breaker/MsgServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Breaker/MsgServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api/app/Breaker/RedisServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Breaker/RedisServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api/app/Breaker/UserServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Breaker/UserServiceBreaker.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/BaseController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/GroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/GroupController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/InitController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/InitController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/LoginController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/MsgController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/MsgController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/ToolController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/ToolController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/UserController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/UserGroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/UserGroupController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/UserGroupMemberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/UserGroupMemberController.php -------------------------------------------------------------------------------- /gateway-api/app/Controllers/Api/UserRecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Controllers/Api/UserRecordController.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/FileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/FileException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/GroupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/GroupException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/HttpExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/HttpExceptionHandler.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/LoginException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/LoginException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/ParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/ParameterException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/RegisterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/RegisterException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/RpcException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/RpcException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/Http/SockException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/Http/SockException.php -------------------------------------------------------------------------------- /gateway-api/app/Exception/SwoftExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Exception/SwoftExceptionHandler.php -------------------------------------------------------------------------------- /gateway-api/app/Fallback/RedisServiceFallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Fallback/RedisServiceFallback.php -------------------------------------------------------------------------------- /gateway-api/app/Helper/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Helper/Functions.php -------------------------------------------------------------------------------- /gateway-api/app/Listener/TaskFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Listener/TaskFinish.php -------------------------------------------------------------------------------- /gateway-api/app/Middlewares/ControllerMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Middlewares/ControllerMiddleware.php -------------------------------------------------------------------------------- /gateway-api/app/Middlewares/TokenCheckMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Middlewares/TokenCheckMiddleware.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Dao/RpcDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Dao/RpcDao.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/Group.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/GroupMember.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/GroupRecord.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/Msg.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/User.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/UserGroup.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/UserGroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/UserGroupMember.php -------------------------------------------------------------------------------- /gateway-api/app/Models/Entity/UserRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Models/Entity/UserRecord.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/Config/GroupPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/Config/GroupPoolConfig.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/Config/MsgPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/Config/MsgPoolConfig.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/Config/RedisCachePoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/Config/RedisCachePoolConfig.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/Config/UserPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/Config/UserPoolConfig.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/GroupServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/GroupServicePool.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/MsgServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/MsgServicePool.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/RedisCacheServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/RedisCacheServicePool.php -------------------------------------------------------------------------------- /gateway-api/app/Pool/UserServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Pool/UserServicePool.php -------------------------------------------------------------------------------- /gateway-api/app/Process/KeepUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Process/KeepUser.php -------------------------------------------------------------------------------- /gateway-api/app/Process/MyProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Process/MyProcess.php -------------------------------------------------------------------------------- /gateway-api/app/Swoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Swoft.php -------------------------------------------------------------------------------- /gateway-api/app/Tasks/SyncTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Tasks/SyncTask.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Common/TaskHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Common/TaskHelper.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Controller/BaseWs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Controller/BaseWs.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Controller/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Controller/Chat.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Controller/Friend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Controller/Friend.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Controller/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Controller/Group.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Controller/OnOpen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Controller/OnOpen.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Enum/MsgBoxEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Enum/MsgBoxEnum.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Service/ChatService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Service/ChatService.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Service/FriendService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Service/FriendService.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Service/GroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Service/GroupService.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Service/GroupUserMemberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Service/GroupUserMemberService.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Service/MsgBoxServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Service/MsgBoxServer.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/Service/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/Service/UserService.php -------------------------------------------------------------------------------- /gateway-api/app/Websocket/WebsocketController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/app/Websocket/WebsocketController.php -------------------------------------------------------------------------------- /gateway-api/bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/bin/bootstrap.php -------------------------------------------------------------------------------- /gateway-api/bin/swoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/bin/swoft -------------------------------------------------------------------------------- /gateway-api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/composer.json -------------------------------------------------------------------------------- /gateway-api/config/beans/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/beans/base.php -------------------------------------------------------------------------------- /gateway-api/config/beans/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/beans/console.php -------------------------------------------------------------------------------- /gateway-api/config/beans/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/beans/log.php -------------------------------------------------------------------------------- /gateway-api/config/beans/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/beans/service.php -------------------------------------------------------------------------------- /gateway-api/config/define.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/define.php -------------------------------------------------------------------------------- /gateway-api/config/properties/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/properties/app.php -------------------------------------------------------------------------------- /gateway-api/config/properties/breaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/properties/breaker.php -------------------------------------------------------------------------------- /gateway-api/config/properties/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/properties/cache.php -------------------------------------------------------------------------------- /gateway-api/config/properties/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/properties/db.php -------------------------------------------------------------------------------- /gateway-api/config/properties/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/properties/provider.php -------------------------------------------------------------------------------- /gateway-api/config/properties/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/properties/service.php -------------------------------------------------------------------------------- /gateway-api/config/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/config/server.php -------------------------------------------------------------------------------- /gateway-api/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/makefile -------------------------------------------------------------------------------- /gateway-api/public/no: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gateway-api/runtime/logs/swoole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/gateway-api/runtime/logs/swoole.log -------------------------------------------------------------------------------- /gateway-api/runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 8306,8307 -------------------------------------------------------------------------------- /group-service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/.env -------------------------------------------------------------------------------- /group-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/Dockerfile -------------------------------------------------------------------------------- /group-service/app/Aspect/ServicePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Aspect/ServicePoint.php -------------------------------------------------------------------------------- /group-service/app/Exception/Http/FileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/Http/FileException.php -------------------------------------------------------------------------------- /group-service/app/Exception/Http/GroupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/Http/GroupException.php -------------------------------------------------------------------------------- /group-service/app/Exception/Http/HttpExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/Http/HttpExceptionHandler.php -------------------------------------------------------------------------------- /group-service/app/Exception/Http/LoginException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/Http/LoginException.php -------------------------------------------------------------------------------- /group-service/app/Exception/Http/ParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/Http/ParameterException.php -------------------------------------------------------------------------------- /group-service/app/Exception/Http/RegisterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/Http/RegisterException.php -------------------------------------------------------------------------------- /group-service/app/Exception/SwoftExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Exception/SwoftExceptionHandler.php -------------------------------------------------------------------------------- /group-service/app/Helper/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Helper/Functions.php -------------------------------------------------------------------------------- /group-service/app/Models/Dao/GroupMemberModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Dao/GroupMemberModelDao.php -------------------------------------------------------------------------------- /group-service/app/Models/Dao/GroupModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Dao/GroupModelDao.php -------------------------------------------------------------------------------- /group-service/app/Models/Dao/RpcDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Dao/RpcDao.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/Group.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/GroupMember.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/GroupRecord.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/Msg.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/User.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/UserGroup.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/UserGroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/UserGroupMember.php -------------------------------------------------------------------------------- /group-service/app/Models/Entity/UserRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Models/Entity/UserRecord.php -------------------------------------------------------------------------------- /group-service/app/Pool/Config/RedisCachePoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Pool/Config/RedisCachePoolConfig.php -------------------------------------------------------------------------------- /group-service/app/Pool/RedisCachePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Pool/RedisCachePool.php -------------------------------------------------------------------------------- /group-service/app/Services/GroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Services/GroupService.php -------------------------------------------------------------------------------- /group-service/app/Swoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/app/Swoft.php -------------------------------------------------------------------------------- /group-service/bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/bin/bootstrap.php -------------------------------------------------------------------------------- /group-service/bin/swoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/bin/swoft -------------------------------------------------------------------------------- /group-service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/composer.json -------------------------------------------------------------------------------- /group-service/config/beans/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/beans/base.php -------------------------------------------------------------------------------- /group-service/config/beans/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/beans/console.php -------------------------------------------------------------------------------- /group-service/config/beans/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/beans/log.php -------------------------------------------------------------------------------- /group-service/config/beans/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/beans/service.php -------------------------------------------------------------------------------- /group-service/config/define.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/define.php -------------------------------------------------------------------------------- /group-service/config/properties/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/properties/app.php -------------------------------------------------------------------------------- /group-service/config/properties/breaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/properties/breaker.php -------------------------------------------------------------------------------- /group-service/config/properties/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/properties/cache.php -------------------------------------------------------------------------------- /group-service/config/properties/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/properties/db.php -------------------------------------------------------------------------------- /group-service/config/properties/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/properties/provider.php -------------------------------------------------------------------------------- /group-service/config/properties/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/properties/service.php -------------------------------------------------------------------------------- /group-service/config/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/config/server.php -------------------------------------------------------------------------------- /group-service/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/makefile -------------------------------------------------------------------------------- /group-service/public/no: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /group-service/runtime/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /group-service/runtime/logs/swoole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/group-service/runtime/logs/swoole.log -------------------------------------------------------------------------------- /group-service/runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 3131,3132 -------------------------------------------------------------------------------- /group-service/runtime/uploadfiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/makefile -------------------------------------------------------------------------------- /msg-service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/.env -------------------------------------------------------------------------------- /msg-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/Dockerfile -------------------------------------------------------------------------------- /msg-service/app/Aspect/ServicePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Aspect/ServicePoint.php -------------------------------------------------------------------------------- /msg-service/app/Exception/SwoftExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Exception/SwoftExceptionHandler.php -------------------------------------------------------------------------------- /msg-service/app/Helper/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Helper/Functions.php -------------------------------------------------------------------------------- /msg-service/app/Models/Dao/MsgModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Dao/MsgModelDao.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/Group.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/GroupMember.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/GroupRecord.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/Msg.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/User.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/UserGroup.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/UserGroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/UserGroupMember.php -------------------------------------------------------------------------------- /msg-service/app/Models/Entity/UserRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Models/Entity/UserRecord.php -------------------------------------------------------------------------------- /msg-service/app/Pool/Config/RedisCachePoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Pool/Config/RedisCachePoolConfig.php -------------------------------------------------------------------------------- /msg-service/app/Pool/RedisCachePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Pool/RedisCachePool.php -------------------------------------------------------------------------------- /msg-service/app/Services/MsgService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Services/MsgService.php -------------------------------------------------------------------------------- /msg-service/app/Swoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/app/Swoft.php -------------------------------------------------------------------------------- /msg-service/bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/bin/bootstrap.php -------------------------------------------------------------------------------- /msg-service/bin/swoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/bin/swoft -------------------------------------------------------------------------------- /msg-service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/composer.json -------------------------------------------------------------------------------- /msg-service/config/beans/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/beans/base.php -------------------------------------------------------------------------------- /msg-service/config/beans/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/beans/console.php -------------------------------------------------------------------------------- /msg-service/config/beans/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/beans/log.php -------------------------------------------------------------------------------- /msg-service/config/beans/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/beans/service.php -------------------------------------------------------------------------------- /msg-service/config/define.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/define.php -------------------------------------------------------------------------------- /msg-service/config/properties/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/properties/app.php -------------------------------------------------------------------------------- /msg-service/config/properties/breaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/properties/breaker.php -------------------------------------------------------------------------------- /msg-service/config/properties/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/properties/cache.php -------------------------------------------------------------------------------- /msg-service/config/properties/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/properties/db.php -------------------------------------------------------------------------------- /msg-service/config/properties/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/properties/provider.php -------------------------------------------------------------------------------- /msg-service/config/properties/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/properties/service.php -------------------------------------------------------------------------------- /msg-service/config/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/config/server.php -------------------------------------------------------------------------------- /msg-service/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/makefile -------------------------------------------------------------------------------- /msg-service/public/no: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msg-service/runtime/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msg-service/runtime/logs/swoole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/msg-service/runtime/logs/swoole.log -------------------------------------------------------------------------------- /msg-service/runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 3131,3132 -------------------------------------------------------------------------------- /msg-service/runtime/uploadfiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-init/chat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/mysql-init/chat.sql -------------------------------------------------------------------------------- /mysql-init/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/mysql-init/init.sql -------------------------------------------------------------------------------- /redis-service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/.env -------------------------------------------------------------------------------- /redis-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/Dockerfile -------------------------------------------------------------------------------- /redis-service/app/Aspect/ServicePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Aspect/ServicePoint.php -------------------------------------------------------------------------------- /redis-service/app/Exception/SwoftExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Exception/SwoftExceptionHandler.php -------------------------------------------------------------------------------- /redis-service/app/Helper/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Helper/Functions.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/Group.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/GroupMember.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/GroupRecord.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/Msg.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/User.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/UserGroup.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/UserGroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/UserGroupMember.php -------------------------------------------------------------------------------- /redis-service/app/Models/Entity/UserRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Models/Entity/UserRecord.php -------------------------------------------------------------------------------- /redis-service/app/Pool/Config/RedisCachePoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Pool/Config/RedisCachePoolConfig.php -------------------------------------------------------------------------------- /redis-service/app/Pool/RedisCachePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Pool/RedisCachePool.php -------------------------------------------------------------------------------- /redis-service/app/Services/UserCacheService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Services/UserCacheService.php -------------------------------------------------------------------------------- /redis-service/app/Swoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/app/Swoft.php -------------------------------------------------------------------------------- /redis-service/bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/bin/bootstrap.php -------------------------------------------------------------------------------- /redis-service/bin/swoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/bin/swoft -------------------------------------------------------------------------------- /redis-service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/composer.json -------------------------------------------------------------------------------- /redis-service/config/beans/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/beans/base.php -------------------------------------------------------------------------------- /redis-service/config/beans/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/beans/console.php -------------------------------------------------------------------------------- /redis-service/config/beans/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/beans/log.php -------------------------------------------------------------------------------- /redis-service/config/beans/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/beans/service.php -------------------------------------------------------------------------------- /redis-service/config/define.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/define.php -------------------------------------------------------------------------------- /redis-service/config/properties/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/properties/app.php -------------------------------------------------------------------------------- /redis-service/config/properties/breaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/properties/breaker.php -------------------------------------------------------------------------------- /redis-service/config/properties/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/properties/cache.php -------------------------------------------------------------------------------- /redis-service/config/properties/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/properties/db.php -------------------------------------------------------------------------------- /redis-service/config/properties/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/properties/provider.php -------------------------------------------------------------------------------- /redis-service/config/properties/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/properties/service.php -------------------------------------------------------------------------------- /redis-service/config/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/config/server.php -------------------------------------------------------------------------------- /redis-service/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/makefile -------------------------------------------------------------------------------- /redis-service/public/no: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis-service/runtime/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis-service/runtime/logs/swoole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/redis-service/runtime/logs/swoole.log -------------------------------------------------------------------------------- /redis-service/runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 3131,3132 -------------------------------------------------------------------------------- /redis-service/runtime/uploadfiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/resource/api.png -------------------------------------------------------------------------------- /resource/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/resource/process.png -------------------------------------------------------------------------------- /resource/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/resource/services.png -------------------------------------------------------------------------------- /resource/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/resource/start.png -------------------------------------------------------------------------------- /resource/swoole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/resource/swoole.png -------------------------------------------------------------------------------- /service-components/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /service-components/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/composer.json -------------------------------------------------------------------------------- /service-components/src/Common/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Common/Common.php -------------------------------------------------------------------------------- /service-components/src/Common/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Common/Message.php -------------------------------------------------------------------------------- /service-components/src/Enum/StatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Enum/StatusEnum.php -------------------------------------------------------------------------------- /service-components/src/Enum/UserEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Enum/UserEnum.php -------------------------------------------------------------------------------- /service-components/src/Rpc/Group/GroupServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/Group/GroupServiceInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/Msg/MsgServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/Msg/MsgServiceInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/Record/RecordServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/Record/RecordServiceInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/Redis/UserCacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/Redis/UserCacheInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/User/RecordServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/User/RecordServiceInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/User/UserGroupMemberServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/User/UserGroupMemberServiceInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/User/UserGroupServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/User/UserGroupServiceInterface.php -------------------------------------------------------------------------------- /service-components/src/Rpc/User/UserServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/service-components/src/Rpc/User/UserServiceInterface.php -------------------------------------------------------------------------------- /user-service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/.env -------------------------------------------------------------------------------- /user-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/Dockerfile -------------------------------------------------------------------------------- /user-service/app/Aspect/ServicePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Aspect/ServicePoint.php -------------------------------------------------------------------------------- /user-service/app/Boot/TcpListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Boot/TcpListener.php -------------------------------------------------------------------------------- /user-service/app/Breaker/GroupServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Breaker/GroupServiceBreaker.php -------------------------------------------------------------------------------- /user-service/app/Breaker/MsgServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Breaker/MsgServiceBreaker.php -------------------------------------------------------------------------------- /user-service/app/Breaker/RedisServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Breaker/RedisServiceBreaker.php -------------------------------------------------------------------------------- /user-service/app/Breaker/UserServiceBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Breaker/UserServiceBreaker.php -------------------------------------------------------------------------------- /user-service/app/Exception/Http/FileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/Http/FileException.php -------------------------------------------------------------------------------- /user-service/app/Exception/Http/GroupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/Http/GroupException.php -------------------------------------------------------------------------------- /user-service/app/Exception/Http/HttpExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/Http/HttpExceptionHandler.php -------------------------------------------------------------------------------- /user-service/app/Exception/Http/LoginException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/Http/LoginException.php -------------------------------------------------------------------------------- /user-service/app/Exception/Http/ParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/Http/ParameterException.php -------------------------------------------------------------------------------- /user-service/app/Exception/Http/RegisterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/Http/RegisterException.php -------------------------------------------------------------------------------- /user-service/app/Exception/SwoftExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Exception/SwoftExceptionHandler.php -------------------------------------------------------------------------------- /user-service/app/Helper/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Helper/Functions.php -------------------------------------------------------------------------------- /user-service/app/Listener/TaskFinish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Listener/TaskFinish.php -------------------------------------------------------------------------------- /user-service/app/Models/Dao/GroupRecordModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Dao/GroupRecordModelDao.php -------------------------------------------------------------------------------- /user-service/app/Models/Dao/RpcDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Dao/RpcDao.php -------------------------------------------------------------------------------- /user-service/app/Models/Dao/UserGroupMemberDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Dao/UserGroupMemberDao.php -------------------------------------------------------------------------------- /user-service/app/Models/Dao/UserGroupModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Dao/UserGroupModelDao.php -------------------------------------------------------------------------------- /user-service/app/Models/Dao/UserModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Dao/UserModelDao.php -------------------------------------------------------------------------------- /user-service/app/Models/Dao/UserRecordModelDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Dao/UserRecordModelDao.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/Group.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/GroupMember.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/GroupRecord.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/Msg.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/User.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/UserGroup.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/UserGroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/UserGroupMember.php -------------------------------------------------------------------------------- /user-service/app/Models/Entity/UserRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Entity/UserRecord.php -------------------------------------------------------------------------------- /user-service/app/Models/Service/FriendService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Service/FriendService.php -------------------------------------------------------------------------------- /user-service/app/Models/Service/MemberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Models/Service/MemberService.php -------------------------------------------------------------------------------- /user-service/app/Pool/Config/GroupPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/Config/GroupPoolConfig.php -------------------------------------------------------------------------------- /user-service/app/Pool/Config/MsgPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/Config/MsgPoolConfig.php -------------------------------------------------------------------------------- /user-service/app/Pool/Config/RedisCachePoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/Config/RedisCachePoolConfig.php -------------------------------------------------------------------------------- /user-service/app/Pool/Config/UserPoolConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/Config/UserPoolConfig.php -------------------------------------------------------------------------------- /user-service/app/Pool/GroupServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/GroupServicePool.php -------------------------------------------------------------------------------- /user-service/app/Pool/MsgServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/MsgServicePool.php -------------------------------------------------------------------------------- /user-service/app/Pool/RedisCacheServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/RedisCacheServicePool.php -------------------------------------------------------------------------------- /user-service/app/Pool/UserServicePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Pool/UserServicePool.php -------------------------------------------------------------------------------- /user-service/app/Services/RecordService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Services/RecordService.php -------------------------------------------------------------------------------- /user-service/app/Services/UserGroupMemberService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Services/UserGroupMemberService.php -------------------------------------------------------------------------------- /user-service/app/Services/UserGroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Services/UserGroupService.php -------------------------------------------------------------------------------- /user-service/app/Services/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Services/UserService.php -------------------------------------------------------------------------------- /user-service/app/Swoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/app/Swoft.php -------------------------------------------------------------------------------- /user-service/bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/bin/bootstrap.php -------------------------------------------------------------------------------- /user-service/bin/swoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/bin/swoft -------------------------------------------------------------------------------- /user-service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/composer.json -------------------------------------------------------------------------------- /user-service/config/beans/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/beans/base.php -------------------------------------------------------------------------------- /user-service/config/beans/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/beans/console.php -------------------------------------------------------------------------------- /user-service/config/beans/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/beans/log.php -------------------------------------------------------------------------------- /user-service/config/beans/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/beans/service.php -------------------------------------------------------------------------------- /user-service/config/define.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/define.php -------------------------------------------------------------------------------- /user-service/config/properties/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/properties/app.php -------------------------------------------------------------------------------- /user-service/config/properties/breaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/properties/breaker.php -------------------------------------------------------------------------------- /user-service/config/properties/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/properties/cache.php -------------------------------------------------------------------------------- /user-service/config/properties/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/properties/db.php -------------------------------------------------------------------------------- /user-service/config/properties/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/properties/provider.php -------------------------------------------------------------------------------- /user-service/config/properties/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/properties/service.php -------------------------------------------------------------------------------- /user-service/config/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/config/server.php -------------------------------------------------------------------------------- /user-service/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/makefile -------------------------------------------------------------------------------- /user-service/public/no: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user-service/runtime/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user-service/runtime/logs/swoole.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brewlin/swoft-im/HEAD/user-service/runtime/logs/swoole.log -------------------------------------------------------------------------------- /user-service/runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 3632,3633 -------------------------------------------------------------------------------- /user-service/runtime/uploadfiles/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------