├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── record ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── record │ │ │ ├── RecordContext.java │ │ │ ├── manager │ │ │ ├── IRecordHub.java │ │ │ └── RecordHub.java │ │ │ ├── model │ │ │ ├── anno │ │ │ │ ├── RecordCache.java │ │ │ │ └── RecordId.java │ │ │ ├── appender │ │ │ │ └── RecordAppender.java │ │ │ ├── config │ │ │ │ ├── CacheStrategy.java │ │ │ │ ├── CachesConfig.java │ │ │ │ ├── HostConfig.java │ │ │ │ ├── PersisterStrategy.java │ │ │ │ ├── PersisterTypeEnum.java │ │ │ │ ├── PersistersConfig.java │ │ │ │ └── RecordConfig.java │ │ │ ├── constant │ │ │ │ └── RecordConstant.java │ │ │ ├── persister │ │ │ │ ├── AbstractRecordPersister.java │ │ │ │ ├── CronRecordPersister.java │ │ │ │ ├── IRecordPersister.java │ │ │ │ └── TimeRecordPersister.java │ │ │ ├── record │ │ │ │ └── IRecord.java │ │ │ └── vo │ │ │ │ └── RecordDef.java │ │ │ ├── schema │ │ │ ├── NamespaceHandler.java │ │ │ └── RecordDefinitionParser.java │ │ │ └── util │ │ │ └── RecordUtils.java │ └── resources │ │ ├── META-INF │ │ ├── spring.handlers │ │ └── spring.schemas │ │ └── record-1.0.xsd │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── record │ │ ├── ApplicationTest.java │ │ ├── record │ │ └── CurrencyRecord.java │ │ └── search │ │ ├── lucene │ │ ├── analyzer │ │ │ └── LanguageAnalyzerTest.java │ │ └── query │ │ │ ├── index │ │ │ ├── IndexTest.java │ │ │ ├── News.java │ │ │ └── QueryTest.java │ │ │ └── topterm │ │ │ ├── CreateNewsDocsTest.java │ │ │ └── GetTopTermsTest.java │ │ └── rest │ │ ├── Blog.java │ │ ├── RestHighLevelClientTest.java │ │ └── RestLowLevelClientTest.java │ └── resources │ ├── application.xml │ └── logback-test.xml ├── seo-puppeteer ├── img │ ├── home.png │ ├── home1.png │ ├── home10.png │ ├── home11.png │ ├── home2.png │ ├── home3.png │ ├── home4.png │ ├── home5.png │ ├── home6.png │ ├── home7.png │ ├── home8.png │ └── home9.png ├── linux-set-up.md └── spider.js ├── web ├── .editorconfig ├── .env ├── .env.development ├── .env.production ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── img │ ├── home.png │ ├── home1.png │ ├── home10.png │ ├── home11.png │ ├── home2.png │ ├── home3.png │ ├── home4.png │ ├── home5.png │ ├── home6.png │ ├── home7.png │ ├── home8.png │ └── home9.png ├── package.json ├── postcss.config.js ├── public │ ├── baidu_verify_cPjPRxVtp0.html │ ├── favicon.ico │ ├── favicon.png │ ├── google98e7ae9652f47315.html │ ├── img │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── android-chrome-maskable-192x192.png │ │ │ ├── android-chrome-maskable-512x512.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── msapplication-icon-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ ├── index.html │ └── robots.txt ├── src │ ├── App.vue │ ├── apiHttp │ │ ├── adminApi.js │ │ ├── coinApi.js │ │ ├── feedApi.js │ │ ├── homeApi.js │ │ ├── loginApi.js │ │ ├── ossApi.js │ │ ├── timeApi.js │ │ ├── userApi.js │ │ └── wordApi.js │ ├── apiWs │ │ ├── friendApi.js │ │ ├── groupApi.js │ │ ├── index.js │ │ ├── loginApi.js │ │ └── userApi.js │ ├── asset │ │ ├── footer │ │ │ └── police-bei.png │ │ ├── icon │ │ │ ├── apple-action-icon.png │ │ │ └── default_avatar.gif │ │ └── logo │ │ │ ├── logo.jpg │ │ │ ├── zfoo_large.jpg │ │ │ ├── zfoo_normal.jpg │ │ │ └── zfoo_small.jpg │ ├── component │ │ ├── AppBar.vue │ │ ├── BottomSheet.vue │ │ ├── Group.vue │ │ ├── Snackbar.vue │ │ ├── View.vue │ │ ├── app │ │ │ ├── AppSearch.vue │ │ │ ├── AppSearchSelector.vue │ │ │ ├── LoginDialog.vue │ │ │ ├── ReportDialog.vue │ │ │ └── SettingDialog.vue │ │ ├── base │ │ │ ├── AppFooter.vue │ │ │ ├── Creation.vue │ │ │ ├── DisplayContent.vue │ │ │ ├── IconWithTooltip.vue │ │ │ ├── LocationSelector.vue │ │ │ ├── NotFound.vue │ │ │ ├── PhoneVerify.vue │ │ │ ├── UserItem.vue │ │ │ └── UserList.vue │ │ ├── group │ │ │ ├── FriendHot.vue │ │ │ ├── FriendOperation.vue │ │ │ ├── GroupButton.vue │ │ │ ├── GroupInfo.vue │ │ │ ├── GroupOperation.vue │ │ │ ├── common │ │ │ │ ├── ChatInput.vue │ │ │ │ ├── Message.vue │ │ │ │ └── MessageEdit.vue │ │ │ ├── friend │ │ │ │ ├── chat │ │ │ │ │ ├── FriendChat.vue │ │ │ │ │ ├── FriendChatInput.vue │ │ │ │ │ └── FriendChatTitle.vue │ │ │ │ └── operation │ │ │ │ │ ├── Blacklist.vue │ │ │ │ │ ├── FriendAll.vue │ │ │ │ │ ├── FriendApply.vue │ │ │ │ │ └── FriendSearch.vue │ │ │ └── group │ │ │ │ ├── GroupAvatar.vue │ │ │ │ ├── chat │ │ │ │ ├── GroupChat.vue │ │ │ │ ├── GroupChatInput.vue │ │ │ │ ├── GroupChatTitle.vue │ │ │ │ └── channel │ │ │ │ │ ├── ChannelAuth.vue │ │ │ │ │ ├── ChannelAuthSelector.vue │ │ │ │ │ ├── ChannelPin.vue │ │ │ │ │ └── ChannelSetting.vue │ │ │ │ ├── member │ │ │ │ ├── GroupChangeAdmin.vue │ │ │ │ ├── MemberInfo.vue │ │ │ │ └── MemberInfoTitle.vue │ │ │ │ └── operation │ │ │ │ ├── ChannelBoxCreate.vue │ │ │ │ ├── ChannelBoxEdit.vue │ │ │ │ ├── ChannelCreate.vue │ │ │ │ ├── GroupAuth.vue │ │ │ │ ├── GroupCode.vue │ │ │ │ ├── GroupCreate.vue │ │ │ │ ├── GroupJoin.vue │ │ │ │ ├── GroupLeave.vue │ │ │ │ ├── GroupSetting.vue │ │ │ │ └── base │ │ │ │ ├── GroupAuthNameInput.vue │ │ │ │ ├── GroupAuthSelector.vue │ │ │ │ └── GroupColorSelector.vue │ │ └── time │ │ │ ├── TimeAvatar.vue │ │ │ ├── TimeChip.vue │ │ │ ├── TimeContent.vue │ │ │ ├── TimeImgGallery.vue │ │ │ ├── TimeKey.vue │ │ │ ├── TimeLinkAlbum.vue │ │ │ ├── TimeOperation.vue │ │ │ ├── TimeSlice.vue │ │ │ ├── TimeVideo.vue │ │ │ └── creation │ │ │ ├── LicenseSelector.vue │ │ │ ├── TimeSliceDateSelector.vue │ │ │ ├── TimeSliceItemSelector.vue │ │ │ ├── TimeSlicePersonSelector.vue │ │ │ └── TimeSliceTimeSelector.vue │ ├── constant │ │ └── constant.js │ ├── i18n │ │ ├── cn │ │ │ ├── codeEnum.js │ │ │ ├── industries.js │ │ │ ├── license.js │ │ │ ├── local.js │ │ │ ├── locations.js │ │ │ ├── reports.js │ │ │ ├── subjects.js │ │ │ └── userTerms.js │ │ ├── en │ │ │ ├── local.js │ │ │ └── locations.js │ │ └── i18n.js │ ├── jsProtocol │ │ ├── ProtocolManager.js │ │ ├── buffer │ │ │ ├── ByteBuffer.js │ │ │ ├── long.js │ │ │ └── longbits.js │ │ ├── cache │ │ │ ├── GetUserCacheRequest.js │ │ │ ├── GetUserCacheResponse.js │ │ │ ├── SearchUserRequest.js │ │ │ ├── SearchUserResponse.js │ │ │ └── model │ │ │ │ └── UserCache.js │ │ ├── common │ │ │ ├── ChatMessage.js │ │ │ ├── Error.js │ │ │ ├── Heartbeat.js │ │ │ ├── Message.js │ │ │ ├── PairLS.js │ │ │ ├── PairLong.js │ │ │ ├── PairString.js │ │ │ ├── Ping.js │ │ │ ├── Pong.js │ │ │ ├── TripleLSS.js │ │ │ ├── TripleLong.js │ │ │ ├── TripleString.js │ │ │ └── time │ │ │ │ ├── TimeKeyHeaderVO.js │ │ │ │ ├── TimeKeyRowVO.js │ │ │ │ ├── TimeKeyVO.js │ │ │ │ ├── TimeLinkAlbumVO.js │ │ │ │ └── VideoLinkVO.js │ │ ├── friend │ │ │ ├── DeleteFriendMessageNotice.js │ │ │ ├── EditFriendMessageNotice.js │ │ │ ├── FriendMessageNotice.js │ │ │ ├── NewApplyFriendNotice.js │ │ │ ├── NewFriendNotice.js │ │ │ ├── chat │ │ │ │ ├── DeleteFriendMessageRequest.js │ │ │ │ ├── EditFriendMessageRequest.js │ │ │ │ ├── FriendChatRequest.js │ │ │ │ ├── FriendHistoryMessageRequest.js │ │ │ │ ├── FriendHistoryMessageResponse.js │ │ │ │ ├── ReadFriendMessageRequest.js │ │ │ │ └── ReadFriendMessageResponse.js │ │ │ ├── model │ │ │ │ ├── ApplyFriendVO.js │ │ │ │ └── FriendInfoVO.js │ │ │ └── operation │ │ │ │ ├── AcceptFriendRequest.js │ │ │ │ ├── ApplyFriendRequest.js │ │ │ │ ├── BlacklistCancelRequest.js │ │ │ │ ├── BlacklistCancelResponse.js │ │ │ │ ├── BlacklistRequest.js │ │ │ │ ├── BlacklistResponse.js │ │ │ │ ├── DeleteFriendRequest.js │ │ │ │ ├── DeleteFriendResponse.js │ │ │ │ ├── MarkFriendRequest.js │ │ │ │ ├── MarkFriendResponse.js │ │ │ │ ├── RejectFriendRequest.js │ │ │ │ └── RejectFriendResponse.js │ │ ├── group │ │ │ ├── DeleteGroupMessageNotice.js │ │ │ ├── DeleteGroupNotice.js │ │ │ ├── EditGroupMessageNotice.js │ │ │ ├── GroupChatMessageNotice.js │ │ │ ├── GroupUpdateNotice.js │ │ │ ├── KickMemberNotice.js │ │ │ ├── MemberGroupAuthIdUpdateNotice.js │ │ │ ├── auth │ │ │ │ ├── AddMemberToGroupAuthRequest.js │ │ │ │ ├── AddMemberToGroupAuthResponse.js │ │ │ │ ├── ChangeGroupAdminRequest.js │ │ │ │ ├── ChangeGroupAdminResponse.js │ │ │ │ ├── CreateGroupAuthRequest.js │ │ │ │ ├── DeleteGroupAuthRequest.js │ │ │ │ ├── DeleteGroupRequest.js │ │ │ │ ├── RemoveMemberFromGroupAuthRequest.js │ │ │ │ ├── RemoveMemberFromGroupAuthResponse.js │ │ │ │ ├── SaveChannelAuthRequest.js │ │ │ │ ├── SaveChannelAuthResponse.js │ │ │ │ ├── SaveGroupAuthRequest.js │ │ │ │ └── SaveGroupAuthResponse.js │ │ │ ├── channel │ │ │ │ ├── CreateChannelBoxRequest.js │ │ │ │ ├── CreateChannelBoxResponse.js │ │ │ │ ├── CreateChannelRequest.js │ │ │ │ ├── CreateChannelResponse.js │ │ │ │ ├── DeleteChannelBoxRequest.js │ │ │ │ ├── DeleteChannelBoxResponse.js │ │ │ │ ├── DeleteChannelRequest.js │ │ │ │ ├── DeleteChannelResponse.js │ │ │ │ ├── SaveChannelBoxRequest.js │ │ │ │ ├── SaveChannelBoxResponse.js │ │ │ │ ├── SaveChannelRequest.js │ │ │ │ └── SaveChannelResponse.js │ │ │ ├── chat │ │ │ │ ├── DeleteGroupMessageRequest.js │ │ │ │ ├── DeleteGroupPinMessageRequest.js │ │ │ │ ├── DeleteGroupPinMessageResponse.js │ │ │ │ ├── EditGroupMessageRequest.js │ │ │ │ ├── GroupChatRequest.js │ │ │ │ ├── GroupHistoryMessageRequest.js │ │ │ │ ├── GroupHistoryMessageResponse.js │ │ │ │ ├── GroupHistoryPinMessageRequest.js │ │ │ │ ├── GroupHistoryPinMessageResponse.js │ │ │ │ └── PinGroupMessageRequest.js │ │ │ ├── member │ │ │ │ ├── AllInviteGroupCodeRequest.js │ │ │ │ ├── AllInviteGroupCodeResponse.js │ │ │ │ ├── CreateInviteGroupCodeRequest.js │ │ │ │ ├── CreateInviteGroupCodeResponse.js │ │ │ │ ├── DeleteInviteGroupCodeRequest.js │ │ │ │ ├── DeleteInviteGroupCodeResponse.js │ │ │ │ ├── GroupMemberInfoRequest.js │ │ │ │ ├── GroupMemberInfoResponse.js │ │ │ │ ├── GroupMemberListRequest.js │ │ │ │ ├── GroupMemberListResponse.js │ │ │ │ ├── JoinGroupByUserIdRequest.js │ │ │ │ ├── JoinGroupRequest.js │ │ │ │ ├── JoinGroupResponse.js │ │ │ │ ├── KickMemberRequest.js │ │ │ │ ├── KickMemberResponse.js │ │ │ │ ├── LeaveGroupRequest.js │ │ │ │ ├── LeaveGroupResponse.js │ │ │ │ └── model │ │ │ │ │ ├── GroupMemberVO.js │ │ │ │ │ └── InviteCodeVO.js │ │ │ ├── model │ │ │ │ ├── ChannelAuthVO.js │ │ │ │ ├── ChannelBoxVO.js │ │ │ │ ├── ChannelTimeVO.js │ │ │ │ ├── ChannelVO.js │ │ │ │ ├── GroupAuthVO.js │ │ │ │ ├── GroupMemberSimpleVO.js │ │ │ │ ├── GroupTimeVO.js │ │ │ │ └── GroupVO.js │ │ │ └── setting │ │ │ │ ├── RefreshGroupNameRequest.js │ │ │ │ ├── SaveGroupAvatarRequest.js │ │ │ │ ├── SaveGroupAvatarResponse.js │ │ │ │ ├── SaveGroupBackgroundRequest.js │ │ │ │ ├── SaveGroupBackgroundResponse.js │ │ │ │ ├── SaveGroupSettingRequest.js │ │ │ │ └── SaveGroupSettingResponse.js │ │ └── user │ │ │ ├── WebsocketSignInRequest.js │ │ │ ├── WebsocketSignInResponse.js │ │ │ ├── WebsocketSignOutRequest.js │ │ │ ├── WebsocketSignOutResponse.js │ │ │ └── group │ │ │ ├── CreateGroupRequest.js │ │ │ ├── CreateGroupResponse.js │ │ │ ├── MuteChannelRequest.js │ │ │ ├── MuteChannelResponse.js │ │ │ ├── MuteGroupRequest.js │ │ │ ├── MuteGroupResponse.js │ │ │ ├── RefreshChannelTimeRequest.js │ │ │ └── RefreshChannelTimeResponse.js │ ├── main.js │ ├── mock │ │ └── mock.js │ ├── plugin │ │ ├── base.js │ │ ├── lodash.js │ │ ├── myPlugin.js │ │ ├── protocol.js │ │ ├── video.js │ │ ├── vuelidate.js │ │ └── vuetify.js │ ├── registerServiceWorker.js │ ├── router │ │ └── router.js │ ├── store │ │ ├── modules │ │ │ ├── app.js │ │ │ ├── friend.js │ │ │ ├── group.js │ │ │ └── user.js │ │ └── store.js │ ├── style │ │ └── index.scss │ ├── util │ │ ├── authUtils.js │ │ ├── clipboardUtils.js │ │ ├── environmentUtils.js │ │ ├── fileUtils.js │ │ ├── fixBugUtils.js │ │ ├── googleAnalyticsUtils.js │ │ ├── groupUtils.js │ │ ├── helpers.js │ │ ├── noticeUtils.js │ │ ├── pushUtils.js │ │ ├── requestUtils.js │ │ ├── stringUtils.js │ │ ├── timeUtils.js │ │ ├── vuexUtils.js │ │ └── websocketUtils.js │ └── view │ │ ├── Test.vue │ │ ├── admin │ │ ├── Admin.vue │ │ └── component │ │ │ ├── AdminTimeDelete.vue │ │ │ ├── AdminTimeReview.vue │ │ │ └── AdminUserAuth.vue │ │ ├── app │ │ ├── License.vue │ │ ├── NotFoundPage404.vue │ │ ├── Search.vue │ │ └── Terms.vue │ │ ├── feed │ │ ├── ItemFeed.vue │ │ ├── LocationFeed.vue │ │ └── PersonFeed.vue │ │ ├── home │ │ ├── Home.vue │ │ └── Subscribe.vue │ │ ├── time │ │ ├── CreateTime.vue │ │ ├── EditTime.vue │ │ ├── RecommitTime.vue │ │ ├── Review.vue │ │ ├── SingleTime.vue │ │ └── component │ │ │ └── TimeCalendar.vue │ │ ├── user │ │ ├── AccountSecurity.vue │ │ ├── BindError.vue │ │ ├── MyCreation.vue │ │ ├── MyProfile.vue │ │ ├── MyProfileEdit.vue │ │ ├── MyStar.vue │ │ ├── OtherProfile.vue │ │ ├── Register.vue │ │ └── component │ │ │ ├── PasswordSetDialog.vue │ │ │ └── PhoneSetDialog.vue │ │ └── word │ │ ├── Category.vue │ │ ├── CategoryEdit.vue │ │ ├── Word.vue │ │ ├── WordEdit.vue │ │ └── component │ │ ├── CategorySearchDialog.vue │ │ ├── ExternalLinkDialog.vue │ │ └── WordSearchDialog.vue ├── terms.md ├── test │ ├── .eslintrc.js │ └── jsProtocolTest.spec.js └── vue.config.js ├── zapp-cache ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── cache │ │ │ ├── Application.java │ │ │ ├── controller │ │ │ └── CacheController.java │ │ │ ├── model │ │ │ └── resource │ │ │ │ └── FilterResource.java │ │ │ └── service │ │ │ ├── CacheService.java │ │ │ └── ICacheService.java │ └── resources │ │ ├── FilterResource.xlsx │ │ ├── application.xml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── cache │ │ └── ApplicationTest.java │ └── resources │ └── logback-test.xml ├── zapp-chat ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── chat │ │ │ ├── Application.java │ │ │ ├── friend │ │ │ ├── controller │ │ │ │ └── FriendController.java │ │ │ └── service │ │ │ │ ├── FriendService.java │ │ │ │ └── IFriendService.java │ │ │ └── message │ │ │ ├── controller │ │ │ └── ChatMessageController.java │ │ │ └── service │ │ │ ├── ChatMessageService.java │ │ │ └── IChatMessageService.java │ └── resources │ │ ├── application.xml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── chat │ │ └── ApplicationTest.java │ └── resources │ └── logback-test.xml ├── zapp-common ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── common │ │ ├── constant │ │ ├── AppConstant.java │ │ ├── LocationConstant.java │ │ ├── OssPolicyConstant.java │ │ ├── ReportConstant.java │ │ └── ZappDeployEnum.java │ │ ├── entity │ │ ├── admin │ │ │ └── ReportEntity.java │ │ ├── common │ │ │ ├── MessageEnum.java │ │ │ └── MessagePO.java │ │ ├── core │ │ │ ├── CategoryEntity.java │ │ │ ├── PersonEntity.java │ │ │ ├── WordEditEntity.java │ │ │ ├── WordEditRejectEntity.java │ │ │ └── WordEntity.java │ │ ├── feed │ │ │ ├── FeedHomeEntity.java │ │ │ ├── FeedItemEntity.java │ │ │ ├── FeedLocationEntity.java │ │ │ └── FeedPersonEntity.java │ │ ├── friend │ │ │ ├── ApplicantEntity.java │ │ │ └── FriendEntity.java │ │ ├── group │ │ │ ├── ChannelEntity.java │ │ │ ├── GroupEntity.java │ │ │ └── model │ │ │ │ ├── ChannelAuthEnum.java │ │ │ │ ├── ChannelAuthPO.java │ │ │ │ ├── ChannelBoxPO.java │ │ │ │ ├── ChannelPO.java │ │ │ │ ├── GroupAuthEnum.java │ │ │ │ ├── GroupAuthPO.java │ │ │ │ ├── InviteCodePO.java │ │ │ │ ├── InviteCountEnum.java │ │ │ │ ├── InviteExpireEnum.java │ │ │ │ └── OperationEnum.java │ │ ├── search │ │ │ ├── HotTrendPO.java │ │ │ └── SearchEntity.java │ │ ├── time │ │ │ ├── TimeSliceEntity.java │ │ │ ├── TsEditEntity.java │ │ │ ├── TsReviewEntity.java │ │ │ └── model │ │ │ │ ├── LoveTrendPO.java │ │ │ │ ├── TimeKeyHeaderPO.java │ │ │ │ ├── TimeKeyPO.java │ │ │ │ ├── TimeKeyRowPO.java │ │ │ │ ├── TimeLinkAlbumPO.java │ │ │ │ └── VideoLinkPO.java │ │ └── user │ │ │ ├── AccountEntity.java │ │ │ ├── MailEntity.java │ │ │ ├── PhoneEntity.java │ │ │ ├── UserEntity.java │ │ │ ├── WeChatEntity.java │ │ │ ├── WeiBoEntity.java │ │ │ └── model │ │ │ ├── AdminAuthEnum.java │ │ │ ├── ChannelTimePO.java │ │ │ ├── GenderEnum.java │ │ │ ├── GroupTimePO.java │ │ │ ├── LanguageEnum.java │ │ │ ├── SettingPO.java │ │ │ └── ThemeEnum.java │ │ ├── model │ │ ├── Element.java │ │ ├── ImageQualityEnum.java │ │ ├── LicenseEnum.java │ │ ├── OssPolicyEnum.java │ │ └── time │ │ │ └── TimeSliceVO.java │ │ ├── protocol │ │ ├── cache │ │ │ ├── GetCategoryCacheAnswer.java │ │ │ ├── GetCategoryCacheAsk.java │ │ │ ├── GetItemCacheAnswer.java │ │ │ ├── GetItemCacheAsk.java │ │ │ ├── GetLocationCacheAnswer.java │ │ │ ├── GetLocationCacheAsk.java │ │ │ ├── GetPersonCacheAnswer.java │ │ │ ├── GetPersonCacheAsk.java │ │ │ ├── GetUserCacheAnswer.java │ │ │ ├── GetUserCacheAsk.java │ │ │ ├── GetUserCacheRequest.java │ │ │ ├── GetUserCacheResponse.java │ │ │ ├── GetUserLatestCacheAnswer.java │ │ │ ├── GetUserLatestCacheAsk.java │ │ │ ├── GetUserTsCacheAnswer.java │ │ │ ├── GetUserTsCacheAsk.java │ │ │ ├── GetWordCacheAnswer.java │ │ │ ├── GetWordCacheAsk.java │ │ │ ├── SearchUserAnswer.java │ │ │ ├── SearchUserAsk.java │ │ │ ├── SearchUserRequest.java │ │ │ ├── SearchUserResponse.java │ │ │ ├── WordFilterAnswer.java │ │ │ ├── WordFilterAsk.java │ │ │ ├── model │ │ │ │ ├── CategoryVO.java │ │ │ │ ├── UserCache.java │ │ │ │ └── WordVO.java │ │ │ ├── refresh │ │ │ │ ├── RefreshCategoryCacheAsk.java │ │ │ │ ├── RefreshUserTsCacheAsk.java │ │ │ │ └── RefreshWordCacheAsk.java │ │ │ └── search │ │ │ │ ├── GetHotSearchAnswer.java │ │ │ │ └── GetHotSearchAsk.java │ │ ├── common │ │ │ ├── ChatMessage.java │ │ │ └── time │ │ │ │ ├── TimeKeyHeaderVO.java │ │ │ │ ├── TimeKeyRowVO.java │ │ │ │ ├── TimeKeyVO.java │ │ │ │ ├── TimeLinkAlbumVO.java │ │ │ │ └── VideoLinkVO.java │ │ ├── feed │ │ │ ├── home │ │ │ │ ├── CreateTsAsk.java │ │ │ │ └── LoveTsAsk.java │ │ │ ├── item │ │ │ │ ├── CreateTsWithItemAsk.java │ │ │ │ ├── DeleteTsWithItemAsk.java │ │ │ │ └── LoveTsWithItemAsk.java │ │ │ ├── location │ │ │ │ ├── CreateTsWithLocationAsk.java │ │ │ │ ├── DeleteTsWithLocationAsk.java │ │ │ │ └── LoveTsWithLocationAsk.java │ │ │ ├── person │ │ │ │ ├── CreateTsWithPersonAsk.java │ │ │ │ ├── DeleteTsWithPersonAsk.java │ │ │ │ └── LoveTsWithPersonAsk.java │ │ │ └── search │ │ │ │ └── SearchCountAsk.java │ │ ├── friend │ │ │ ├── DeleteFriendMessageNotice.java │ │ │ ├── EditFriendMessageNotice.java │ │ │ ├── FriendMessageNotice.java │ │ │ ├── NewApplyFriendNotice.java │ │ │ ├── NewFriendNotice.java │ │ │ ├── chat │ │ │ │ ├── DeleteFriendMessageRequest.java │ │ │ │ ├── EditFriendMessageRequest.java │ │ │ │ ├── FriendChatRequest.java │ │ │ │ ├── FriendHistoryMessageRequest.java │ │ │ │ ├── FriendHistoryMessageResponse.java │ │ │ │ ├── ReadFriendMessageRequest.java │ │ │ │ └── ReadFriendMessageResponse.java │ │ │ ├── model │ │ │ │ ├── ApplyFriendVO.java │ │ │ │ └── FriendInfoVO.java │ │ │ └── operation │ │ │ │ ├── AcceptFriendRequest.java │ │ │ │ ├── ApplyFriendRequest.java │ │ │ │ ├── BlacklistCancelRequest.java │ │ │ │ ├── BlacklistCancelResponse.java │ │ │ │ ├── BlacklistRequest.java │ │ │ │ ├── BlacklistResponse.java │ │ │ │ ├── DeleteFriendRequest.java │ │ │ │ ├── DeleteFriendResponse.java │ │ │ │ ├── MarkFriendRequest.java │ │ │ │ ├── MarkFriendResponse.java │ │ │ │ ├── RejectFriendRequest.java │ │ │ │ └── RejectFriendResponse.java │ │ ├── group │ │ │ ├── DeleteGroupMessageNotice.java │ │ │ ├── DeleteGroupNotice.java │ │ │ ├── EditGroupMessageNotice.java │ │ │ ├── GroupChatMessageNotice.java │ │ │ ├── GroupUpdateNotice.java │ │ │ ├── KickMemberNotice.java │ │ │ ├── MemberGroupAuthIdUpdateNotice.java │ │ │ ├── auth │ │ │ │ ├── AddMemberToGroupAuthRequest.java │ │ │ │ ├── AddMemberToGroupAuthResponse.java │ │ │ │ ├── ChangeGroupAdminRequest.java │ │ │ │ ├── ChangeGroupAdminResponse.java │ │ │ │ ├── CreateGroupAuthRequest.java │ │ │ │ ├── DeleteGroupAuthRequest.java │ │ │ │ ├── DeleteGroupRequest.java │ │ │ │ ├── RemoveMemberFromGroupAuthRequest.java │ │ │ │ ├── RemoveMemberFromGroupAuthResponse.java │ │ │ │ ├── SaveChannelAuthRequest.java │ │ │ │ ├── SaveChannelAuthResponse.java │ │ │ │ ├── SaveGroupAuthRequest.java │ │ │ │ └── SaveGroupAuthResponse.java │ │ │ ├── channel │ │ │ │ ├── CreateChannelBoxRequest.java │ │ │ │ ├── CreateChannelBoxResponse.java │ │ │ │ ├── CreateChannelRequest.java │ │ │ │ ├── CreateChannelResponse.java │ │ │ │ ├── DeleteChannelBoxRequest.java │ │ │ │ ├── DeleteChannelBoxResponse.java │ │ │ │ ├── DeleteChannelRequest.java │ │ │ │ ├── DeleteChannelResponse.java │ │ │ │ ├── SaveChannelBoxRequest.java │ │ │ │ ├── SaveChannelBoxResponse.java │ │ │ │ ├── SaveChannelRequest.java │ │ │ │ └── SaveChannelResponse.java │ │ │ ├── chat │ │ │ │ ├── DeleteGroupMessageRequest.java │ │ │ │ ├── DeleteGroupPinMessageRequest.java │ │ │ │ ├── DeleteGroupPinMessageResponse.java │ │ │ │ ├── EditGroupMessageRequest.java │ │ │ │ ├── GroupChatRequest.java │ │ │ │ ├── GroupHistoryMessageRequest.java │ │ │ │ ├── GroupHistoryMessageResponse.java │ │ │ │ ├── GroupHistoryPinMessageRequest.java │ │ │ │ ├── GroupHistoryPinMessageResponse.java │ │ │ │ └── PinGroupMessageRequest.java │ │ │ ├── member │ │ │ │ ├── AllInviteGroupCodeRequest.java │ │ │ │ ├── AllInviteGroupCodeResponse.java │ │ │ │ ├── CreateInviteGroupCodeRequest.java │ │ │ │ ├── CreateInviteGroupCodeResponse.java │ │ │ │ ├── DeleteInviteGroupCodeRequest.java │ │ │ │ ├── DeleteInviteGroupCodeResponse.java │ │ │ │ ├── GroupMemberInfoRequest.java │ │ │ │ ├── GroupMemberInfoResponse.java │ │ │ │ ├── GroupMemberListRequest.java │ │ │ │ ├── GroupMemberListResponse.java │ │ │ │ ├── JoinGroupByUserIdRequest.java │ │ │ │ ├── JoinGroupRequest.java │ │ │ │ ├── JoinGroupResponse.java │ │ │ │ ├── KickMemberRequest.java │ │ │ │ ├── KickMemberResponse.java │ │ │ │ ├── LeaveGroupRequest.java │ │ │ │ ├── LeaveGroupResponse.java │ │ │ │ └── model │ │ │ │ │ ├── GroupMemberVO.java │ │ │ │ │ └── InviteCodeVO.java │ │ │ ├── model │ │ │ │ ├── ChannelAuthVO.java │ │ │ │ ├── ChannelBoxVO.java │ │ │ │ ├── ChannelTimeVO.java │ │ │ │ ├── ChannelVO.java │ │ │ │ ├── GroupAuthVO.java │ │ │ │ ├── GroupMemberSimpleVO.java │ │ │ │ ├── GroupTimeVO.java │ │ │ │ └── GroupVO.java │ │ │ └── setting │ │ │ │ ├── RefreshGroupNameRequest.java │ │ │ │ ├── SaveGroupAvatarRequest.java │ │ │ │ ├── SaveGroupAvatarResponse.java │ │ │ │ ├── SaveGroupBackgroundRequest.java │ │ │ │ ├── SaveGroupBackgroundResponse.java │ │ │ │ ├── SaveGroupSettingRequest.java │ │ │ │ └── SaveGroupSettingResponse.java │ │ ├── push │ │ │ ├── friend │ │ │ │ ├── AcceptFriendPush.java │ │ │ │ ├── AcceptFriendPushToGateway.java │ │ │ │ ├── ApplyFriendPush.java │ │ │ │ ├── ApplyFriendPushToGateway.java │ │ │ │ ├── DeleteFriendMessagePush.java │ │ │ │ ├── DeleteFriendMessagePushToGateway.java │ │ │ │ ├── EditFriendMessagePush.java │ │ │ │ ├── EditFriendMessagePushToGateway.java │ │ │ │ ├── FriendChatMessagePush.java │ │ │ │ └── FriendChatMessagePushToGateway.java │ │ │ └── group │ │ │ │ ├── DeleteGroupMessagePush.java │ │ │ │ ├── DeleteGroupMessagePushToGateway.java │ │ │ │ ├── DeleteGroupPush.java │ │ │ │ ├── DeleteGroupPushToGateway.java │ │ │ │ ├── EditGroupMessagePush.java │ │ │ │ ├── EditGroupMessagePushToGateway.java │ │ │ │ ├── GroupChatMessagePush.java │ │ │ │ ├── GroupChatMessagePushToGateway.java │ │ │ │ ├── GroupUpdatePush.java │ │ │ │ ├── GroupUpdatePushToGateway.java │ │ │ │ ├── KickMemberPush.java │ │ │ │ ├── KickMemberPushToGateway.java │ │ │ │ ├── MemberGroupAuthIdUpdatePush.java │ │ │ │ └── MemberGroupAuthIdUpdatePushToGateway.java │ │ └── user │ │ │ ├── SignInAnswer.java │ │ │ ├── SignInByAccountAsk.java │ │ │ ├── SignInByPhoneAsk.java │ │ │ ├── WebsocketSignInRequest.java │ │ │ ├── WebsocketSignInResponse.java │ │ │ ├── WebsocketSignOutRequest.java │ │ │ ├── WebsocketSignOutResponse.java │ │ │ ├── fan │ │ │ ├── FanCancelUserAsk.java │ │ │ ├── FanUserAsk.java │ │ │ ├── FollowUserAsk.java │ │ │ ├── SubscribeItemAsk.java │ │ │ ├── SubscribeLocationAsk.java │ │ │ └── SubscribePersonAsk.java │ │ │ ├── friend │ │ │ ├── ApplyFriendLimitAsk.java │ │ │ ├── BlacklistAsk.java │ │ │ ├── BlacklistCancelAsk.java │ │ │ ├── DeleteFriendAsk.java │ │ │ └── UserAcceptFriendAsk.java │ │ │ ├── group │ │ │ ├── CreateGroupRequest.java │ │ │ ├── CreateGroupResponse.java │ │ │ ├── JoinGroupAsk.java │ │ │ ├── LeaveGroupAsk.java │ │ │ ├── MuteChannelRequest.java │ │ │ ├── MuteChannelResponse.java │ │ │ ├── MuteGroupRequest.java │ │ │ ├── MuteGroupResponse.java │ │ │ ├── RefreshChannelTimeRequest.java │ │ │ └── RefreshChannelTimeResponse.java │ │ │ ├── info │ │ │ ├── AccountSecurityAnswer.java │ │ │ ├── AccountSecurityAsk.java │ │ │ ├── GetUserAdminAuthAnswer.java │ │ │ ├── GetUserAdminAuthAsk.java │ │ │ ├── GetUserProfileAnswer.java │ │ │ ├── GetUserProfileAsk.java │ │ │ ├── GetUserProfileFanAnswer.java │ │ │ ├── GetUserProfileFanAsk.java │ │ │ ├── GetUserProfileFollowAnswer.java │ │ │ ├── GetUserProfileFollowAsk.java │ │ │ ├── GetUserProfileStarAnswer.java │ │ │ ├── GetUserProfileStarAsk.java │ │ │ ├── UpdateAdminAuthAsk.java │ │ │ ├── UpdateAvatarAsk.java │ │ │ ├── UpdateBackgroundAsk.java │ │ │ ├── UpdateBaseInfoAsk.java │ │ │ ├── UpdateCustomStatusAsk.java │ │ │ ├── UpdatePasswordAsk.java │ │ │ ├── UpdatePhoneAsk.java │ │ │ ├── UpdateSettingAsk.java │ │ │ └── model │ │ │ │ └── SettingVO.java │ │ │ ├── time │ │ │ ├── CoinConsumeAnswer.java │ │ │ ├── CoinConsumeAsk.java │ │ │ ├── DeleteTimeSliceAsk.java │ │ │ ├── LoveStatisticsAsk.java │ │ │ ├── LoveTimeSliceAsk.java │ │ │ ├── StarTimeSliceAsk.java │ │ │ └── UpdateTimeSliceAsk.java │ │ │ ├── wechat │ │ │ ├── WeChatBindAsk.java │ │ │ ├── WeChatSignInAnswer.java │ │ │ ├── WeChatSignInAsk.java │ │ │ ├── WeChatUnbindAsk.java │ │ │ └── WeChatUserInfoAsk.java │ │ │ └── weibo │ │ │ ├── WeiBoBindAsk.java │ │ │ ├── WeiBoSignInAnswer.java │ │ │ ├── WeiBoSignInAsk.java │ │ │ ├── WeiBoUnbindAsk.java │ │ │ └── WeiBoUserInfoAsk.java │ │ ├── result │ │ ├── BaseResponse.java │ │ └── CodeEnum.java │ │ └── util │ │ ├── CommonUtils.java │ │ ├── GroupUtils.java │ │ └── TokenUtils.java │ └── resources │ ├── deploy-dev.properties │ ├── deploy-pro.properties │ ├── locations.json │ ├── policies-dev.json │ ├── policies-pro.json │ ├── protocol.xml │ └── reports.json ├── zapp-feed ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── feed │ │ │ ├── Application.java │ │ │ ├── controller │ │ │ ├── FeedController.java │ │ │ └── SearchController.java │ │ │ └── service │ │ │ ├── FeedService.java │ │ │ └── IFeedService.java │ └── resources │ │ ├── application.xml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── feed │ │ └── ApplicationTest.java │ └── resources │ └── logback-test.xml ├── zapp-gateway ├── jsProtocol │ ├── ProtocolManager.js │ ├── buffer │ │ ├── ByteBuffer.js │ │ ├── long.js │ │ └── longbits.js │ ├── cache │ │ ├── GetUserCacheRequest.js │ │ ├── GetUserCacheResponse.js │ │ ├── SearchUserRequest.js │ │ ├── SearchUserResponse.js │ │ └── model │ │ │ └── UserCache.js │ ├── common │ │ ├── ChatMessage.js │ │ ├── Error.js │ │ ├── Heartbeat.js │ │ ├── Message.js │ │ ├── PairLS.js │ │ ├── PairLong.js │ │ ├── PairString.js │ │ ├── Ping.js │ │ ├── Pong.js │ │ ├── TripleLSS.js │ │ ├── TripleLong.js │ │ ├── TripleString.js │ │ └── time │ │ │ ├── TimeKeyHeaderVO.js │ │ │ ├── TimeKeyRowVO.js │ │ │ ├── TimeKeyVO.js │ │ │ ├── TimeLinkAlbumVO.js │ │ │ └── VideoLinkVO.js │ ├── friend │ │ ├── DeleteFriendMessageNotice.js │ │ ├── EditFriendMessageNotice.js │ │ ├── FriendMessageNotice.js │ │ ├── NewApplyFriendNotice.js │ │ ├── NewFriendNotice.js │ │ ├── chat │ │ │ ├── DeleteFriendMessageRequest.js │ │ │ ├── EditFriendMessageRequest.js │ │ │ ├── FriendChatRequest.js │ │ │ ├── FriendHistoryMessageRequest.js │ │ │ ├── FriendHistoryMessageResponse.js │ │ │ ├── ReadFriendMessageRequest.js │ │ │ └── ReadFriendMessageResponse.js │ │ ├── model │ │ │ ├── ApplyFriendVO.js │ │ │ └── FriendInfoVO.js │ │ └── operation │ │ │ ├── AcceptFriendRequest.js │ │ │ ├── ApplyFriendRequest.js │ │ │ ├── BlacklistCancelRequest.js │ │ │ ├── BlacklistCancelResponse.js │ │ │ ├── BlacklistRequest.js │ │ │ ├── BlacklistResponse.js │ │ │ ├── DeleteFriendRequest.js │ │ │ ├── DeleteFriendResponse.js │ │ │ ├── MarkFriendRequest.js │ │ │ ├── MarkFriendResponse.js │ │ │ ├── RejectFriendRequest.js │ │ │ └── RejectFriendResponse.js │ ├── group │ │ ├── DeleteGroupMessageNotice.js │ │ ├── DeleteGroupNotice.js │ │ ├── EditGroupMessageNotice.js │ │ ├── GroupChatMessageNotice.js │ │ ├── GroupUpdateNotice.js │ │ ├── KickMemberNotice.js │ │ ├── MemberGroupAuthIdUpdateNotice.js │ │ ├── auth │ │ │ ├── AddMemberToGroupAuthRequest.js │ │ │ ├── AddMemberToGroupAuthResponse.js │ │ │ ├── ChangeGroupAdminRequest.js │ │ │ ├── ChangeGroupAdminResponse.js │ │ │ ├── CreateGroupAuthRequest.js │ │ │ ├── DeleteGroupAuthRequest.js │ │ │ ├── DeleteGroupRequest.js │ │ │ ├── RemoveMemberFromGroupAuthRequest.js │ │ │ ├── RemoveMemberFromGroupAuthResponse.js │ │ │ ├── SaveChannelAuthRequest.js │ │ │ ├── SaveChannelAuthResponse.js │ │ │ ├── SaveGroupAuthRequest.js │ │ │ └── SaveGroupAuthResponse.js │ │ ├── channel │ │ │ ├── CreateChannelBoxRequest.js │ │ │ ├── CreateChannelBoxResponse.js │ │ │ ├── CreateChannelRequest.js │ │ │ ├── CreateChannelResponse.js │ │ │ ├── DeleteChannelBoxRequest.js │ │ │ ├── DeleteChannelBoxResponse.js │ │ │ ├── DeleteChannelRequest.js │ │ │ ├── DeleteChannelResponse.js │ │ │ ├── SaveChannelBoxRequest.js │ │ │ ├── SaveChannelBoxResponse.js │ │ │ ├── SaveChannelRequest.js │ │ │ └── SaveChannelResponse.js │ │ ├── chat │ │ │ ├── DeleteGroupMessageRequest.js │ │ │ ├── DeleteGroupPinMessageRequest.js │ │ │ ├── DeleteGroupPinMessageResponse.js │ │ │ ├── EditGroupMessageRequest.js │ │ │ ├── GroupChatRequest.js │ │ │ ├── GroupHistoryMessageRequest.js │ │ │ ├── GroupHistoryMessageResponse.js │ │ │ ├── GroupHistoryPinMessageRequest.js │ │ │ ├── GroupHistoryPinMessageResponse.js │ │ │ └── PinGroupMessageRequest.js │ │ ├── member │ │ │ ├── AllInviteGroupCodeRequest.js │ │ │ ├── AllInviteGroupCodeResponse.js │ │ │ ├── CreateInviteGroupCodeRequest.js │ │ │ ├── CreateInviteGroupCodeResponse.js │ │ │ ├── DeleteInviteGroupCodeRequest.js │ │ │ ├── DeleteInviteGroupCodeResponse.js │ │ │ ├── GroupMemberInfoRequest.js │ │ │ ├── GroupMemberInfoResponse.js │ │ │ ├── GroupMemberListRequest.js │ │ │ ├── GroupMemberListResponse.js │ │ │ ├── JoinGroupByUserIdRequest.js │ │ │ ├── JoinGroupRequest.js │ │ │ ├── JoinGroupResponse.js │ │ │ ├── KickMemberRequest.js │ │ │ ├── KickMemberResponse.js │ │ │ ├── LeaveGroupRequest.js │ │ │ ├── LeaveGroupResponse.js │ │ │ └── model │ │ │ │ ├── GroupMemberVO.js │ │ │ │ └── InviteCodeVO.js │ │ ├── model │ │ │ ├── ChannelAuthVO.js │ │ │ ├── ChannelBoxVO.js │ │ │ ├── ChannelTimeVO.js │ │ │ ├── ChannelVO.js │ │ │ ├── GroupAuthVO.js │ │ │ ├── GroupMemberSimpleVO.js │ │ │ ├── GroupTimeVO.js │ │ │ └── GroupVO.js │ │ └── setting │ │ │ ├── RefreshGroupNameRequest.js │ │ │ ├── SaveGroupAvatarRequest.js │ │ │ ├── SaveGroupAvatarResponse.js │ │ │ ├── SaveGroupBackgroundRequest.js │ │ │ ├── SaveGroupBackgroundResponse.js │ │ │ ├── SaveGroupSettingRequest.js │ │ │ └── SaveGroupSettingResponse.js │ └── user │ │ ├── WebsocketSignInRequest.js │ │ ├── WebsocketSignInResponse.js │ │ ├── WebsocketSignOutRequest.js │ │ ├── WebsocketSignOutResponse.js │ │ └── group │ │ ├── CreateGroupRequest.js │ │ ├── CreateGroupResponse.js │ │ ├── MuteChannelRequest.js │ │ ├── MuteChannelResponse.js │ │ ├── MuteGroupRequest.js │ │ ├── MuteGroupResponse.js │ │ ├── RefreshChannelTimeRequest.js │ │ └── RefreshChannelTimeResponse.js ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── gateway │ │ │ ├── Application.java │ │ │ └── controller │ │ │ ├── GatewayController.java │ │ │ └── PushController.java │ └── resources │ │ ├── 3698574__zfoo.com.pem │ │ ├── application.xml │ │ ├── logback.xml │ │ └── server.key │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── gateway │ │ ├── ApplicationTest.java │ │ └── client │ │ ├── ClientTest.java │ │ └── controller │ │ └── ClientController.java │ └── resources │ └── logback-test.xml ├── zapp-group ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── group │ │ │ ├── Application.java │ │ │ ├── controller │ │ │ ├── AuthController.java │ │ │ ├── ChannelController.java │ │ │ ├── ChatController.java │ │ │ ├── MemberController.java │ │ │ └── SettingController.java │ │ │ └── service │ │ │ ├── GroupService.java │ │ │ └── IGroupService.java │ └── resources │ │ ├── application.xml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── group │ │ └── ApplicationTest.java │ └── resources │ └── logback-test.xml ├── zapp-push ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── push │ │ │ ├── Application.java │ │ │ ├── controller │ │ │ ├── FriendPushController.java │ │ │ └── GroupPushController.java │ │ │ └── sid │ │ │ ├── controller │ │ │ ├── GatewayController.java │ │ │ └── SidController.java │ │ │ └── service │ │ │ ├── ISidSessionService.java │ │ │ └── SidSessionService.java │ └── resources │ │ ├── application.xml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── push │ │ └── ApplicationTest.java │ └── resources │ └── logback-test.xml ├── zapp-user ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── user │ │ │ ├── Application.java │ │ │ ├── coin │ │ │ ├── controller │ │ │ │ └── CoinController.java │ │ │ └── service │ │ │ │ ├── CoinService.java │ │ │ │ └── ICoinService.java │ │ │ ├── controller │ │ │ ├── FollowFanController.java │ │ │ ├── InfoController.java │ │ │ ├── SecurityController.java │ │ │ ├── StarController.java │ │ │ └── SubscribeController.java │ │ │ ├── friend │ │ │ ├── controller │ │ │ │ └── FriendController.java │ │ │ └── service │ │ │ │ ├── FriendService.java │ │ │ │ └── IFriendService.java │ │ │ ├── group │ │ │ ├── controller │ │ │ │ └── GroupController.java │ │ │ └── service │ │ │ │ ├── GroupService.java │ │ │ │ └── IGroupService.java │ │ │ ├── login │ │ │ ├── controller │ │ │ │ ├── LoginController.java │ │ │ │ ├── WeChatLoginController.java │ │ │ │ └── WeiboLoginController.java │ │ │ ├── model │ │ │ │ └── LoginEvent.java │ │ │ └── service │ │ │ │ ├── ILoginService.java │ │ │ │ └── LoginService.java │ │ │ └── time │ │ │ ├── controller │ │ │ └── TsOperationController.java │ │ │ └── servece │ │ │ ├── ITsOperationService.java │ │ │ └── TsOperationService.java │ └── resources │ │ ├── application.xml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── user │ │ └── ApplicationTest.java │ └── resources │ └── logback-test.xml ├── zapp-web ├── .easy.api.config ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── app │ │ │ └── zapp │ │ │ └── web │ │ │ ├── Application.java │ │ │ ├── admin │ │ │ ├── controller │ │ │ │ └── AdminController.java │ │ │ └── model │ │ │ │ ├── AdminTimeDeleteRequest.java │ │ │ │ ├── AdminTimeReviewRequest.java │ │ │ │ └── AdminUserAuthRequest.java │ │ │ ├── coin │ │ │ ├── controller │ │ │ │ └── CoinController.java │ │ │ ├── model │ │ │ │ ├── DownloadTimeSliceRequest.java │ │ │ │ └── DownloadTimeSliceResponse.java │ │ │ └── service │ │ │ │ ├── CoinService.java │ │ │ │ └── ICoinService.java │ │ │ ├── config │ │ │ ├── EnvironmentConfig.java │ │ │ ├── ErrorController.java │ │ │ ├── ErrorPageConfig.java │ │ │ ├── ExceptionConfig.java │ │ │ ├── GracefulShutdownConfig.java │ │ │ ├── InterceptorConfig.java │ │ │ └── JacksonConfig.java │ │ │ ├── feed │ │ │ ├── controller │ │ │ │ ├── ItemController.java │ │ │ │ ├── LocationController.java │ │ │ │ └── PersonController.java │ │ │ └── model │ │ │ │ ├── ItemVO.java │ │ │ │ ├── LocationVO.java │ │ │ │ └── PersonVO.java │ │ │ ├── home │ │ │ ├── controller │ │ │ │ └── HomeController.java │ │ │ ├── model │ │ │ │ └── HomeFeedResponse.java │ │ │ └── service │ │ │ │ ├── HomeService.java │ │ │ │ └── IHomeService.java │ │ │ ├── login │ │ │ ├── controller │ │ │ │ ├── LoginController.java │ │ │ │ ├── LogoutController.java │ │ │ │ ├── WeChatController.java │ │ │ │ ├── WeChatServiceController.java │ │ │ │ └── WeiBoController.java │ │ │ ├── model │ │ │ │ ├── BindResponse.java │ │ │ │ ├── CaptchaResponse.java │ │ │ │ ├── CheckPhoneCodeRequest.java │ │ │ │ ├── GetVerifyCodeByPhoneRequest.java │ │ │ │ ├── LoginSuccessEvent.java │ │ │ │ ├── SignInByAccountRequest.java │ │ │ │ ├── SignInByPhoneRequest.java │ │ │ │ ├── SignInResponse.java │ │ │ │ ├── sms │ │ │ │ │ └── SmsData.java │ │ │ │ ├── wechat │ │ │ │ │ ├── WeChatAccessTokenResponse.java │ │ │ │ │ ├── WeChatRegisterRequest.java │ │ │ │ │ └── WeChatUserInfoResponse.java │ │ │ │ └── weibo │ │ │ │ │ ├── WeiBoRegisterRequest.java │ │ │ │ │ ├── WeiboAccessTokenResponse.java │ │ │ │ │ └── WeiboUserInfoResponse.java │ │ │ └── service │ │ │ │ ├── ILoginService.java │ │ │ │ └── LoginService.java │ │ │ ├── oss │ │ │ ├── controller │ │ │ │ └── OssController.java │ │ │ ├── model │ │ │ │ └── OssPolicyVO.java │ │ │ └── service │ │ │ │ ├── IOssService.java │ │ │ │ └── OssService.java │ │ │ ├── search │ │ │ ├── controller │ │ │ │ └── SearchController.java │ │ │ ├── model │ │ │ │ ├── SearchHintVO.java │ │ │ │ └── SearchHotVO.java │ │ │ └── service │ │ │ │ ├── ISearchService.java │ │ │ │ └── SearchService.java │ │ │ ├── seo │ │ │ ├── controller │ │ │ │ └── SeoController.java │ │ │ └── model │ │ │ │ └── BaiDuSeoResponse.java │ │ │ ├── time │ │ │ ├── controller │ │ │ │ ├── TimeSliceController.java │ │ │ │ ├── TsCreateController.java │ │ │ │ └── TsUserController.java │ │ │ ├── model │ │ │ │ ├── CreateTimeSliceRequest.java │ │ │ │ ├── EditTimeSliceRequest.java │ │ │ │ ├── LoveTimeSliceRequest.java │ │ │ │ ├── PassTimeSliceEditRequest.java │ │ │ │ ├── PassTimeSliceReviewRequest.java │ │ │ │ ├── PassTimeSliceReviewResponse.java │ │ │ │ ├── RecommitTimeSliceRequest.java │ │ │ │ ├── RejectTimeSliceEditRequest.java │ │ │ │ ├── RejectTimeSliceReviewRequest.java │ │ │ │ ├── ReportTimeSliceRequest.java │ │ │ │ ├── ReviewTimeSliceResponse.java │ │ │ │ ├── SingleTimeSliceResponse.java │ │ │ │ ├── StarTimeSliceRequest.java │ │ │ │ ├── event │ │ │ │ │ ├── DeleteEditTimeSliceEvent.java │ │ │ │ │ ├── DeleteReviewTimeSliceEvent.java │ │ │ │ │ ├── DeleteTimeSliceEvent.java │ │ │ │ │ ├── EditTimeSliceEvent.java │ │ │ │ │ ├── PassEditTimeSliceEvent.java │ │ │ │ │ ├── PassReviewTimeSliceEvent.java │ │ │ │ │ └── RecommitTimeSliceEvent.java │ │ │ │ └── vo │ │ │ │ │ ├── CreateTimeSliceVO.java │ │ │ │ │ ├── TimeSliceRejectVO.java │ │ │ │ │ └── TimeSliceReviewVO.java │ │ │ └── service │ │ │ │ ├── ITimeSliceService.java │ │ │ │ └── TimeSliceService.java │ │ │ ├── user │ │ │ ├── controller │ │ │ │ ├── UserController.java │ │ │ │ ├── UserFollowFanController.java │ │ │ │ ├── UserSecurityController.java │ │ │ │ └── UserSubscribeController.java │ │ │ ├── model │ │ │ │ ├── AccountSecurityResponse.java │ │ │ │ ├── FollowUserRequest.java │ │ │ │ ├── GetUserCreationResponse.java │ │ │ │ ├── GetUserProfileResponse.java │ │ │ │ ├── SaveAvatarRequest.java │ │ │ │ ├── SaveBackgroundRequest.java │ │ │ │ ├── SaveBaseInfoRequest.java │ │ │ │ ├── SaveCustomStatusRequest.java │ │ │ │ ├── SaveCustomStatusResponse.java │ │ │ │ ├── SavePasswordRequest.java │ │ │ │ ├── SavePhoneNumberRequest.java │ │ │ │ ├── SaveSettingRequest.java │ │ │ │ └── subscribe │ │ │ │ │ ├── SubscribeItemRequest.java │ │ │ │ │ ├── SubscribeLocationRequest.java │ │ │ │ │ └── SubscribePersonRequest.java │ │ │ └── service │ │ │ │ ├── IUserService.java │ │ │ │ └── UserService.java │ │ │ ├── util │ │ │ ├── HttpUtils.java │ │ │ └── SliceUtils.java │ │ │ └── word │ │ │ ├── controller │ │ │ └── WordController.java │ │ │ ├── model │ │ │ ├── EditCategoryEvent.java │ │ │ ├── EditCategoryRequest.java │ │ │ ├── EditWordEvent.java │ │ │ ├── EditWordRequest.java │ │ │ └── WordDetailResponse.java │ │ │ └── service │ │ │ ├── IWordService.java │ │ │ └── WordService.java │ └── resources │ │ ├── 3698574__zfoo.com.pfx │ │ ├── app.xml │ │ ├── application.yml │ │ ├── library.properties │ │ ├── library │ │ ├── ambiguity.dic │ │ ├── default.dic │ │ ├── regex.dic │ │ ├── stop.dic │ │ └── synonyms.dic │ │ ├── logback.xml │ │ └── public │ │ └── MP_verify_pvpKrM8ydb0ga79u.txt │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── app │ │ └── zapp │ │ └── web │ │ ├── ApplicationTest.java │ │ ├── controller │ │ └── LoginControllerTest.java │ │ ├── file │ │ └── SortedFileNamesTest.java │ │ ├── login │ │ ├── WeChatTest.java │ │ └── WeiboTest.java │ │ ├── oss │ │ ├── OssClientTest.java │ │ ├── OssPolicyConstantTest.java │ │ ├── OssPolicyTest.java │ │ └── SmsTest.java │ │ └── utils │ │ └── SliceUtilsTest.java │ └── resources │ ├── application.yml │ └── logback-test.xml └── zfoo-branch-for-zapp ├── .gitignore ├── LICENSE ├── README.md ├── boot ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── zfoo │ │ └── boot │ │ ├── BootAutoConfiguration.java │ │ ├── EventAutoConfiguration.java │ │ ├── NetAutoConfiguration.java │ │ ├── OrmAutoConfiguration.java │ │ ├── SchedulerAutoConfiguration.java │ │ └── StorageAutoConfiguration.java │ └── resources │ └── META-INF │ └── spring.factories ├── deploy.sh ├── doc ├── FAQ.md ├── elastic │ ├── elastic-search-command.md │ ├── elastic-search-setup.md │ └── elastic-search.md ├── idea │ └── idea-set-up.md ├── image │ ├── event │ │ ├── device01.png │ │ ├── device02.png │ │ ├── device03.png │ │ ├── device04.png │ │ ├── device05.png │ │ ├── device06.png │ │ ├── device07.png │ │ ├── event01.png │ │ └── event02.png │ ├── general-game-architect.jpg │ ├── idea │ │ ├── idea-plugin-eslint-setup.png │ │ ├── idea-proxy-maven.jpg │ │ ├── idea-proxy.jpg │ │ ├── idea-setting-css.png │ │ ├── idea-setting-html-0.png │ │ ├── idea-setting-html-1.png │ │ ├── idea-setting-json.png │ │ ├── lingoes-00.png │ │ ├── lingoes-01.png │ │ └── lingoes-02.png │ ├── logo.jpg │ ├── monitor │ │ └── monitor01.png │ ├── net │ │ ├── framework01.png │ │ ├── framework02.png │ │ ├── framework03.png │ │ ├── framework04.png │ │ ├── framework05.png │ │ ├── framework06.png │ │ ├── framework07.png │ │ ├── framework08.png │ │ ├── framework09.png │ │ └── rpc01.png │ ├── netty │ │ ├── aio-netty-0.png │ │ ├── aio-netty-1.png │ │ ├── aio-netty-2.png │ │ ├── aio-netty-3.png │ │ ├── aio-netty-4.png │ │ ├── aio-netty-5.png │ │ ├── aio-nodejs-0.png │ │ ├── aio-nodejs-1.png │ │ ├── aio-nodejs-2.png │ │ └── aio-nodejs-3.png │ ├── protocol │ │ ├── complex_object.png │ │ ├── normal_object.png │ │ └── simple_object.png │ ├── scheduler │ │ └── scheduler01.png │ ├── storage │ │ ├── storage01.png │ │ └── storage02.png │ └── zookeeper │ │ ├── isolation.png │ │ ├── load-balance.png │ │ ├── transaction.png │ │ ├── zookeeper-function.png │ │ ├── zookeeper-leader-election.png │ │ └── zookeeper-process.png ├── linux │ └── linux-java-setup.md ├── mongodb │ ├── mogodb-setup.md │ ├── mongo-replica.md │ ├── mongo-shard.md │ ├── mongodb-transaction.md │ └── mongodb.md ├── netty │ ├── netty-nio.md │ └── netty.md ├── zookeeper │ ├── zookeeper-setup.md │ └── zookeeper.md └── 视频教程.md ├── event ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── event │ │ │ ├── EventContext.java │ │ │ ├── manager │ │ │ ├── EventBus.java │ │ │ └── EventThreadFactory.java │ │ │ ├── model │ │ │ ├── anno │ │ │ │ └── EventReceiver.java │ │ │ ├── event │ │ │ │ ├── AppStartAfterEvent.java │ │ │ │ ├── AppStartBeforeEvent.java │ │ │ │ ├── AppStartEvent.java │ │ │ │ └── IEvent.java │ │ │ └── vo │ │ │ │ ├── EnhanceUtils.java │ │ │ │ ├── EventReceiverDefinition.java │ │ │ │ └── IEventReceiver.java │ │ │ └── schema │ │ │ ├── EventDefinitionParser.java │ │ │ ├── EventRegisterProcessor.java │ │ │ └── NamespaceHandler.java │ └── resources │ │ ├── META-INF │ │ ├── spring.handlers │ │ └── spring.schemas │ │ └── event-1.0.xsd │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── event │ │ ├── ApplicationTest.java │ │ ├── MyController1.java │ │ ├── MyController2.java │ │ └── MyNoticeEvent.java │ └── resources │ ├── application.xml │ └── logback-test.xml ├── hotswap ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── hotswap │ │ │ ├── HotSwapContext.java │ │ │ ├── agent │ │ │ └── HotSwapAgent.java │ │ │ ├── manager │ │ │ ├── HotSwapManager.java │ │ │ └── IHotSwapManager.java │ │ │ ├── model │ │ │ └── ClassFileDef.java │ │ │ ├── service │ │ │ ├── HotSwapServiceMBean.java │ │ │ └── IHotSwapServiceMBean.java │ │ │ └── util │ │ │ └── HotSwapUtils.java │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── hotswap │ │ ├── ApplicationTest.java │ │ └── HotswapClass.java │ └── resources │ └── logback-test.xml ├── monitor ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── zfoo │ │ └── monitor │ │ ├── model │ │ ├── DiskFileSystemVO.java │ │ ├── MemoryVO.java │ │ ├── MonitorVO.java │ │ ├── SarVO.java │ │ └── UptimeVO.java │ │ └── util │ │ └── OSUtils.java │ └── test │ └── java │ └── com │ └── zfoo │ └── monitor │ └── ApplicationTest.java ├── net ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── net │ │ │ ├── NetContext.java │ │ │ ├── config │ │ │ ├── manager │ │ │ │ ├── ConfigManager.java │ │ │ │ └── IConfigManager.java │ │ │ └── model │ │ │ │ ├── ConsumerConfig.java │ │ │ │ ├── MonitorConfig.java │ │ │ │ ├── NetConfig.java │ │ │ │ ├── ProviderConfig.java │ │ │ │ └── RegistryConfig.java │ │ │ ├── consumer │ │ │ ├── Consumer.java │ │ │ ├── IConsumer.java │ │ │ ├── balancer │ │ │ │ ├── AbstractConsumerLoadBalancer.java │ │ │ │ ├── ConsistentHashConsumerLoadBalancer.java │ │ │ │ ├── IConsumerLoadBalancer.java │ │ │ │ ├── RandomConsumerLoadBalancer.java │ │ │ │ └── ShortestTimeConsumerLoadBalancer.java │ │ │ ├── event │ │ │ │ └── ConsumerStartEvent.java │ │ │ └── registry │ │ │ │ ├── IRegistry.java │ │ │ │ ├── RegisterVO.java │ │ │ │ └── ZookeeperRegistry.java │ │ │ ├── core │ │ │ ├── AbstractClient.java │ │ │ ├── AbstractServer.java │ │ │ ├── IClient.java │ │ │ ├── IServer.java │ │ │ ├── gateway │ │ │ │ ├── GatewayServer.java │ │ │ │ ├── IGatewayLoadBalancer.java │ │ │ │ ├── WebsocketGatewayServer.java │ │ │ │ ├── WebsocketSslGatewayServer.java │ │ │ │ └── model │ │ │ │ │ ├── AuthUidAsk.java │ │ │ │ │ ├── AuthUidToGatewayCheck.java │ │ │ │ │ ├── AuthUidToGatewayConfirm.java │ │ │ │ │ ├── AuthUidToGatewayEvent.java │ │ │ │ │ ├── GatewaySessionInactiveAsk.java │ │ │ │ │ ├── GatewaySessionInactiveEvent.java │ │ │ │ │ └── GatewaySynchronizeSidAsk.java │ │ │ ├── http │ │ │ │ └── HttpServer.java │ │ │ ├── jprotobuf │ │ │ │ ├── JProtobufTcpClient.java │ │ │ │ └── JProtobufTpcServer.java │ │ │ ├── tcp │ │ │ │ ├── TcpClient.java │ │ │ │ ├── TcpServer.java │ │ │ │ └── model │ │ │ │ │ ├── ClientSessionInactiveEvent.java │ │ │ │ │ └── ServerSessionInactiveEvent.java │ │ │ ├── udp │ │ │ │ ├── UdpClient.java │ │ │ │ └── UdpServer.java │ │ │ └── websocket │ │ │ │ ├── WebsocketClient.java │ │ │ │ └── WebsocketServer.java │ │ │ ├── handler │ │ │ ├── BaseRouteHandler.java │ │ │ ├── ClientRouteHandler.java │ │ │ ├── GatewayRouteHandler.java │ │ │ ├── ServerRouteHandler.java │ │ │ ├── codec │ │ │ │ ├── http │ │ │ │ │ └── HttpCodecHandler.java │ │ │ │ ├── jprotobuf │ │ │ │ │ └── JProtobufTcpCodecHandler.java │ │ │ │ ├── tcp │ │ │ │ │ └── TcpCodecHandler.java │ │ │ │ ├── udp │ │ │ │ │ └── UdpCodecHandler.java │ │ │ │ └── websocket │ │ │ │ │ └── WebSocketCodecHandler.java │ │ │ └── idle │ │ │ │ ├── ClientIdleHandler.java │ │ │ │ └── ServerIdleHandler.java │ │ │ ├── packet │ │ │ ├── common │ │ │ │ ├── Error.java │ │ │ │ ├── Heartbeat.java │ │ │ │ ├── Message.java │ │ │ │ ├── PairLS.java │ │ │ │ ├── PairLong.java │ │ │ │ ├── PairString.java │ │ │ │ ├── Ping.java │ │ │ │ ├── Pong.java │ │ │ │ ├── TripleLSS.java │ │ │ │ ├── TripleLong.java │ │ │ │ └── TripleString.java │ │ │ ├── model │ │ │ │ ├── DecodedPacketInfo.java │ │ │ │ └── EncodedPacketInfo.java │ │ │ └── service │ │ │ │ ├── IPacketService.java │ │ │ │ └── PacketService.java │ │ │ ├── router │ │ │ ├── IRouter.java │ │ │ ├── Router.java │ │ │ ├── answer │ │ │ │ ├── AsyncAnswer.java │ │ │ │ ├── IAsyncAnswer.java │ │ │ │ ├── ISyncAnswer.java │ │ │ │ └── SyncAnswer.java │ │ │ ├── attachment │ │ │ │ ├── AttachmentType.java │ │ │ │ ├── GatewayAttachment.java │ │ │ │ ├── HttpAttachment.java │ │ │ │ ├── IAttachment.java │ │ │ │ ├── NoAnswerAttachment.java │ │ │ │ ├── SignalAttachment.java │ │ │ │ └── UdpAttachment.java │ │ │ ├── exception │ │ │ │ ├── ErrorResponseException.java │ │ │ │ ├── NetTimeOutException.java │ │ │ │ └── UnexpectedProtocolException.java │ │ │ ├── receiver │ │ │ │ ├── EnhanceUtils.java │ │ │ │ ├── IPacketReceiver.java │ │ │ │ ├── PacketReceiver.java │ │ │ │ └── PacketReceiverDefinition.java │ │ │ └── route │ │ │ │ ├── PacketBus.java │ │ │ │ └── SignalBridge.java │ │ │ ├── schema │ │ │ ├── NamespaceHandler.java │ │ │ └── NetDefinitionParser.java │ │ │ ├── session │ │ │ ├── manager │ │ │ │ ├── ISessionManager.java │ │ │ │ └── SessionManager.java │ │ │ └── model │ │ │ │ ├── AttributeType.java │ │ │ │ └── Session.java │ │ │ ├── task │ │ │ ├── TaskBus.java │ │ │ ├── TaskThreadFactory.java │ │ │ ├── dispatcher │ │ │ │ ├── AbstractTaskDispatch.java │ │ │ │ ├── ConsistentHashTaskDispatch.java │ │ │ │ ├── ITaskDispatch.java │ │ │ │ ├── RandomTaskDispatch.java │ │ │ │ └── SessionIdTaskDispatch.java │ │ │ └── model │ │ │ │ ├── PacketReceiverTask.java │ │ │ │ └── SafeRunnable.java │ │ │ └── util │ │ │ ├── SessionUtils.java │ │ │ ├── SimpleCache.java │ │ │ └── SingleCache.java │ └── resources │ │ ├── META-INF │ │ ├── spring.handlers │ │ └── spring.schemas │ │ └── net-1.0.xsd │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── net │ │ ├── base │ │ ├── aio │ │ │ ├── client │ │ │ │ ├── AioClientTest.java │ │ │ │ ├── ConnectCompletionHandler.java │ │ │ │ └── ReadCompletionHandler.java │ │ │ └── server │ │ │ │ ├── AcceptCompletionHandler.java │ │ │ │ ├── AioServerTest.java │ │ │ │ └── ReadCompletionHandler.java │ │ ├── bio │ │ │ ├── TcpTest.java │ │ │ ├── UdpTest.java │ │ │ └── UrlTest.java │ │ ├── http │ │ │ └── AsyncHttpTest.java │ │ ├── netty │ │ │ ├── echoserver1 │ │ │ │ ├── EchoClientHandler.java │ │ │ │ ├── EchoClientTest.java │ │ │ │ ├── EchoServerTest.java │ │ │ │ └── EchoSeverHandler.java │ │ │ ├── echoserver2 │ │ │ │ ├── EchoClientHandler.java │ │ │ │ ├── EchoClientTest.java │ │ │ │ ├── EchoServerTest.java │ │ │ │ └── EchoSeverHandler.java │ │ │ ├── nettyfileserver │ │ │ │ ├── ClientHandler.java │ │ │ │ ├── FileClientTest.java │ │ │ │ ├── FileServerHandler.java │ │ │ │ └── FileServerTest.java │ │ │ ├── subscribe │ │ │ │ ├── ClientHandler.java │ │ │ │ ├── Serverhandler.java │ │ │ │ ├── SubscribeClientTest.java │ │ │ │ ├── SubscribeReq.java │ │ │ │ ├── SubscribeResp.java │ │ │ │ └── SubscribeServerTest.java │ │ │ ├── timeserver1 │ │ │ │ ├── TimeClientHandler.java │ │ │ │ ├── TimeClientTest.java │ │ │ │ ├── TimeServerHandler.java │ │ │ │ └── TimeServerTest.java │ │ │ ├── timeserver2 │ │ │ │ ├── TimeClientHandler.java │ │ │ │ ├── TimeClientTest.java │ │ │ │ ├── TimeServerHandler.java │ │ │ │ └── TimeServerTest.java │ │ │ └── udpserver │ │ │ │ ├── UDPClientHandler.java │ │ │ │ ├── UDPClientTest.java │ │ │ │ ├── UDPServerHandler.java │ │ │ │ └── UDPServerTest.java │ │ └── nio │ │ │ ├── filechannel │ │ │ ├── FileReaderTest.java │ │ │ └── FileWriterTest.java │ │ │ └── nio │ │ │ ├── NioClientTest.java │ │ │ └── NioServerTest.java │ │ ├── config │ │ └── RegistryTest.java │ │ ├── core │ │ ├── csharp │ │ │ ├── ServerPacketController.java │ │ │ └── ServerTest.java │ │ ├── gateway │ │ │ ├── GatewayProviderController.java │ │ │ └── GatewayTest.java │ │ ├── jprotobuf │ │ │ ├── client │ │ │ │ ├── JProtobufTcpClientController.java │ │ │ │ └── TcpClientTest.java │ │ │ └── server │ │ │ │ ├── JProtobufTcpController.java │ │ │ │ └── JProtobufTcpServerTest.java │ │ ├── provider │ │ │ ├── ProviderController.java │ │ │ └── ProviderTest.java │ │ ├── tcp │ │ │ ├── client │ │ │ │ ├── TcpClientController.java │ │ │ │ └── TcpClientTest.java │ │ │ └── server │ │ │ │ ├── TcpServerController.java │ │ │ │ └── TcpServerTest.java │ │ ├── tcpSync │ │ │ ├── client │ │ │ │ └── TcpClientTest.java │ │ │ └── server │ │ │ │ ├── TcpServerTest.java │ │ │ │ └── TcpSyncController.java │ │ ├── tpcAsync │ │ │ ├── client │ │ │ │ └── TcpClientTest.java │ │ │ └── server │ │ │ │ ├── TcpAsyncController.java │ │ │ │ └── TcpServerTest.java │ │ ├── udp │ │ │ ├── client │ │ │ │ ├── UdpClientPacketController.java │ │ │ │ └── UdpClientTest.java │ │ │ └── server │ │ │ │ ├── UdpServerPacketController.java │ │ │ │ └── UdpServerTest.java │ │ └── websocket │ │ │ ├── client │ │ │ ├── WebsocketClientPacketController.java │ │ │ └── WebsocketClientTest.java │ │ │ └── server │ │ │ ├── WebsocketServerPacketController.java │ │ │ └── WebsocketServerTest.java │ │ ├── packet │ │ ├── CM_Array.java │ │ ├── CM_Float.java │ │ ├── CM_Int.java │ │ ├── CM_List.java │ │ ├── CM_Map.java │ │ ├── CM_Object.java │ │ ├── CM_Set.java │ │ ├── ObjectA.java │ │ ├── ObjectB.java │ │ ├── SM_Float.java │ │ ├── SM_Int.java │ │ ├── SM_Object.java │ │ ├── csharp │ │ │ ├── CM_CSharpRequest.java │ │ │ ├── CSharpObjectA.java │ │ │ └── CSharpObjectB.java │ │ ├── gateway │ │ │ ├── GatewayToProviderRequest.java │ │ │ └── GatewayToProviderResponse.java │ │ ├── jprotobuf │ │ │ ├── JProtobufHelloRequest.java │ │ │ └── JProtobufHelloResponse.java │ │ ├── provider │ │ │ ├── ProviderMessAnswer.java │ │ │ └── ProviderMessAsk.java │ │ ├── tcp │ │ │ ├── AsyncMessAnswer.java │ │ │ ├── AsyncMessAsk.java │ │ │ ├── SyncMessAnswer.java │ │ │ ├── SyncMessAsk.java │ │ │ ├── TcpHelloRequest.java │ │ │ └── TcpHelloResponse.java │ │ ├── udp │ │ │ ├── UdpHelloRequest.java │ │ │ └── UdpHelloResponse.java │ │ └── websocket │ │ │ ├── WebSocketObjectA.java │ │ │ ├── WebSocketObjectB.java │ │ │ ├── WebSocketPacketRequest.java │ │ │ ├── WebsocketHelloRequest.java │ │ │ └── WebsocketHelloResponse.java │ │ ├── protocol │ │ └── ProtocolTest.java │ │ ├── router │ │ ├── PacketSignalArray.java │ │ ├── PacketSignalMap.java │ │ └── SignalBridgeTest.java │ │ ├── session │ │ └── SessionUtils.java │ │ ├── util │ │ └── SimpleCacheTest.java │ │ └── zookeeper │ │ ├── base │ │ ├── create │ │ │ ├── CreateNodeASyncTest.java │ │ │ ├── CreateNodeSyncAuthTest.java │ │ │ └── CreateNodeSyncTest.java │ │ ├── delete │ │ │ ├── DeleteNodeASyncTest.java │ │ │ └── DeleteNodeSyncTest.java │ │ ├── query │ │ │ ├── GetChildrenASyncTest.java │ │ │ ├── GetChildrenSyncTest.java │ │ │ ├── GetDataASyncTest.java │ │ │ ├── GetDataSyncTest.java │ │ │ ├── NodeExistsASyncTest.java │ │ │ └── NodeExistsSyncTest.java │ │ └── update │ │ │ ├── UpdateNodeASyncTest.java │ │ │ └── UpdateNodeSyncTest.java │ │ ├── curator │ │ ├── cache │ │ │ └── CuratorCacheTest.java │ │ ├── create │ │ │ ├── CreateNodeASyncTest.java │ │ │ ├── CreateNodeAuthTest.java │ │ │ └── CreateNodeSyncTest.java │ │ ├── delete │ │ │ └── DeleteNodeTest.java │ │ ├── query │ │ │ ├── GetChildrenTest.java │ │ │ ├── GetDataTest.java │ │ │ └── NodeExistsTest.java │ │ └── update │ │ │ └── UpdateDataTest.java │ │ └── recipes │ │ ├── atomicint │ │ └── DistributedAtomicIntTest.java │ │ ├── distributedbarrier │ │ ├── DistributedBarrierTest.java │ │ └── JavaBarrierTest.java │ │ ├── distributedlock │ │ ├── DistributedLockTest.java │ │ └── NodeLockTest.java │ │ ├── mastersel │ │ └── MasterSelectorTest.java │ │ └── nodecache │ │ ├── NodeChildrenListenerTest.java │ │ └── NodeListenerTest.java │ └── resources │ ├── config.xml │ ├── deploy-dev.properties │ ├── gateway │ ├── gateway_client_config.xml │ └── gateway_consistent_session_config.xml │ ├── logback-test.xml │ ├── protocol.xml │ └── provider │ ├── consumer_consistent_session_config.xml │ ├── consumer_random_config.xml │ ├── consumer_shortest_time_config.xml │ └── provider_config.xml ├── orm ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── orm │ │ │ ├── OrmContext.java │ │ │ ├── lpmap │ │ │ ├── ConcurrentFileChannelHeapMap.java │ │ │ ├── ConcurrentFileChannelMap.java │ │ │ ├── ConcurrentHeapMap.java │ │ │ ├── FileChannelHeapMap.java │ │ │ ├── FileChannelMap.java │ │ │ ├── FileHeapMap.java │ │ │ ├── HeapMap.java │ │ │ └── LpMap.java │ │ │ ├── manager │ │ │ ├── IOrmManager.java │ │ │ └── OrmManager.java │ │ │ ├── model │ │ │ ├── accessor │ │ │ │ ├── IAccessor.java │ │ │ │ └── MongodbAccessor.java │ │ │ ├── anno │ │ │ │ ├── EntityCache.java │ │ │ │ ├── EntityCachesInjection.java │ │ │ │ ├── Id.java │ │ │ │ ├── Index.java │ │ │ │ ├── IndexText.java │ │ │ │ └── Persister.java │ │ │ ├── cache │ │ │ │ ├── EntityCaches.java │ │ │ │ └── IEntityCaches.java │ │ │ ├── config │ │ │ │ ├── CacheStrategy.java │ │ │ │ ├── HostConfig.java │ │ │ │ ├── OrmConfig.java │ │ │ │ ├── PersisterStrategy.java │ │ │ │ └── PersisterTypeEnum.java │ │ │ ├── entity │ │ │ │ └── IEntity.java │ │ │ ├── persister │ │ │ │ ├── AbstractOrmPersister.java │ │ │ │ ├── CronOrmPersister.java │ │ │ │ ├── IOrmPersister.java │ │ │ │ ├── PNode.java │ │ │ │ └── TimeOrmPersister.java │ │ │ ├── query │ │ │ │ ├── IQuery.java │ │ │ │ ├── MongodbQuery.java │ │ │ │ └── Page.java │ │ │ └── vo │ │ │ │ ├── EntityDef.java │ │ │ │ ├── IndexDef.java │ │ │ │ └── IndexTextDef.java │ │ │ ├── schema │ │ │ ├── NamespaceHandler.java │ │ │ └── OrmDefinitionParser.java │ │ │ └── util │ │ │ └── MongoIdUtils.java │ └── resources │ │ ├── META-INF │ │ ├── spring.handlers │ │ └── spring.schemas │ │ └── orm-1.0.xsd │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── orm │ │ ├── accessor │ │ ├── AccessorTest.java │ │ ├── IndexTextTest.java │ │ └── TransactionTest.java │ │ ├── cache │ │ ├── EntityCachesTest.java │ │ ├── OrmTest.java │ │ ├── UserManager.java │ │ └── guava │ │ │ └── GuavaCacheTest.java │ │ ├── client │ │ ├── SingleMongoTest.java │ │ └── Student.java │ │ ├── entity │ │ ├── MailEnt.java │ │ └── UserEntity.java │ │ ├── lpmap │ │ ├── ConcurrentFileChannelMapTest.java │ │ ├── ConcurrentHeapMapTest.java │ │ ├── FileChannelMapTest.java │ │ ├── FileHeapMapTest.java │ │ ├── HeapMapTest.java │ │ └── model │ │ │ └── MyPacket.java │ │ ├── query │ │ ├── PageTest.java │ │ └── QueryTest.java │ │ └── util │ │ └── MongoIdUtilsTest.java │ └── resources │ ├── application.xml │ ├── deploy-dev.properties │ └── logback-test.xml ├── pom.xml ├── protocol ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── protocol │ │ │ ├── IPacket.java │ │ │ ├── ProtocolManager.java │ │ │ ├── buffer │ │ │ └── ByteBufUtils.java │ │ │ ├── collection │ │ │ ├── ArrayUtils.java │ │ │ ├── CollectionUtils.java │ │ │ ├── ConcurrentArrayList.java │ │ │ ├── ConcurrentHashSet.java │ │ │ ├── model │ │ │ │ └── NaturalComparator.java │ │ │ └── tree │ │ │ │ ├── GeneralTree.java │ │ │ │ └── TreeNode.java │ │ │ ├── exception │ │ │ ├── AssertException.java │ │ │ ├── ExceptionUtils.java │ │ │ ├── RunException.java │ │ │ └── UnknownException.java │ │ │ ├── generate │ │ │ ├── GenerateOperation.java │ │ │ ├── GenerateProtocolDocument.java │ │ │ ├── GenerateProtocolFile.java │ │ │ └── GenerateProtocolPath.java │ │ │ ├── model │ │ │ ├── Pair.java │ │ │ ├── Quaternion.java │ │ │ └── Triple.java │ │ │ ├── registration │ │ │ ├── EnhanceUtils.java │ │ │ ├── IProtocolRegistration.java │ │ │ ├── ProtocolAnalysis.java │ │ │ ├── ProtocolModule.java │ │ │ ├── ProtocolRegistration.java │ │ │ └── field │ │ │ │ ├── ArrayField.java │ │ │ │ ├── BaseField.java │ │ │ │ ├── IFieldRegistration.java │ │ │ │ ├── ListField.java │ │ │ │ ├── MapField.java │ │ │ │ ├── ObjectProtocolField.java │ │ │ │ └── SetField.java │ │ │ ├── serializer │ │ │ ├── CodeLanguage.java │ │ │ ├── CutDownArraySerializer.java │ │ │ ├── CutDownListSerializer.java │ │ │ ├── CutDownMapSerializer.java │ │ │ ├── CutDownSetSerializer.java │ │ │ ├── ICutDownSerializer.java │ │ │ ├── cs │ │ │ │ ├── CsArraySerializer.java │ │ │ │ ├── CsBooleanSerializer.java │ │ │ │ ├── CsByteSerializer.java │ │ │ │ ├── CsCharSerializer.java │ │ │ │ ├── CsDoubleSerializer.java │ │ │ │ ├── CsFloatSerializer.java │ │ │ │ ├── CsIntSerializer.java │ │ │ │ ├── CsListSerializer.java │ │ │ │ ├── CsLongSerializer.java │ │ │ │ ├── CsMapSerializer.java │ │ │ │ ├── CsObjectProtocolSerializer.java │ │ │ │ ├── CsSetSerializer.java │ │ │ │ ├── CsShortSerializer.java │ │ │ │ ├── CsStringSerializer.java │ │ │ │ ├── GenerateCsUtils.java │ │ │ │ └── ICsSerializer.java │ │ │ ├── enhance │ │ │ │ ├── EnhanceArraySerializer.java │ │ │ │ ├── EnhanceBooleanSerializer.java │ │ │ │ ├── EnhanceByteSerializer.java │ │ │ │ ├── EnhanceCharSerializer.java │ │ │ │ ├── EnhanceDoubleSerializer.java │ │ │ │ ├── EnhanceFloatSerializer.java │ │ │ │ ├── EnhanceIntSerializer.java │ │ │ │ ├── EnhanceListSerializer.java │ │ │ │ ├── EnhanceLongSerializer.java │ │ │ │ ├── EnhanceMapSerializer.java │ │ │ │ ├── EnhanceObjectProtocolSerializer.java │ │ │ │ ├── EnhanceSetSerializer.java │ │ │ │ ├── EnhanceShortSerializer.java │ │ │ │ ├── EnhanceStringSerializer.java │ │ │ │ └── IEnhanceSerializer.java │ │ │ ├── gd │ │ │ │ ├── GdArraySerializer.java │ │ │ │ ├── GdBooleanSerializer.java │ │ │ │ ├── GdByteSerializer.java │ │ │ │ ├── GdCharSerializer.java │ │ │ │ ├── GdDoubleSerializer.java │ │ │ │ ├── GdFloatSerializer.java │ │ │ │ ├── GdIntSerializer.java │ │ │ │ ├── GdListSerializer.java │ │ │ │ ├── GdLongSerializer.java │ │ │ │ ├── GdMapSerializer.java │ │ │ │ ├── GdObjectProtocolSerializer.java │ │ │ │ ├── GdSetSerializer.java │ │ │ │ ├── GdShortSerializer.java │ │ │ │ ├── GdStringSerializer.java │ │ │ │ ├── GenerateGdUtils.java │ │ │ │ └── IGdSerializer.java │ │ │ ├── js │ │ │ │ ├── GenerateJsUtils.java │ │ │ │ ├── IJsSerializer.java │ │ │ │ ├── JsArraySerializer.java │ │ │ │ ├── JsBooleanSerializer.java │ │ │ │ ├── JsByteSerializer.java │ │ │ │ ├── JsCharSerializer.java │ │ │ │ ├── JsDoubleSerializer.java │ │ │ │ ├── JsFloatSerializer.java │ │ │ │ ├── JsIntSerializer.java │ │ │ │ ├── JsListSerializer.java │ │ │ │ ├── JsLongSerializer.java │ │ │ │ ├── JsMapSerializer.java │ │ │ │ ├── JsObjectProtocolSerializer.java │ │ │ │ ├── JsSetSerializer.java │ │ │ │ ├── JsShortSerializer.java │ │ │ │ └── JsStringSerializer.java │ │ │ ├── lua │ │ │ │ ├── GenerateLuaUtils.java │ │ │ │ ├── ILuaSerializer.java │ │ │ │ ├── LuaArraySerializer.java │ │ │ │ ├── LuaBooleanSerializer.java │ │ │ │ ├── LuaByteSerializer.java │ │ │ │ ├── LuaCharSerializer.java │ │ │ │ ├── LuaDoubleSerializer.java │ │ │ │ ├── LuaFloatSerializer.java │ │ │ │ ├── LuaIntSerializer.java │ │ │ │ ├── LuaListSerializer.java │ │ │ │ ├── LuaLongSerializer.java │ │ │ │ ├── LuaMapSerializer.java │ │ │ │ ├── LuaObjectProtocolSerializer.java │ │ │ │ ├── LuaSetSerializer.java │ │ │ │ ├── LuaShortSerializer.java │ │ │ │ └── LuaStringSerializer.java │ │ │ └── reflect │ │ │ │ ├── ArraySerializer.java │ │ │ │ ├── BooleanSerializer.java │ │ │ │ ├── ByteSerializer.java │ │ │ │ ├── CharSerializer.java │ │ │ │ ├── DoubleSerializer.java │ │ │ │ ├── FloatSerializer.java │ │ │ │ ├── ISerializer.java │ │ │ │ ├── IntSerializer.java │ │ │ │ ├── ListSerializer.java │ │ │ │ ├── LongSerializer.java │ │ │ │ ├── MapSerializer.java │ │ │ │ ├── ObjectProtocolSerializer.java │ │ │ │ ├── SetSerializer.java │ │ │ │ ├── ShortSerializer.java │ │ │ │ └── StringSerializer.java │ │ │ ├── util │ │ │ ├── AssertionUtils.java │ │ │ ├── ClassUtils.java │ │ │ ├── DomUtils.java │ │ │ ├── FileUtils.java │ │ │ ├── IOUtils.java │ │ │ ├── JsonUtils.java │ │ │ ├── ReflectionUtils.java │ │ │ └── StringUtils.java │ │ │ └── xml │ │ │ ├── XmlModuleDefinition.java │ │ │ ├── XmlProtocolDefinition.java │ │ │ └── XmlProtocols.java │ └── resources │ │ ├── cs │ │ ├── Buffer │ │ │ ├── BigEndianByteBuffer.cs │ │ │ ├── ByteBuffer.cs │ │ │ └── LittleEndianByteBuffer.cs │ │ ├── IPacket.cs │ │ ├── IProtocolRegistration.cs │ │ └── ProtocolManager.cs │ │ ├── gd │ │ ├── ProtocolManager.gd │ │ └── buffer │ │ │ └── ByteBuffer.gd │ │ ├── go │ │ └── ByteBuffer.go │ │ ├── js │ │ ├── ProtocolManager.js │ │ └── buffer │ │ │ ├── ByteBuffer.js │ │ │ ├── long.js │ │ │ └── longbits.js │ │ └── lua │ │ ├── Buffer │ │ ├── ByteBuffer.lua │ │ └── Long.lua │ │ └── ProtocolManager.lua │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── protocol │ │ ├── SpeedTest.java │ │ ├── buffer │ │ ├── ByteBufUtilsTest.java │ │ └── model │ │ │ ├── MyObjectA.java │ │ │ ├── MyObjectB.java │ │ │ └── MyPacket.java │ │ ├── javassist │ │ ├── A.java │ │ ├── B.java │ │ ├── C.java │ │ ├── D.java │ │ ├── Hello.java │ │ ├── IDGet.java │ │ └── JavassistTest.java │ │ ├── jprotobuf │ │ ├── JProtobufTest.java │ │ ├── ObjectA.java │ │ └── ObjectB.java │ │ ├── packet │ │ ├── ComplexObject.java │ │ ├── NormalObject.java │ │ ├── ObjectA.java │ │ ├── ObjectB.java │ │ ├── ProtobufObject.java │ │ └── SimpleObject.java │ │ └── util │ │ ├── AssertionUtilsTest.java │ │ ├── ClassUtilsTest.java │ │ ├── DomUtilsTest.java │ │ ├── FileUtilTest.java │ │ ├── JsonUtilTest.java │ │ ├── ReflectUtilTest.java │ │ ├── StringUtilTest.java │ │ └── model │ │ └── User.java │ └── resources │ ├── ComplexObject.bytes │ ├── csTest │ └── CsProtocolTest.cs │ ├── gdTest │ └── GdProtocolTest.gd │ ├── jsTest │ ├── .eslintrc.js │ └── jsProtocolTest.spec.js │ ├── logback-test.xml │ ├── luaTest │ ├── LuaProtocolTest.cs │ └── LuaProtocolTest.lua │ └── speed.proto ├── scheduler ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── scheduler │ │ │ ├── SchedulerContext.java │ │ │ ├── manager │ │ │ ├── SchedulerBus.java │ │ │ └── SchedulerThreadFactory.java │ │ │ ├── model │ │ │ ├── StopWatch.java │ │ │ ├── anno │ │ │ │ └── Scheduler.java │ │ │ └── vo │ │ │ │ ├── EnhanceUtils.java │ │ │ │ ├── IScheduler.java │ │ │ │ ├── ReflectScheduler.java │ │ │ │ ├── RunnableScheduler.java │ │ │ │ └── SchedulerDefinition.java │ │ │ ├── schema │ │ │ ├── NamespaceHandler.java │ │ │ └── SchedulerDefinitionParser.java │ │ │ └── util │ │ │ └── TimeUtils.java │ └── resources │ │ ├── META-INF │ │ ├── spring.handlers │ │ └── spring.schemas │ │ └── scheduler-1.0.xsd │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── scheduler │ │ ├── ApplicationTest.java │ │ ├── SchedulerController.java │ │ └── util │ │ └── TimeUtilsTest.java │ └── resources │ ├── application.xml │ └── logback-test.xml ├── storage ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── zfoo │ │ │ └── storage │ │ │ ├── StorageContext.java │ │ │ ├── interpreter │ │ │ ├── ExcelResourceReader.java │ │ │ └── IResourceReader.java │ │ │ ├── manager │ │ │ ├── IStorageManager.java │ │ │ └── StorageManager.java │ │ │ ├── model │ │ │ ├── anno │ │ │ │ ├── Id.java │ │ │ │ ├── Index.java │ │ │ │ ├── ResInjection.java │ │ │ │ └── Resource.java │ │ │ ├── config │ │ │ │ └── StorageConfig.java │ │ │ └── vo │ │ │ │ ├── IdDef.java │ │ │ │ ├── IndexDef.java │ │ │ │ ├── ResourceDef.java │ │ │ │ └── Storage.java │ │ │ ├── schema │ │ │ ├── NamespaceHandler.java │ │ │ └── StorageDefinitionParser.java │ │ │ ├── strategy │ │ │ ├── JsonToArrayConverter.java │ │ │ ├── JsonToMapConverter.java │ │ │ ├── JsonToObjectConverter.java │ │ │ ├── StringToClassConverter.java │ │ │ ├── StringToDateConverter.java │ │ │ └── StringToMapConverter.java │ │ │ └── util │ │ │ └── CellUtils.java │ └── resources │ │ ├── META-INF │ │ ├── spring.handlers │ │ └── spring.schemas │ │ └── storage-1.0.xsd │ └── test │ ├── java │ └── com │ │ └── zfoo │ │ └── storage │ │ ├── ApplicationTest.java │ │ ├── StudentManager.java │ │ ├── conversion │ │ └── ConversionTest.java │ │ ├── excel │ │ └── ExcelTest.java │ │ ├── pathmatch │ │ └── PathMatchTest.java │ │ └── resource │ │ ├── StudentResource.java │ │ └── User.java │ └── resources │ ├── application.xml │ ├── excel │ └── StudentResource.xlsx │ └── logback-test.xml └── util ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── zfoo │ │ └── util │ │ ├── EnumUtils.java │ │ ├── ThreadUtils.java │ │ ├── captcha │ │ ├── ArithmeticCaptcha.java │ │ ├── GifCaptcha.java │ │ ├── PngCaptcha.java │ │ ├── gif │ │ │ ├── Encoder.java │ │ │ ├── GifEncoder.java │ │ │ └── Quant.java │ │ └── model │ │ │ ├── AbstractCaptcha.java │ │ │ ├── CaptchaCharEnum.java │ │ │ └── CaptchaFontEnum.java │ │ ├── math │ │ ├── Combinatorics.java │ │ ├── ConsistentHash.java │ │ ├── HashUtils.java │ │ ├── NumberUtils.java │ │ ├── RandomSelector.java │ │ ├── RandomUtils.java │ │ ├── dfa │ │ │ └── WordTree.java │ │ └── lexer │ │ │ └── LexicalAnalysis.java │ │ ├── net │ │ ├── HostAndPort.java │ │ └── NetUtils.java │ │ └── security │ │ ├── AesUtils.java │ │ ├── IdUtils.java │ │ ├── MD5Utils.java │ │ └── ZipUtils.java └── resources │ └── captcha │ ├── actionj.ttf │ ├── epilog.ttf │ ├── fresnel.ttf │ ├── headache.ttf │ ├── lexo.ttf │ ├── prefix.ttf │ ├── progbot.ttf │ ├── ransom.ttf │ ├── robot.ttf │ └── scandal.ttf └── test └── java ├── MainTest.java └── com └── zfoo └── util ├── EnumUtilsTest.java ├── NetUtilsTest.java ├── captcha └── CaptchaTest.java ├── collection ├── CollectionUtilsTest.java └── GeneralTreeTest.java ├── math ├── ConsistentHashTest.java ├── dfa │ └── WordTreeTest.java └── lexer │ └── LexicalAnalysisTest.java └── security ├── AesUtilsTest.java ├── IdUtilsTest.java ├── MD5UtilsTest.java └── ZipTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/pom.xml -------------------------------------------------------------------------------- /record/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/pom.xml -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/RecordContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/RecordContext.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/manager/IRecordHub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/manager/IRecordHub.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/manager/RecordHub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/manager/RecordHub.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/anno/RecordCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/anno/RecordCache.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/anno/RecordId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/anno/RecordId.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/config/CacheStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/config/CacheStrategy.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/config/CachesConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/config/CachesConfig.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/config/HostConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/config/HostConfig.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/config/RecordConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/config/RecordConfig.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/record/IRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/record/IRecord.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/model/vo/RecordDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/model/vo/RecordDef.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/schema/NamespaceHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/schema/NamespaceHandler.java -------------------------------------------------------------------------------- /record/src/main/java/com/zfoo/record/util/RecordUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/java/com/zfoo/record/util/RecordUtils.java -------------------------------------------------------------------------------- /record/src/main/resources/META-INF/spring.handlers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/resources/META-INF/spring.handlers -------------------------------------------------------------------------------- /record/src/main/resources/META-INF/spring.schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/resources/META-INF/spring.schemas -------------------------------------------------------------------------------- /record/src/main/resources/record-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/main/resources/record-1.0.xsd -------------------------------------------------------------------------------- /record/src/test/java/com/zfoo/record/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/test/java/com/zfoo/record/ApplicationTest.java -------------------------------------------------------------------------------- /record/src/test/java/com/zfoo/record/record/CurrencyRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/test/java/com/zfoo/record/record/CurrencyRecord.java -------------------------------------------------------------------------------- /record/src/test/java/com/zfoo/record/search/rest/Blog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/test/java/com/zfoo/record/search/rest/Blog.java -------------------------------------------------------------------------------- /record/src/test/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/test/resources/application.xml -------------------------------------------------------------------------------- /record/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/record/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /seo-puppeteer/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home1.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home10.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home11.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home2.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home3.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home4.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home5.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home6.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home7.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home8.png -------------------------------------------------------------------------------- /seo-puppeteer/img/home9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/img/home9.png -------------------------------------------------------------------------------- /seo-puppeteer/linux-set-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/linux-set-up.md -------------------------------------------------------------------------------- /seo-puppeteer/spider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/seo-puppeteer/spider.js -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.env: -------------------------------------------------------------------------------- 1 | VUE_APP_GOOGLE_ANALYTICS = 'UA-173353236-1' 2 | -------------------------------------------------------------------------------- /web/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/.env.development -------------------------------------------------------------------------------- /web/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/.env.production -------------------------------------------------------------------------------- /web/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | node_modules/ 3 | src/assets 4 | public/ 5 | dist/ 6 | -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/README.md -------------------------------------------------------------------------------- /web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/babel.config.js -------------------------------------------------------------------------------- /web/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home.png -------------------------------------------------------------------------------- /web/img/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home1.png -------------------------------------------------------------------------------- /web/img/home10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home10.png -------------------------------------------------------------------------------- /web/img/home11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home11.png -------------------------------------------------------------------------------- /web/img/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home2.png -------------------------------------------------------------------------------- /web/img/home3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home3.png -------------------------------------------------------------------------------- /web/img/home4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home4.png -------------------------------------------------------------------------------- /web/img/home5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home5.png -------------------------------------------------------------------------------- /web/img/home6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home6.png -------------------------------------------------------------------------------- /web/img/home7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home7.png -------------------------------------------------------------------------------- /web/img/home8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home8.png -------------------------------------------------------------------------------- /web/img/home9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/img/home9.png -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/postcss.config.js -------------------------------------------------------------------------------- /web/public/baidu_verify_cPjPRxVtp0.html: -------------------------------------------------------------------------------- 1 | cPjPRxVtp0 -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/favicon.png -------------------------------------------------------------------------------- /web/public/google98e7ae9652f47315.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/google98e7ae9652f47315.html -------------------------------------------------------------------------------- /web/public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /web/public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /web/public/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /web/public/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /web/public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /web/public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /web/public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /web/public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /web/public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /web/public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /web/public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /web/public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /web/public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /web/public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /web/public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/public/index.html -------------------------------------------------------------------------------- /web/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/apiHttp/adminApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/adminApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/coinApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/coinApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/feedApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/feedApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/homeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/homeApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/loginApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/loginApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/ossApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/ossApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/timeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/timeApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/userApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/userApi.js -------------------------------------------------------------------------------- /web/src/apiHttp/wordApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiHttp/wordApi.js -------------------------------------------------------------------------------- /web/src/apiWs/friendApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiWs/friendApi.js -------------------------------------------------------------------------------- /web/src/apiWs/groupApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiWs/groupApi.js -------------------------------------------------------------------------------- /web/src/apiWs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiWs/index.js -------------------------------------------------------------------------------- /web/src/apiWs/loginApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiWs/loginApi.js -------------------------------------------------------------------------------- /web/src/apiWs/userApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/apiWs/userApi.js -------------------------------------------------------------------------------- /web/src/asset/footer/police-bei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/footer/police-bei.png -------------------------------------------------------------------------------- /web/src/asset/icon/apple-action-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/icon/apple-action-icon.png -------------------------------------------------------------------------------- /web/src/asset/icon/default_avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/icon/default_avatar.gif -------------------------------------------------------------------------------- /web/src/asset/logo/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/logo/logo.jpg -------------------------------------------------------------------------------- /web/src/asset/logo/zfoo_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/logo/zfoo_large.jpg -------------------------------------------------------------------------------- /web/src/asset/logo/zfoo_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/logo/zfoo_normal.jpg -------------------------------------------------------------------------------- /web/src/asset/logo/zfoo_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/asset/logo/zfoo_small.jpg -------------------------------------------------------------------------------- /web/src/component/AppBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/AppBar.vue -------------------------------------------------------------------------------- /web/src/component/BottomSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/BottomSheet.vue -------------------------------------------------------------------------------- /web/src/component/Group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/Group.vue -------------------------------------------------------------------------------- /web/src/component/Snackbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/Snackbar.vue -------------------------------------------------------------------------------- /web/src/component/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/View.vue -------------------------------------------------------------------------------- /web/src/component/app/AppSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/app/AppSearch.vue -------------------------------------------------------------------------------- /web/src/component/app/AppSearchSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/app/AppSearchSelector.vue -------------------------------------------------------------------------------- /web/src/component/app/LoginDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/app/LoginDialog.vue -------------------------------------------------------------------------------- /web/src/component/app/ReportDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/app/ReportDialog.vue -------------------------------------------------------------------------------- /web/src/component/app/SettingDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/app/SettingDialog.vue -------------------------------------------------------------------------------- /web/src/component/base/AppFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/AppFooter.vue -------------------------------------------------------------------------------- /web/src/component/base/Creation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/Creation.vue -------------------------------------------------------------------------------- /web/src/component/base/DisplayContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/DisplayContent.vue -------------------------------------------------------------------------------- /web/src/component/base/IconWithTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/IconWithTooltip.vue -------------------------------------------------------------------------------- /web/src/component/base/LocationSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/LocationSelector.vue -------------------------------------------------------------------------------- /web/src/component/base/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/NotFound.vue -------------------------------------------------------------------------------- /web/src/component/base/PhoneVerify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/PhoneVerify.vue -------------------------------------------------------------------------------- /web/src/component/base/UserItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/UserItem.vue -------------------------------------------------------------------------------- /web/src/component/base/UserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/base/UserList.vue -------------------------------------------------------------------------------- /web/src/component/group/FriendHot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/FriendHot.vue -------------------------------------------------------------------------------- /web/src/component/group/FriendOperation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/FriendOperation.vue -------------------------------------------------------------------------------- /web/src/component/group/GroupButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/GroupButton.vue -------------------------------------------------------------------------------- /web/src/component/group/GroupInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/GroupInfo.vue -------------------------------------------------------------------------------- /web/src/component/group/GroupOperation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/GroupOperation.vue -------------------------------------------------------------------------------- /web/src/component/group/common/ChatInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/common/ChatInput.vue -------------------------------------------------------------------------------- /web/src/component/group/common/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/common/Message.vue -------------------------------------------------------------------------------- /web/src/component/group/common/MessageEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/common/MessageEdit.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/chat/FriendChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/chat/FriendChat.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/chat/FriendChatInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/chat/FriendChatInput.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/chat/FriendChatTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/chat/FriendChatTitle.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/operation/Blacklist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/operation/Blacklist.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/operation/FriendAll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/operation/FriendAll.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/operation/FriendApply.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/operation/FriendApply.vue -------------------------------------------------------------------------------- /web/src/component/group/friend/operation/FriendSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/friend/operation/FriendSearch.vue -------------------------------------------------------------------------------- /web/src/component/group/group/GroupAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/GroupAvatar.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/GroupChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/GroupChat.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/GroupChatInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/GroupChatInput.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/GroupChatTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/GroupChatTitle.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/channel/ChannelAuth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/channel/ChannelAuth.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/channel/ChannelAuthSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/channel/ChannelAuthSelector.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/channel/ChannelPin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/channel/ChannelPin.vue -------------------------------------------------------------------------------- /web/src/component/group/group/chat/channel/ChannelSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/chat/channel/ChannelSetting.vue -------------------------------------------------------------------------------- /web/src/component/group/group/member/GroupChangeAdmin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/member/GroupChangeAdmin.vue -------------------------------------------------------------------------------- /web/src/component/group/group/member/MemberInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/member/MemberInfo.vue -------------------------------------------------------------------------------- /web/src/component/group/group/member/MemberInfoTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/member/MemberInfoTitle.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/ChannelBoxCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/ChannelBoxCreate.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/ChannelBoxEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/ChannelBoxEdit.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/ChannelCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/ChannelCreate.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/GroupAuth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/GroupAuth.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/GroupCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/GroupCode.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/GroupCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/GroupCreate.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/GroupJoin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/GroupJoin.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/GroupLeave.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/GroupLeave.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/GroupSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/GroupSetting.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/base/GroupAuthNameInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/base/GroupAuthNameInput.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/base/GroupAuthSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/base/GroupAuthSelector.vue -------------------------------------------------------------------------------- /web/src/component/group/group/operation/base/GroupColorSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/group/group/operation/base/GroupColorSelector.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeAvatar.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeChip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeChip.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeContent.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeImgGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeImgGallery.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeKey.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeKey.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeLinkAlbum.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeLinkAlbum.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeOperation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeOperation.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeSlice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeSlice.vue -------------------------------------------------------------------------------- /web/src/component/time/TimeVideo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/TimeVideo.vue -------------------------------------------------------------------------------- /web/src/component/time/creation/LicenseSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/creation/LicenseSelector.vue -------------------------------------------------------------------------------- /web/src/component/time/creation/TimeSliceDateSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/creation/TimeSliceDateSelector.vue -------------------------------------------------------------------------------- /web/src/component/time/creation/TimeSliceItemSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/creation/TimeSliceItemSelector.vue -------------------------------------------------------------------------------- /web/src/component/time/creation/TimeSlicePersonSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/creation/TimeSlicePersonSelector.vue -------------------------------------------------------------------------------- /web/src/component/time/creation/TimeSliceTimeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/component/time/creation/TimeSliceTimeSelector.vue -------------------------------------------------------------------------------- /web/src/constant/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/constant/constant.js -------------------------------------------------------------------------------- /web/src/i18n/cn/codeEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/codeEnum.js -------------------------------------------------------------------------------- /web/src/i18n/cn/industries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/industries.js -------------------------------------------------------------------------------- /web/src/i18n/cn/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/license.js -------------------------------------------------------------------------------- /web/src/i18n/cn/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/local.js -------------------------------------------------------------------------------- /web/src/i18n/cn/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/locations.js -------------------------------------------------------------------------------- /web/src/i18n/cn/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/reports.js -------------------------------------------------------------------------------- /web/src/i18n/cn/subjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/subjects.js -------------------------------------------------------------------------------- /web/src/i18n/cn/userTerms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/cn/userTerms.js -------------------------------------------------------------------------------- /web/src/i18n/en/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/en/local.js -------------------------------------------------------------------------------- /web/src/i18n/en/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/en/locations.js -------------------------------------------------------------------------------- /web/src/i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/i18n/i18n.js -------------------------------------------------------------------------------- /web/src/jsProtocol/ProtocolManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/ProtocolManager.js -------------------------------------------------------------------------------- /web/src/jsProtocol/buffer/ByteBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/buffer/ByteBuffer.js -------------------------------------------------------------------------------- /web/src/jsProtocol/buffer/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/buffer/long.js -------------------------------------------------------------------------------- /web/src/jsProtocol/buffer/longbits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/buffer/longbits.js -------------------------------------------------------------------------------- /web/src/jsProtocol/cache/GetUserCacheRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/cache/GetUserCacheRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/cache/GetUserCacheResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/cache/GetUserCacheResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/cache/SearchUserRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/cache/SearchUserRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/cache/SearchUserResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/cache/SearchUserResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/cache/model/UserCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/cache/model/UserCache.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/ChatMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/ChatMessage.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/Error.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/Heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/Heartbeat.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/Message.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/PairLS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/PairLS.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/PairLong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/PairLong.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/PairString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/PairString.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/Ping.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/Pong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/Pong.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/TripleLSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/TripleLSS.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/TripleLong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/TripleLong.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/TripleString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/TripleString.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/time/TimeKeyHeaderVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/time/TimeKeyHeaderVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/time/TimeKeyRowVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/time/TimeKeyRowVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/time/TimeKeyVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/time/TimeKeyVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/time/TimeLinkAlbumVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/time/TimeLinkAlbumVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/common/time/VideoLinkVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/common/time/VideoLinkVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/DeleteFriendMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/DeleteFriendMessageNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/EditFriendMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/EditFriendMessageNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/FriendMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/FriendMessageNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/NewApplyFriendNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/NewApplyFriendNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/NewFriendNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/NewFriendNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/DeleteFriendMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/DeleteFriendMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/EditFriendMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/EditFriendMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/FriendChatRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/FriendChatRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/FriendHistoryMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/FriendHistoryMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/FriendHistoryMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/FriendHistoryMessageResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/ReadFriendMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/ReadFriendMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/chat/ReadFriendMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/chat/ReadFriendMessageResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/model/ApplyFriendVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/model/ApplyFriendVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/model/FriendInfoVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/model/FriendInfoVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/AcceptFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/AcceptFriendRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/ApplyFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/ApplyFriendRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/BlacklistCancelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/BlacklistCancelRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/BlacklistCancelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/BlacklistCancelResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/BlacklistRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/BlacklistRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/BlacklistResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/BlacklistResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/DeleteFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/DeleteFriendRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/DeleteFriendResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/DeleteFriendResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/MarkFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/MarkFriendRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/MarkFriendResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/MarkFriendResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/RejectFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/RejectFriendRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/friend/operation/RejectFriendResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/friend/operation/RejectFriendResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/DeleteGroupMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/DeleteGroupMessageNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/DeleteGroupNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/DeleteGroupNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/EditGroupMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/EditGroupMessageNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/GroupChatMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/GroupChatMessageNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/GroupUpdateNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/GroupUpdateNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/KickMemberNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/KickMemberNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/MemberGroupAuthIdUpdateNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/MemberGroupAuthIdUpdateNotice.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/AddMemberToGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/AddMemberToGroupAuthRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/AddMemberToGroupAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/AddMemberToGroupAuthResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/ChangeGroupAdminRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/ChangeGroupAdminRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/ChangeGroupAdminResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/ChangeGroupAdminResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/CreateGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/CreateGroupAuthRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/DeleteGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/DeleteGroupAuthRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/DeleteGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/DeleteGroupRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/RemoveMemberFromGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/RemoveMemberFromGroupAuthRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/RemoveMemberFromGroupAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/RemoveMemberFromGroupAuthResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/SaveChannelAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/SaveChannelAuthRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/SaveChannelAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/SaveChannelAuthResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/SaveGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/SaveGroupAuthRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/auth/SaveGroupAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/auth/SaveGroupAuthResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/CreateChannelBoxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/CreateChannelBoxRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/CreateChannelBoxResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/CreateChannelBoxResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/CreateChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/CreateChannelRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/CreateChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/CreateChannelResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/DeleteChannelBoxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/DeleteChannelBoxRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/DeleteChannelBoxResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/DeleteChannelBoxResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/DeleteChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/DeleteChannelRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/DeleteChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/DeleteChannelResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/SaveChannelBoxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/SaveChannelBoxRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/SaveChannelBoxResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/SaveChannelBoxResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/SaveChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/SaveChannelRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/channel/SaveChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/channel/SaveChannelResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/DeleteGroupMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/DeleteGroupMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/DeleteGroupPinMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/DeleteGroupPinMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/DeleteGroupPinMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/DeleteGroupPinMessageResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/EditGroupMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/EditGroupMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/GroupChatRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/GroupChatRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/GroupHistoryMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/GroupHistoryMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/GroupHistoryMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/GroupHistoryMessageResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/GroupHistoryPinMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/GroupHistoryPinMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/GroupHistoryPinMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/GroupHistoryPinMessageResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/chat/PinGroupMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/chat/PinGroupMessageRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/AllInviteGroupCodeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/AllInviteGroupCodeRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/AllInviteGroupCodeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/AllInviteGroupCodeResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/CreateInviteGroupCodeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/CreateInviteGroupCodeRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/CreateInviteGroupCodeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/CreateInviteGroupCodeResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/DeleteInviteGroupCodeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/DeleteInviteGroupCodeRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/DeleteInviteGroupCodeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/DeleteInviteGroupCodeResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/GroupMemberInfoRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/GroupMemberInfoRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/GroupMemberInfoResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/GroupMemberInfoResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/GroupMemberListRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/GroupMemberListRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/GroupMemberListResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/GroupMemberListResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/JoinGroupByUserIdRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/JoinGroupByUserIdRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/JoinGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/JoinGroupRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/JoinGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/JoinGroupResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/KickMemberRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/KickMemberRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/KickMemberResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/KickMemberResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/LeaveGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/LeaveGroupRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/LeaveGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/LeaveGroupResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/model/GroupMemberVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/model/GroupMemberVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/member/model/InviteCodeVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/member/model/InviteCodeVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/ChannelAuthVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/ChannelAuthVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/ChannelBoxVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/ChannelBoxVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/ChannelTimeVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/ChannelTimeVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/ChannelVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/ChannelVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/GroupAuthVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/GroupAuthVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/GroupMemberSimpleVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/GroupMemberSimpleVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/GroupTimeVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/GroupTimeVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/model/GroupVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/model/GroupVO.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/RefreshGroupNameRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/RefreshGroupNameRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/SaveGroupAvatarRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/SaveGroupAvatarRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/SaveGroupAvatarResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/SaveGroupAvatarResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/SaveGroupBackgroundRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/SaveGroupBackgroundRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/SaveGroupBackgroundResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/SaveGroupBackgroundResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/SaveGroupSettingRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/SaveGroupSettingRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/group/setting/SaveGroupSettingResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/group/setting/SaveGroupSettingResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/WebsocketSignInRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/WebsocketSignInRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/WebsocketSignInResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/WebsocketSignInResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/WebsocketSignOutRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/WebsocketSignOutRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/WebsocketSignOutResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/WebsocketSignOutResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/CreateGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/CreateGroupRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/CreateGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/CreateGroupResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/MuteChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/MuteChannelRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/MuteChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/MuteChannelResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/MuteGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/MuteGroupRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/MuteGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/MuteGroupResponse.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/RefreshChannelTimeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/RefreshChannelTimeRequest.js -------------------------------------------------------------------------------- /web/src/jsProtocol/user/group/RefreshChannelTimeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/jsProtocol/user/group/RefreshChannelTimeResponse.js -------------------------------------------------------------------------------- /web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/main.js -------------------------------------------------------------------------------- /web/src/mock/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/mock/mock.js -------------------------------------------------------------------------------- /web/src/plugin/base.js: -------------------------------------------------------------------------------- 1 | // import Vue from 'vue' 2 | -------------------------------------------------------------------------------- /web/src/plugin/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/plugin/lodash.js -------------------------------------------------------------------------------- /web/src/plugin/myPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/plugin/myPlugin.js -------------------------------------------------------------------------------- /web/src/plugin/protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/plugin/protocol.js -------------------------------------------------------------------------------- /web/src/plugin/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/plugin/video.js -------------------------------------------------------------------------------- /web/src/plugin/vuelidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/plugin/vuelidate.js -------------------------------------------------------------------------------- /web/src/plugin/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/plugin/vuetify.js -------------------------------------------------------------------------------- /web/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/registerServiceWorker.js -------------------------------------------------------------------------------- /web/src/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/router/router.js -------------------------------------------------------------------------------- /web/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/store/modules/app.js -------------------------------------------------------------------------------- /web/src/store/modules/friend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/store/modules/friend.js -------------------------------------------------------------------------------- /web/src/store/modules/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/store/modules/group.js -------------------------------------------------------------------------------- /web/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/store/modules/user.js -------------------------------------------------------------------------------- /web/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/store/store.js -------------------------------------------------------------------------------- /web/src/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/style/index.scss -------------------------------------------------------------------------------- /web/src/util/authUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/authUtils.js -------------------------------------------------------------------------------- /web/src/util/clipboardUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/clipboardUtils.js -------------------------------------------------------------------------------- /web/src/util/environmentUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/environmentUtils.js -------------------------------------------------------------------------------- /web/src/util/fileUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/fileUtils.js -------------------------------------------------------------------------------- /web/src/util/fixBugUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/fixBugUtils.js -------------------------------------------------------------------------------- /web/src/util/googleAnalyticsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/googleAnalyticsUtils.js -------------------------------------------------------------------------------- /web/src/util/groupUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/groupUtils.js -------------------------------------------------------------------------------- /web/src/util/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/helpers.js -------------------------------------------------------------------------------- /web/src/util/noticeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/noticeUtils.js -------------------------------------------------------------------------------- /web/src/util/pushUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/pushUtils.js -------------------------------------------------------------------------------- /web/src/util/requestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/requestUtils.js -------------------------------------------------------------------------------- /web/src/util/stringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/stringUtils.js -------------------------------------------------------------------------------- /web/src/util/timeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/timeUtils.js -------------------------------------------------------------------------------- /web/src/util/vuexUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/vuexUtils.js -------------------------------------------------------------------------------- /web/src/util/websocketUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/util/websocketUtils.js -------------------------------------------------------------------------------- /web/src/view/Test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/Test.vue -------------------------------------------------------------------------------- /web/src/view/admin/Admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/admin/Admin.vue -------------------------------------------------------------------------------- /web/src/view/admin/component/AdminTimeDelete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/admin/component/AdminTimeDelete.vue -------------------------------------------------------------------------------- /web/src/view/admin/component/AdminTimeReview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/admin/component/AdminTimeReview.vue -------------------------------------------------------------------------------- /web/src/view/admin/component/AdminUserAuth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/admin/component/AdminUserAuth.vue -------------------------------------------------------------------------------- /web/src/view/app/License.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/app/License.vue -------------------------------------------------------------------------------- /web/src/view/app/NotFoundPage404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/app/NotFoundPage404.vue -------------------------------------------------------------------------------- /web/src/view/app/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/app/Search.vue -------------------------------------------------------------------------------- /web/src/view/app/Terms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/app/Terms.vue -------------------------------------------------------------------------------- /web/src/view/feed/ItemFeed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/feed/ItemFeed.vue -------------------------------------------------------------------------------- /web/src/view/feed/LocationFeed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/feed/LocationFeed.vue -------------------------------------------------------------------------------- /web/src/view/feed/PersonFeed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/feed/PersonFeed.vue -------------------------------------------------------------------------------- /web/src/view/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/home/Home.vue -------------------------------------------------------------------------------- /web/src/view/home/Subscribe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/home/Subscribe.vue -------------------------------------------------------------------------------- /web/src/view/time/CreateTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/time/CreateTime.vue -------------------------------------------------------------------------------- /web/src/view/time/EditTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/time/EditTime.vue -------------------------------------------------------------------------------- /web/src/view/time/RecommitTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/time/RecommitTime.vue -------------------------------------------------------------------------------- /web/src/view/time/Review.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/time/Review.vue -------------------------------------------------------------------------------- /web/src/view/time/SingleTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/time/SingleTime.vue -------------------------------------------------------------------------------- /web/src/view/time/component/TimeCalendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/time/component/TimeCalendar.vue -------------------------------------------------------------------------------- /web/src/view/user/AccountSecurity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/AccountSecurity.vue -------------------------------------------------------------------------------- /web/src/view/user/BindError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/BindError.vue -------------------------------------------------------------------------------- /web/src/view/user/MyCreation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/MyCreation.vue -------------------------------------------------------------------------------- /web/src/view/user/MyProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/MyProfile.vue -------------------------------------------------------------------------------- /web/src/view/user/MyProfileEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/MyProfileEdit.vue -------------------------------------------------------------------------------- /web/src/view/user/MyStar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/MyStar.vue -------------------------------------------------------------------------------- /web/src/view/user/OtherProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/OtherProfile.vue -------------------------------------------------------------------------------- /web/src/view/user/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/Register.vue -------------------------------------------------------------------------------- /web/src/view/user/component/PasswordSetDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/component/PasswordSetDialog.vue -------------------------------------------------------------------------------- /web/src/view/user/component/PhoneSetDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/user/component/PhoneSetDialog.vue -------------------------------------------------------------------------------- /web/src/view/word/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/Category.vue -------------------------------------------------------------------------------- /web/src/view/word/CategoryEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/CategoryEdit.vue -------------------------------------------------------------------------------- /web/src/view/word/Word.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/Word.vue -------------------------------------------------------------------------------- /web/src/view/word/WordEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/WordEdit.vue -------------------------------------------------------------------------------- /web/src/view/word/component/CategorySearchDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/component/CategorySearchDialog.vue -------------------------------------------------------------------------------- /web/src/view/word/component/ExternalLinkDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/component/ExternalLinkDialog.vue -------------------------------------------------------------------------------- /web/src/view/word/component/WordSearchDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/src/view/word/component/WordSearchDialog.vue -------------------------------------------------------------------------------- /web/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/terms.md -------------------------------------------------------------------------------- /web/test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/test/.eslintrc.js -------------------------------------------------------------------------------- /web/test/jsProtocolTest.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/test/jsProtocolTest.spec.js -------------------------------------------------------------------------------- /web/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/web/vue.config.js -------------------------------------------------------------------------------- /zapp-cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/pom.xml -------------------------------------------------------------------------------- /zapp-cache/src/main/java/com/zfoo/app/zapp/cache/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/src/main/java/com/zfoo/app/zapp/cache/Application.java -------------------------------------------------------------------------------- /zapp-cache/src/main/resources/FilterResource.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/src/main/resources/FilterResource.xlsx -------------------------------------------------------------------------------- /zapp-cache/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-cache/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-cache/src/test/java/com/zfoo/app/zapp/cache/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/src/test/java/com/zfoo/app/zapp/cache/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-cache/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-cache/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-chat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-chat/pom.xml -------------------------------------------------------------------------------- /zapp-chat/src/main/java/com/zfoo/app/zapp/chat/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-chat/src/main/java/com/zfoo/app/zapp/chat/Application.java -------------------------------------------------------------------------------- /zapp-chat/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-chat/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-chat/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-chat/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-chat/src/test/java/com/zfoo/app/zapp/chat/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-chat/src/test/java/com/zfoo/app/zapp/chat/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-chat/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-chat/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/pom.xml -------------------------------------------------------------------------------- /zapp-common/src/main/java/com/zfoo/app/zapp/common/model/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/java/com/zfoo/app/zapp/common/model/Element.java -------------------------------------------------------------------------------- /zapp-common/src/main/resources/deploy-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/deploy-dev.properties -------------------------------------------------------------------------------- /zapp-common/src/main/resources/deploy-pro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/deploy-pro.properties -------------------------------------------------------------------------------- /zapp-common/src/main/resources/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/locations.json -------------------------------------------------------------------------------- /zapp-common/src/main/resources/policies-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/policies-dev.json -------------------------------------------------------------------------------- /zapp-common/src/main/resources/policies-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/policies-pro.json -------------------------------------------------------------------------------- /zapp-common/src/main/resources/protocol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/protocol.xml -------------------------------------------------------------------------------- /zapp-common/src/main/resources/reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-common/src/main/resources/reports.json -------------------------------------------------------------------------------- /zapp-feed/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-feed/pom.xml -------------------------------------------------------------------------------- /zapp-feed/src/main/java/com/zfoo/app/zapp/feed/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-feed/src/main/java/com/zfoo/app/zapp/feed/Application.java -------------------------------------------------------------------------------- /zapp-feed/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-feed/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-feed/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-feed/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-feed/src/test/java/com/zfoo/app/zapp/feed/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-feed/src/test/java/com/zfoo/app/zapp/feed/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-feed/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-feed/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/ProtocolManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/ProtocolManager.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/buffer/ByteBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/buffer/ByteBuffer.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/buffer/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/buffer/long.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/buffer/longbits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/buffer/longbits.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/cache/GetUserCacheRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/cache/GetUserCacheRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/cache/GetUserCacheResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/cache/GetUserCacheResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/cache/SearchUserRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/cache/SearchUserRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/cache/SearchUserResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/cache/SearchUserResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/cache/model/UserCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/cache/model/UserCache.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/ChatMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/ChatMessage.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/Error.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/Heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/Heartbeat.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/Message.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/PairLS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/PairLS.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/PairLong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/PairLong.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/PairString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/PairString.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/Ping.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/Pong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/Pong.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/TripleLSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/TripleLSS.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/TripleLong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/TripleLong.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/TripleString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/TripleString.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/time/TimeKeyHeaderVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/time/TimeKeyHeaderVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/time/TimeKeyRowVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/time/TimeKeyRowVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/time/TimeKeyVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/time/TimeKeyVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/time/TimeLinkAlbumVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/time/TimeLinkAlbumVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/common/time/VideoLinkVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/common/time/VideoLinkVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/DeleteFriendMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/DeleteFriendMessageNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/EditFriendMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/EditFriendMessageNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/FriendMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/FriendMessageNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/NewApplyFriendNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/NewApplyFriendNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/NewFriendNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/NewFriendNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/DeleteFriendMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/DeleteFriendMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/EditFriendMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/EditFriendMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/FriendChatRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/FriendChatRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/FriendHistoryMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/FriendHistoryMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/FriendHistoryMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/FriendHistoryMessageResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/ReadFriendMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/ReadFriendMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/chat/ReadFriendMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/chat/ReadFriendMessageResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/model/ApplyFriendVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/model/ApplyFriendVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/model/FriendInfoVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/model/FriendInfoVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/AcceptFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/AcceptFriendRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/ApplyFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/ApplyFriendRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/BlacklistCancelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/BlacklistCancelRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/BlacklistCancelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/BlacklistCancelResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/BlacklistRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/BlacklistRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/BlacklistResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/BlacklistResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/DeleteFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/DeleteFriendRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/DeleteFriendResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/DeleteFriendResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/MarkFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/MarkFriendRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/MarkFriendResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/MarkFriendResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/RejectFriendRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/RejectFriendRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/friend/operation/RejectFriendResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/friend/operation/RejectFriendResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/DeleteGroupMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/DeleteGroupMessageNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/DeleteGroupNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/DeleteGroupNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/EditGroupMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/EditGroupMessageNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/GroupChatMessageNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/GroupChatMessageNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/GroupUpdateNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/GroupUpdateNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/KickMemberNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/KickMemberNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/MemberGroupAuthIdUpdateNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/MemberGroupAuthIdUpdateNotice.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/AddMemberToGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/AddMemberToGroupAuthRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/AddMemberToGroupAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/AddMemberToGroupAuthResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/ChangeGroupAdminRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/ChangeGroupAdminRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/ChangeGroupAdminResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/ChangeGroupAdminResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/CreateGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/CreateGroupAuthRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/DeleteGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/DeleteGroupAuthRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/DeleteGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/DeleteGroupRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/RemoveMemberFromGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/RemoveMemberFromGroupAuthRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/SaveChannelAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/SaveChannelAuthRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/SaveChannelAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/SaveChannelAuthResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/SaveGroupAuthRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/SaveGroupAuthRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/auth/SaveGroupAuthResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/auth/SaveGroupAuthResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/CreateChannelBoxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/CreateChannelBoxRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/CreateChannelBoxResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/CreateChannelBoxResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/CreateChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/CreateChannelRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/CreateChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/CreateChannelResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/DeleteChannelBoxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/DeleteChannelBoxRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/DeleteChannelBoxResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/DeleteChannelBoxResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/DeleteChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/DeleteChannelRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/DeleteChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/DeleteChannelResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/SaveChannelBoxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/SaveChannelBoxRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/SaveChannelBoxResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/SaveChannelBoxResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/SaveChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/SaveChannelRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/channel/SaveChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/channel/SaveChannelResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/DeleteGroupMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/DeleteGroupMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/DeleteGroupPinMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/DeleteGroupPinMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/DeleteGroupPinMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/DeleteGroupPinMessageResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/EditGroupMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/EditGroupMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/GroupChatRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/GroupChatRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/GroupHistoryMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/GroupHistoryMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/GroupHistoryMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/GroupHistoryMessageResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/GroupHistoryPinMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/GroupHistoryPinMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/GroupHistoryPinMessageResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/GroupHistoryPinMessageResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/chat/PinGroupMessageRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/chat/PinGroupMessageRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/AllInviteGroupCodeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/AllInviteGroupCodeRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/AllInviteGroupCodeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/AllInviteGroupCodeResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/CreateInviteGroupCodeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/CreateInviteGroupCodeRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/CreateInviteGroupCodeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/CreateInviteGroupCodeResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/DeleteInviteGroupCodeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/DeleteInviteGroupCodeRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/DeleteInviteGroupCodeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/DeleteInviteGroupCodeResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/GroupMemberInfoRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/GroupMemberInfoRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/GroupMemberInfoResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/GroupMemberInfoResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/GroupMemberListRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/GroupMemberListRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/GroupMemberListResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/GroupMemberListResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/JoinGroupByUserIdRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/JoinGroupByUserIdRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/JoinGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/JoinGroupRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/JoinGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/JoinGroupResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/KickMemberRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/KickMemberRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/KickMemberResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/KickMemberResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/LeaveGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/LeaveGroupRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/LeaveGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/LeaveGroupResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/model/GroupMemberVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/model/GroupMemberVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/member/model/InviteCodeVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/member/model/InviteCodeVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/ChannelAuthVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/ChannelAuthVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/ChannelBoxVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/ChannelBoxVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/ChannelTimeVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/ChannelTimeVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/ChannelVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/ChannelVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/GroupAuthVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/GroupAuthVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/GroupMemberSimpleVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/GroupMemberSimpleVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/GroupTimeVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/GroupTimeVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/model/GroupVO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/model/GroupVO.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/RefreshGroupNameRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/RefreshGroupNameRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/SaveGroupAvatarRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/SaveGroupAvatarRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/SaveGroupAvatarResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/SaveGroupAvatarResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/SaveGroupBackgroundRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/SaveGroupBackgroundRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/SaveGroupBackgroundResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/SaveGroupBackgroundResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/SaveGroupSettingRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/SaveGroupSettingRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/group/setting/SaveGroupSettingResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/group/setting/SaveGroupSettingResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/WebsocketSignInRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/WebsocketSignInRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/WebsocketSignInResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/WebsocketSignInResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/WebsocketSignOutRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/WebsocketSignOutRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/WebsocketSignOutResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/WebsocketSignOutResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/CreateGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/CreateGroupRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/CreateGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/CreateGroupResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/MuteChannelRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/MuteChannelRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/MuteChannelResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/MuteChannelResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/MuteGroupRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/MuteGroupRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/MuteGroupResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/MuteGroupResponse.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/RefreshChannelTimeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/RefreshChannelTimeRequest.js -------------------------------------------------------------------------------- /zapp-gateway/jsProtocol/user/group/RefreshChannelTimeResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/jsProtocol/user/group/RefreshChannelTimeResponse.js -------------------------------------------------------------------------------- /zapp-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/pom.xml -------------------------------------------------------------------------------- /zapp-gateway/src/main/java/com/zfoo/app/zapp/gateway/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/src/main/java/com/zfoo/app/zapp/gateway/Application.java -------------------------------------------------------------------------------- /zapp-gateway/src/main/resources/3698574__zfoo.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/src/main/resources/3698574__zfoo.com.pem -------------------------------------------------------------------------------- /zapp-gateway/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-gateway/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-gateway/src/main/resources/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/src/main/resources/server.key -------------------------------------------------------------------------------- /zapp-gateway/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-gateway/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-group/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-group/pom.xml -------------------------------------------------------------------------------- /zapp-group/src/main/java/com/zfoo/app/zapp/group/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-group/src/main/java/com/zfoo/app/zapp/group/Application.java -------------------------------------------------------------------------------- /zapp-group/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-group/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-group/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-group/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-group/src/test/java/com/zfoo/app/zapp/group/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-group/src/test/java/com/zfoo/app/zapp/group/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-group/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-group/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-push/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-push/pom.xml -------------------------------------------------------------------------------- /zapp-push/src/main/java/com/zfoo/app/zapp/push/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-push/src/main/java/com/zfoo/app/zapp/push/Application.java -------------------------------------------------------------------------------- /zapp-push/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-push/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-push/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-push/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-push/src/test/java/com/zfoo/app/zapp/push/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-push/src/test/java/com/zfoo/app/zapp/push/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-push/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-push/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-user/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-user/pom.xml -------------------------------------------------------------------------------- /zapp-user/src/main/java/com/zfoo/app/zapp/user/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-user/src/main/java/com/zfoo/app/zapp/user/Application.java -------------------------------------------------------------------------------- /zapp-user/src/main/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-user/src/main/resources/application.xml -------------------------------------------------------------------------------- /zapp-user/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-user/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-user/src/test/java/com/zfoo/app/zapp/user/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-user/src/test/java/com/zfoo/app/zapp/user/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-user/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-user/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zapp-web/.easy.api.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/.easy.api.config -------------------------------------------------------------------------------- /zapp-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/pom.xml -------------------------------------------------------------------------------- /zapp-web/src/main/java/com/zfoo/app/zapp/web/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/java/com/zfoo/app/zapp/web/Application.java -------------------------------------------------------------------------------- /zapp-web/src/main/java/com/zfoo/app/zapp/web/config/JacksonConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/java/com/zfoo/app/zapp/web/config/JacksonConfig.java -------------------------------------------------------------------------------- /zapp-web/src/main/java/com/zfoo/app/zapp/web/feed/model/ItemVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/java/com/zfoo/app/zapp/web/feed/model/ItemVO.java -------------------------------------------------------------------------------- /zapp-web/src/main/java/com/zfoo/app/zapp/web/feed/model/PersonVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/java/com/zfoo/app/zapp/web/feed/model/PersonVO.java -------------------------------------------------------------------------------- /zapp-web/src/main/java/com/zfoo/app/zapp/web/util/HttpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/java/com/zfoo/app/zapp/web/util/HttpUtils.java -------------------------------------------------------------------------------- /zapp-web/src/main/java/com/zfoo/app/zapp/web/util/SliceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/java/com/zfoo/app/zapp/web/util/SliceUtils.java -------------------------------------------------------------------------------- /zapp-web/src/main/resources/3698574__zfoo.com.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/3698574__zfoo.com.pfx -------------------------------------------------------------------------------- /zapp-web/src/main/resources/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/app.xml -------------------------------------------------------------------------------- /zapp-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/application.yml -------------------------------------------------------------------------------- /zapp-web/src/main/resources/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/library.properties -------------------------------------------------------------------------------- /zapp-web/src/main/resources/library/ambiguity.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/library/ambiguity.dic -------------------------------------------------------------------------------- /zapp-web/src/main/resources/library/default.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/library/default.dic -------------------------------------------------------------------------------- /zapp-web/src/main/resources/library/regex.dic: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zapp-web/src/main/resources/library/stop.dic: -------------------------------------------------------------------------------- 1 | ? 2 | : 3 | . 4 | , 5 | is 6 | a 7 | # 8 | v nature 9 | .*了 regex -------------------------------------------------------------------------------- /zapp-web/src/main/resources/library/synonyms.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/library/synonyms.dic -------------------------------------------------------------------------------- /zapp-web/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/main/resources/logback.xml -------------------------------------------------------------------------------- /zapp-web/src/main/resources/public/MP_verify_pvpKrM8ydb0ga79u.txt: -------------------------------------------------------------------------------- 1 | pvpKrM8ydb0ga79u -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/ApplicationTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/login/WeChatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/login/WeChatTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/login/WeiboTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/login/WeiboTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/oss/OssClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/oss/OssClientTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/oss/OssPolicyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/oss/OssPolicyTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/oss/SmsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/oss/SmsTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/java/com/zfoo/app/zapp/web/utils/SliceUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/java/com/zfoo/app/zapp/web/utils/SliceUtilsTest.java -------------------------------------------------------------------------------- /zapp-web/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/resources/application.yml -------------------------------------------------------------------------------- /zapp-web/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zapp-web/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/.gitignore -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/LICENSE -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/boot/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/boot/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/boot/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/deploy.sh -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/FAQ.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/elastic/elastic-search-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/elastic/elastic-search-command.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/elastic/elastic-search-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/elastic/elastic-search-setup.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/elastic/elastic-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/elastic/elastic-search.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/idea/idea-set-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/idea/idea-set-up.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device02.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device03.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device04.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device05.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device06.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/device07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/device07.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/event01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/event01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/event/event02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/event/event02.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/general-game-architect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/general-game-architect.jpg -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-plugin-eslint-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-plugin-eslint-setup.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-proxy-maven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-proxy-maven.jpg -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-proxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-proxy.jpg -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-setting-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-setting-css.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-setting-html-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-setting-html-0.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-setting-html-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-setting-html-1.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/idea-setting-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/idea-setting-json.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/lingoes-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/lingoes-00.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/lingoes-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/lingoes-01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/idea/lingoes-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/idea/lingoes-02.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/logo.jpg -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/monitor/monitor01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/monitor/monitor01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework02.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework03.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework04.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework05.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework06.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework07.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework08.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/framework09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/framework09.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/net/rpc01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/net/rpc01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-netty-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-netty-0.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-netty-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-netty-1.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-netty-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-netty-2.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-netty-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-netty-3.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-netty-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-netty-4.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-netty-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-netty-5.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-0.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-1.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-2.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/netty/aio-nodejs-3.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/protocol/complex_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/protocol/complex_object.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/protocol/normal_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/protocol/normal_object.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/protocol/simple_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/protocol/simple_object.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/scheduler/scheduler01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/scheduler/scheduler01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/storage/storage01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/storage/storage01.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/storage/storage02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/storage/storage02.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/zookeeper/isolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/zookeeper/isolation.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/zookeeper/load-balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/zookeeper/load-balance.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/zookeeper/transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/zookeeper/transaction.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/zookeeper/zookeeper-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/zookeeper/zookeeper-function.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/zookeeper/zookeeper-leader-election.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/zookeeper/zookeeper-leader-election.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/image/zookeeper/zookeeper-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/image/zookeeper/zookeeper-process.png -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/linux/linux-java-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/linux/linux-java-setup.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/mongodb/mogodb-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/mongodb/mogodb-setup.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/mongodb/mongo-replica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/mongodb/mongo-replica.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/mongodb/mongo-shard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/mongodb/mongo-shard.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/mongodb/mongodb-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/mongodb/mongodb-transaction.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/mongodb/mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/mongodb/mongodb.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/netty/netty-nio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/netty/netty-nio.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/netty/netty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/netty/netty.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/zookeeper/zookeeper-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/zookeeper/zookeeper-setup.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/zookeeper/zookeeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/zookeeper/zookeeper.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/doc/视频教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/doc/视频教程.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/src/main/resources/META-INF/spring.handlers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/src/main/resources/META-INF/spring.handlers -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/src/main/resources/META-INF/spring.schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/src/main/resources/META-INF/spring.schemas -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/src/main/resources/event-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/src/main/resources/event-1.0.xsd -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/src/test/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/src/test/resources/application.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/event/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/event/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/hotswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/hotswap/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/hotswap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/hotswap/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/hotswap/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/hotswap/src/main/resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/hotswap/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/hotswap/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/monitor/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/monitor/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/NetContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/NetContext.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/core/IClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/core/IClient.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/core/IServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/core/IServer.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/router/Router.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/router/Router.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/task/TaskBus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/java/com/zfoo/net/task/TaskBus.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/resources/META-INF/spring.handlers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/resources/META-INF/spring.handlers -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/resources/META-INF/spring.schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/resources/META-INF/spring.schemas -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/main/resources/net-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/main/resources/net-1.0.xsd -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/CM_Int.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/CM_Int.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/CM_Map.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/CM_Map.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/CM_Set.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/CM_Set.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/SM_Int.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/java/com/zfoo/net/packet/SM_Int.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/resources/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/resources/config.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/resources/deploy-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/resources/deploy-dev.properties -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/net/src/test/resources/protocol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/net/src/test/resources/protocol.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/OrmContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/OrmContext.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/lpmap/HeapMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/lpmap/HeapMap.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/lpmap/LpMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/lpmap/LpMap.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/model/anno/Id.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/java/com/zfoo/orm/model/anno/Id.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/resources/META-INF/spring.handlers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/resources/META-INF/spring.handlers -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/resources/META-INF/spring.schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/resources/META-INF/spring.schemas -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/main/resources/orm-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/main/resources/orm-1.0.xsd -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/test/java/com/zfoo/orm/cache/OrmTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/test/java/com/zfoo/orm/cache/OrmTest.java -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/test/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/test/resources/application.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/test/resources/deploy-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/test/resources/deploy-dev.properties -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/orm/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/orm/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/cs/IPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/cs/IPacket.cs -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/cs/ProtocolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/cs/ProtocolManager.cs -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/gd/ProtocolManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/gd/ProtocolManager.gd -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/go/ByteBuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/go/ByteBuffer.go -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/js/ProtocolManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/js/ProtocolManager.js -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/js/buffer/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/js/buffer/long.js -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/main/resources/js/buffer/longbits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/main/resources/js/buffer/longbits.js -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/protocol/src/test/resources/speed.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/protocol/src/test/resources/speed.proto -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/scheduler/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/scheduler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/scheduler/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/scheduler/src/main/resources/scheduler-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/scheduler/src/main/resources/scheduler-1.0.xsd -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/scheduler/src/test/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/scheduler/src/test/resources/application.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/scheduler/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/scheduler/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/storage/README.md -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/storage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/storage/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/storage/src/main/resources/storage-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/storage/src/main/resources/storage-1.0.xsd -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/storage/src/test/resources/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/storage/src/test/resources/application.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/storage/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/storage/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/pom.xml -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/actionj.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/actionj.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/epilog.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/epilog.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/fresnel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/fresnel.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/headache.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/headache.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/lexo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/lexo.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/prefix.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/prefix.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/progbot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/progbot.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/ransom.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/ransom.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/robot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/robot.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/main/resources/captcha/scandal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/main/resources/captcha/scandal.ttf -------------------------------------------------------------------------------- /zfoo-branch-for-zapp/util/src/test/java/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfoo-project/zapp/HEAD/zfoo-branch-for-zapp/util/src/test/java/MainTest.java --------------------------------------------------------------------------------