├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apps ├── imadm │ ├── Makefile │ ├── priv │ │ ├── static │ │ │ ├── css │ │ │ │ └── tabTable.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ │ ├── jsencrypt.js │ │ │ │ ├── md5.min.js │ │ │ │ └── tabPage.js │ │ │ └── layui │ │ │ │ ├── css │ │ │ │ └── layui.css │ │ │ │ ├── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ └── iconfont.woff2 │ │ │ │ └── layui.js │ │ └── template │ │ │ ├── adm_index_dtl.html │ │ │ ├── adm_welcome_dtl.html │ │ │ ├── app_ddl_index_dtl.html │ │ │ ├── app_version_index_dtl.html │ │ │ ├── feedback_index_dtl.html │ │ │ ├── layout │ │ │ ├── layout_footer.html │ │ │ ├── layout_header.html │ │ │ ├── layout_menu.html │ │ │ └── layout_nav.html │ │ │ ├── login_dtl.html │ │ │ └── user_index_dtl.html │ └── src │ │ ├── adm_app_ddl_handler.erl │ │ ├── adm_app_version_handler.erl │ │ ├── adm_app_version_logic.erl │ │ ├── adm_attach_handler.erl │ │ ├── adm_auth_middleware.erl │ │ ├── adm_feedback_handler.erl │ │ ├── adm_index_handler.erl │ │ ├── adm_passport_handler.erl │ │ ├── adm_passport_logic.erl │ │ ├── adm_user_logic.erl │ │ ├── adm_user_repo.erl │ │ ├── imadm.appup │ │ ├── imadm_app.erl │ │ └── imadm_sup.erl ├── imapi │ ├── Makefile │ └── src │ │ ├── app_ddl_handler.erl │ │ ├── app_version_handler.erl │ │ ├── auth_handler.erl │ │ ├── auth_logic.erl │ │ ├── auth_middleware.erl │ │ ├── conversation_handler.erl │ │ ├── feedback_handler.erl │ │ ├── friend_category_handler.erl │ │ ├── friend_category_logic.erl │ │ ├── friend_handler.erl │ │ ├── friend_logic.erl │ │ ├── fts_handler.erl │ │ ├── fts_logic.erl │ │ ├── group_handler.erl │ │ ├── group_logic.erl │ │ ├── group_member_handler.erl │ │ ├── group_member_logic.erl │ │ ├── group_member_transfer.erl │ │ ├── group_notice_handler.erl │ │ ├── group_notice_logic.erl │ │ ├── imapi.appup │ │ ├── index_handler.erl │ │ ├── live_room_stream_handler.erl │ │ ├── location_handler.erl │ │ ├── location_logic.erl │ │ ├── msg_c2c_logic.erl │ │ ├── msg_c2g_logic.erl │ │ ├── msg_s2c_logic.erl │ │ ├── passport_handler.erl │ │ ├── passport_logic.erl │ │ ├── stress_testing_ws_handler.erl │ │ ├── test_handler.erl │ │ ├── user_collect_handler.erl │ │ ├── user_collect_logic.erl │ │ ├── user_denylist_handler.erl │ │ ├── user_denylist_logic.erl │ │ ├── user_device_handler.erl │ │ ├── user_device_logic.erl │ │ ├── user_handler.erl │ │ ├── user_tag_handler.erl │ │ ├── user_tag_logic.erl │ │ ├── user_tag_relation_handler.erl │ │ ├── user_tag_relation_logic.erl │ │ ├── webrtc_ws_logic.erl │ │ ├── websocket_handler.erl │ │ ├── websocket_logic.erl │ │ └── whip_handler.erl ├── imcron │ ├── Makefile │ ├── README.md │ └── src │ │ ├── demo_cron_logic.erl │ │ └── imcron.appup ├── imds │ ├── Makefile │ └── src │ │ ├── account_ds.erl │ │ ├── app_ddl_ds.erl │ │ ├── app_version_ds.erl │ │ ├── auth_ds.erl │ │ ├── config_ds.erl │ │ ├── feedback_ds.erl │ │ ├── friend_category_ds.erl │ │ ├── friend_ds.erl │ │ ├── group_ds.erl │ │ ├── imds.appup │ │ ├── message_ds.erl │ │ ├── msg_c2c_ds.erl │ │ ├── msg_c2g_ds.erl │ │ ├── msg_c2s_ds.erl │ │ ├── msg_s2c_ds.erl │ │ ├── token_ds.erl │ │ ├── user_ds.erl │ │ ├── user_logic.erl │ │ ├── user_server.erl │ │ ├── user_setting_ds.erl │ │ ├── websocket_ds.erl │ │ └── whip_ds.erl ├── imlib │ ├── Makefile │ ├── include │ │ ├── cache.hrl │ │ ├── chat.hrl │ │ ├── common.hrl │ │ ├── def_column.hrl │ │ └── log.hrl │ └── src │ │ ├── epgsql_codec_rfc3339_bin.erl │ │ ├── imboy_appup.erl │ │ ├── imboy_cache.erl │ │ ├── imboy_cache_sync.erl │ │ ├── imboy_cipher.erl │ │ ├── imboy_cluster.erl │ │ ├── imboy_cnv.erl │ │ ├── imboy_db.erl │ │ ├── imboy_dt.erl │ │ ├── imboy_dtl.erl │ │ ├── imboy_func.erl │ │ ├── imboy_hasher.erl │ │ ├── imboy_hashids.erl │ │ ├── imboy_kv.erl │ │ ├── imboy_log.erl │ │ ├── imboy_migrate.erl │ │ ├── imboy_password.erl │ │ ├── imboy_req.erl │ │ ├── imboy_response.erl │ │ ├── imboy_sms.erl │ │ ├── imboy_str.erl │ │ ├── imboy_syn.erl │ │ ├── imboy_type.erl │ │ ├── imboy_uri.erl │ │ ├── imlib.appup │ │ └── qianfan_api.erl └── imrepo │ ├── Makefile │ └── src │ ├── app_ddl_repo.erl │ ├── app_version_repo.erl │ ├── attachment_repo.erl │ ├── feedback_reply_repo.erl │ ├── feedback_repo.erl │ ├── friend_category_repo.erl │ ├── friend_repo.erl │ ├── fts_user_repo.erl │ ├── geo_people_nearby_repo.erl │ ├── group_log_repo.erl │ ├── group_member_repo.erl │ ├── group_notice_repo.erl │ ├── group_random_code_repo.erl │ ├── group_repo.erl │ ├── imrepo.appup │ ├── msg_c2c_repo.erl │ ├── msg_c2g_repo.erl │ ├── msg_c2g_timeline_repo.erl │ ├── msg_c2s_repo.erl │ ├── msg_s2c_repo.erl │ ├── test_repo.erl │ ├── user_collect_repo.erl │ ├── user_denylist_repo.erl │ ├── user_device_repo.erl │ ├── user_log_repo.erl │ ├── user_repo.erl │ ├── user_setting_repo.erl │ ├── user_tag_relation_repo.erl │ ├── user_tag_repo.erl │ └── verification_code_repo.erl ├── config ├── cron.config ├── debug.config ├── sys.config └── vm.args ├── doc ├── 0_nomenclature_convention.md ├── CentOS优化.md ├── DDD.md ├── IM功能计划.md ├── api │ ├── init.md │ └── 消息类型.md ├── app_sqlite3 │ ├── README.md │ └── db_upto_6.sql ├── appup.md ├── art.md ├── backend │ └── im_admin_features_checklist.md ├── changelog.md ├── debug_tools_guide.md ├── deps_service.md ├── design_thinking.md ├── erlang_install.md ├── erlang优化.md ├── faq.md ├── gofastdfs_for_a.imboy.pub.cfg.json ├── imboy_cache.md ├── imboy_syn.md ├── kerl.md ├── message_ack.md ├── nginx_a.imboy.pub.conf ├── nginx_dev.imboy.pub.conf ├── pgsync.md ├── postgresql │ ├── README.md │ ├── backup_imboy_db.sh │ ├── imsch.sql │ ├── migrations │ │ ├── 00000000_config.sql │ │ ├── 00000001_app_version.sql │ │ ├── 00000002_app_ddl.sql │ │ ├── 00000003_feedback.sql │ │ ├── 00000004_feedback_reply.sql │ │ ├── 00000005_verification_code.sql │ │ ├── 00000006_user.sql │ │ ├── 00000007_fts_user.sql │ │ ├── 00000008_user_log.sql │ │ ├── 00000009_user_setting.sql │ │ ├── 00000010_user_device.sql │ │ ├── 00000011_user_collect.sql │ │ ├── 00000012_user_denylist.sql │ │ ├── 00000013_user_tag.sql │ │ ├── 00000014_user_tag_relation.sql │ │ ├── 00000015_user_friend_category.sql │ │ ├── 00000016_user_friend.sql │ │ ├── 00000017_attachment.sql │ │ ├── 00000018_group.sql │ │ ├── 00000019_group_member.sql │ │ ├── 00000020_group_log.sql │ │ ├── 00000021_group_random_code.sql │ │ ├── 00000022_group_notice.sql │ │ ├── 00000023_geo_people_nearby.sql │ │ ├── 00000024_user_group.sql │ │ ├── 00000025_conversation.sql │ │ ├── 00000026_msg_c2c.sql │ │ ├── 00000027_msg_c2g.sql │ │ ├── 00000028_msg_c2g_timeline.sql │ │ ├── 00000029_msg_c2s.sql │ │ ├── 00000030_msg_s2c.sql │ │ ├── 00000031_msg_topic.sql │ │ ├── 00000032_adm_user.sql │ │ ├── 00000033_adm_role.sql │ │ ├── 00000034_imboy_msg_c2g_fun.sql │ │ ├── 00000035_imboy_user_collect_fun.sql │ │ ├── 00000036_imboy_user_for_fts_fun.sql │ │ ├── 00000037_imboy_user_tag_relation_fun.sql │ │ ├── 00000038_imboy_for_fts_user.sql │ │ ├── 00000039_imboy_for_msg_c2g.sql │ │ ├── 00000040_imboy_for_user_collect.sql │ │ ├── 00000041_imboy_for_user_tag_relation.sql │ │ └── 00000042_imboy_v0.4.0.sql │ ├── set_max_id_seq.sql │ └── timescaledb.md ├── redbug.md ├── redeployment_process.md ├── security.md └── test.md ├── docker-compose.yml ├── docker ├── README.md ├── imboy_Dockerfile_dev ├── pg-initdb-imboy.sh ├── pg-initdb-postgis.sh ├── pg-update-imboy.sh ├── pg-update-postgis.sh ├── pg15_Dockerfile_dev ├── pg16_Dockerfile_dev ├── pg17_Dockerfile_dev └── pg_jieba_userdict.txt.big ├── elvis.config ├── erlang.mk ├── erlang_ls.config ├── include ├── cli.mk ├── deps.mk └── tpl.mk ├── index.html ├── priv ├── README.md └── static │ ├── architecture.png │ ├── favicon.ico │ ├── image │ ├── def_avatar.png │ └── group_default_avatar.jpeg │ ├── webrtc.html │ └── webrtc │ ├── css │ └── main.css │ └── js │ ├── adapter-latest.js │ └── main.js ├── rebar.config ├── relx.config ├── script ├── add_virtual_ips.sh ├── debug_helper.sh ├── erl_crashdump_analyzer.sh ├── gen_appup.sh ├── log_monitor.sh ├── start_node.sh └── stop_node.sh ├── src ├── imboy.appup ├── imboy_app.erl ├── imboy_router.erl └── imboy_sup.erl └── test ├── README.md ├── doc ├── test1.md ├── test1Client │ ├── CPU使用率.png │ ├── Inode使用率.png │ ├── TCP连接数(Count).png │ ├── 内存使用量.png │ ├── 磁盘使用率.png │ ├── 系统平均负载.png │ ├── 网络流入流出数据包数(pps).png │ ├── 网络流入流出速率(bps).png │ ├── 读写字节数(Bps).png │ └── 读写请求数(CountPerSecond).png └── test1Service │ ├── CPU使用率.png │ ├── Inode使用率.png │ ├── TCP连接数(Count).png │ ├── 内存使用量.png │ ├── 磁盘使用率.png │ ├── 系统平均负载.png │ ├── 网络流入流出数据包数(pps).png │ ├── 网络流入流出速率(bps).png │ ├── 读写字节数(Bps).png │ └── 读写请求数(CountPerSecond).png ├── maps_test.erl ├── wsc1.erl └── wsc2.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/README.md -------------------------------------------------------------------------------- /apps/imadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/Makefile -------------------------------------------------------------------------------- /apps/imadm/priv/static/css/tabTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/css/tabTable.css -------------------------------------------------------------------------------- /apps/imadm/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/favicon.ico -------------------------------------------------------------------------------- /apps/imadm/priv/static/js/jsencrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/js/jsencrypt.js -------------------------------------------------------------------------------- /apps/imadm/priv/static/js/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/js/md5.min.js -------------------------------------------------------------------------------- /apps/imadm/priv/static/js/tabPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/js/tabPage.js -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/css/layui.css -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/font/iconfont.svg -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /apps/imadm/priv/static/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/static/layui/layui.js -------------------------------------------------------------------------------- /apps/imadm/priv/template/adm_index_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/adm_index_dtl.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/adm_welcome_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/adm_welcome_dtl.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/app_ddl_index_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/app_ddl_index_dtl.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/app_version_index_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/app_version_index_dtl.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/feedback_index_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/feedback_index_dtl.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/layout/layout_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/layout/layout_footer.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/layout/layout_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/layout/layout_header.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/layout/layout_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/layout/layout_menu.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/layout/layout_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/layout/layout_nav.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/login_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/login_dtl.html -------------------------------------------------------------------------------- /apps/imadm/priv/template/user_index_dtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/priv/template/user_index_dtl.html -------------------------------------------------------------------------------- /apps/imadm/src/adm_app_ddl_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_app_ddl_handler.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_app_version_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_app_version_handler.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_app_version_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_app_version_logic.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_attach_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_attach_handler.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_auth_middleware.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_auth_middleware.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_feedback_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_feedback_handler.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_index_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_index_handler.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_passport_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_passport_handler.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_passport_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_passport_logic.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_user_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_user_logic.erl -------------------------------------------------------------------------------- /apps/imadm/src/adm_user_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/adm_user_repo.erl -------------------------------------------------------------------------------- /apps/imadm/src/imadm.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/imadm.appup -------------------------------------------------------------------------------- /apps/imadm/src/imadm_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/imadm_app.erl -------------------------------------------------------------------------------- /apps/imadm/src/imadm_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imadm/src/imadm_sup.erl -------------------------------------------------------------------------------- /apps/imapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/Makefile -------------------------------------------------------------------------------- /apps/imapi/src/app_ddl_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/app_ddl_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/app_version_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/app_version_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/auth_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/auth_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/auth_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/auth_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/auth_middleware.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/auth_middleware.erl -------------------------------------------------------------------------------- /apps/imapi/src/conversation_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/conversation_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/feedback_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/feedback_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/friend_category_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/friend_category_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/friend_category_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/friend_category_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/friend_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/friend_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/friend_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/friend_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/fts_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/fts_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/fts_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/fts_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_member_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_member_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_member_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_member_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_member_transfer.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_member_transfer.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_notice_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_notice_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/group_notice_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/group_notice_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/imapi.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/imapi.appup -------------------------------------------------------------------------------- /apps/imapi/src/index_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/index_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/live_room_stream_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/live_room_stream_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/location_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/location_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/location_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/location_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/msg_c2c_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/msg_c2c_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/msg_c2g_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/msg_c2g_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/msg_s2c_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/msg_s2c_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/passport_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/passport_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/passport_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/passport_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/stress_testing_ws_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/stress_testing_ws_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/test_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/test_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_collect_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_collect_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_collect_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_collect_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_denylist_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_denylist_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_denylist_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_denylist_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_device_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_device_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_device_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_device_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_tag_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_tag_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_tag_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_tag_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_tag_relation_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_tag_relation_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/user_tag_relation_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/user_tag_relation_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/webrtc_ws_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/webrtc_ws_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/websocket_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/websocket_handler.erl -------------------------------------------------------------------------------- /apps/imapi/src/websocket_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/websocket_logic.erl -------------------------------------------------------------------------------- /apps/imapi/src/whip_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imapi/src/whip_handler.erl -------------------------------------------------------------------------------- /apps/imcron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imcron/Makefile -------------------------------------------------------------------------------- /apps/imcron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imcron/README.md -------------------------------------------------------------------------------- /apps/imcron/src/demo_cron_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imcron/src/demo_cron_logic.erl -------------------------------------------------------------------------------- /apps/imcron/src/imcron.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imcron/src/imcron.appup -------------------------------------------------------------------------------- /apps/imds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/Makefile -------------------------------------------------------------------------------- /apps/imds/src/account_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/account_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/app_ddl_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/app_ddl_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/app_version_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/app_version_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/auth_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/auth_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/config_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/config_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/feedback_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/feedback_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/friend_category_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/friend_category_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/friend_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/friend_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/group_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/group_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/imds.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/imds.appup -------------------------------------------------------------------------------- /apps/imds/src/message_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/message_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/msg_c2c_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/msg_c2c_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/msg_c2g_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/msg_c2g_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/msg_c2s_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/msg_c2s_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/msg_s2c_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/msg_s2c_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/token_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/token_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/user_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/user_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/user_logic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/user_logic.erl -------------------------------------------------------------------------------- /apps/imds/src/user_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/user_server.erl -------------------------------------------------------------------------------- /apps/imds/src/user_setting_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/user_setting_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/websocket_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/websocket_ds.erl -------------------------------------------------------------------------------- /apps/imds/src/whip_ds.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imds/src/whip_ds.erl -------------------------------------------------------------------------------- /apps/imlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/Makefile -------------------------------------------------------------------------------- /apps/imlib/include/cache.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/include/cache.hrl -------------------------------------------------------------------------------- /apps/imlib/include/chat.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/include/chat.hrl -------------------------------------------------------------------------------- /apps/imlib/include/common.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/include/common.hrl -------------------------------------------------------------------------------- /apps/imlib/include/def_column.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/include/def_column.hrl -------------------------------------------------------------------------------- /apps/imlib/include/log.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/include/log.hrl -------------------------------------------------------------------------------- /apps/imlib/src/epgsql_codec_rfc3339_bin.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/epgsql_codec_rfc3339_bin.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_appup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_appup.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_cache.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_cache.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_cache_sync.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_cache_sync.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_cipher.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_cipher.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_cluster.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_cluster.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_cnv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_cnv.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_db.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_db.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_dt.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_dt.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_dtl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_dtl.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_func.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_func.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_hasher.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_hasher.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_hashids.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_hashids.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_kv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_kv.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_log.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_log.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_migrate.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_migrate.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_password.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_password.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_req.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_req.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_response.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_response.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_sms.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_sms.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_str.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_str.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_syn.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_syn.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_type.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_type.erl -------------------------------------------------------------------------------- /apps/imlib/src/imboy_uri.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imboy_uri.erl -------------------------------------------------------------------------------- /apps/imlib/src/imlib.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/imlib.appup -------------------------------------------------------------------------------- /apps/imlib/src/qianfan_api.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imlib/src/qianfan_api.erl -------------------------------------------------------------------------------- /apps/imrepo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/Makefile -------------------------------------------------------------------------------- /apps/imrepo/src/app_ddl_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/app_ddl_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/app_version_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/app_version_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/attachment_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/attachment_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/feedback_reply_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/feedback_reply_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/feedback_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/feedback_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/friend_category_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/friend_category_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/friend_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/friend_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/fts_user_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/fts_user_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/geo_people_nearby_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/geo_people_nearby_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/group_log_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/group_log_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/group_member_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/group_member_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/group_notice_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/group_notice_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/group_random_code_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/group_random_code_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/group_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/group_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/imrepo.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/imrepo.appup -------------------------------------------------------------------------------- /apps/imrepo/src/msg_c2c_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/msg_c2c_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/msg_c2g_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/msg_c2g_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/msg_c2g_timeline_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/msg_c2g_timeline_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/msg_c2s_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/msg_c2s_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/msg_s2c_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/msg_s2c_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/test_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/test_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_collect_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_collect_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_denylist_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_denylist_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_device_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_device_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_log_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_log_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_setting_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_setting_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_tag_relation_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_tag_relation_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/user_tag_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/user_tag_repo.erl -------------------------------------------------------------------------------- /apps/imrepo/src/verification_code_repo.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/apps/imrepo/src/verification_code_repo.erl -------------------------------------------------------------------------------- /config/cron.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/config/cron.config -------------------------------------------------------------------------------- /config/debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/config/debug.config -------------------------------------------------------------------------------- /config/sys.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/config/sys.config -------------------------------------------------------------------------------- /config/vm.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/config/vm.args -------------------------------------------------------------------------------- /doc/0_nomenclature_convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/0_nomenclature_convention.md -------------------------------------------------------------------------------- /doc/CentOS优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/CentOS优化.md -------------------------------------------------------------------------------- /doc/DDD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/DDD.md -------------------------------------------------------------------------------- /doc/IM功能计划.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/IM功能计划.md -------------------------------------------------------------------------------- /doc/api/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/api/init.md -------------------------------------------------------------------------------- /doc/api/消息类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/api/消息类型.md -------------------------------------------------------------------------------- /doc/app_sqlite3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/app_sqlite3/README.md -------------------------------------------------------------------------------- /doc/app_sqlite3/db_upto_6.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/appup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/appup.md -------------------------------------------------------------------------------- /doc/art.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/art.md -------------------------------------------------------------------------------- /doc/backend/im_admin_features_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/backend/im_admin_features_checklist.md -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/debug_tools_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/debug_tools_guide.md -------------------------------------------------------------------------------- /doc/deps_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/deps_service.md -------------------------------------------------------------------------------- /doc/design_thinking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/design_thinking.md -------------------------------------------------------------------------------- /doc/erlang_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/erlang_install.md -------------------------------------------------------------------------------- /doc/erlang优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/erlang优化.md -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/faq.md -------------------------------------------------------------------------------- /doc/gofastdfs_for_a.imboy.pub.cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/gofastdfs_for_a.imboy.pub.cfg.json -------------------------------------------------------------------------------- /doc/imboy_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/imboy_cache.md -------------------------------------------------------------------------------- /doc/imboy_syn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/imboy_syn.md -------------------------------------------------------------------------------- /doc/kerl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/kerl.md -------------------------------------------------------------------------------- /doc/message_ack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/message_ack.md -------------------------------------------------------------------------------- /doc/nginx_a.imboy.pub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/nginx_a.imboy.pub.conf -------------------------------------------------------------------------------- /doc/nginx_dev.imboy.pub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/nginx_dev.imboy.pub.conf -------------------------------------------------------------------------------- /doc/pgsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/pgsync.md -------------------------------------------------------------------------------- /doc/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/README.md -------------------------------------------------------------------------------- /doc/postgresql/backup_imboy_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/backup_imboy_db.sh -------------------------------------------------------------------------------- /doc/postgresql/imsch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/imsch.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000000_config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000000_config.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000001_app_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000001_app_version.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000002_app_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000002_app_ddl.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000003_feedback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000003_feedback.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000004_feedback_reply.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000004_feedback_reply.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000005_verification_code.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000005_verification_code.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000006_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000006_user.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000007_fts_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000007_fts_user.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000008_user_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000008_user_log.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000009_user_setting.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000009_user_setting.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000010_user_device.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000010_user_device.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000011_user_collect.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000011_user_collect.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000012_user_denylist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000012_user_denylist.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000013_user_tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000013_user_tag.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000014_user_tag_relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000014_user_tag_relation.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000015_user_friend_category.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000015_user_friend_category.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000016_user_friend.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000016_user_friend.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000017_attachment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000017_attachment.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000018_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000018_group.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000019_group_member.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000019_group_member.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000020_group_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000020_group_log.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000021_group_random_code.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000021_group_random_code.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000022_group_notice.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000022_group_notice.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000023_geo_people_nearby.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000023_geo_people_nearby.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000024_user_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000024_user_group.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000025_conversation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000025_conversation.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000026_msg_c2c.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000026_msg_c2c.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000027_msg_c2g.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000027_msg_c2g.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000028_msg_c2g_timeline.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000028_msg_c2g_timeline.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000029_msg_c2s.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000029_msg_c2s.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000030_msg_s2c.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000030_msg_s2c.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000031_msg_topic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000031_msg_topic.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000032_adm_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000032_adm_user.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000033_adm_role.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000033_adm_role.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000034_imboy_msg_c2g_fun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000034_imboy_msg_c2g_fun.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000035_imboy_user_collect_fun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000035_imboy_user_collect_fun.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000036_imboy_user_for_fts_fun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000036_imboy_user_for_fts_fun.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000037_imboy_user_tag_relation_fun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000037_imboy_user_tag_relation_fun.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000038_imboy_for_fts_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000038_imboy_for_fts_user.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000039_imboy_for_msg_c2g.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000039_imboy_for_msg_c2g.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000040_imboy_for_user_collect.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000040_imboy_for_user_collect.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000041_imboy_for_user_tag_relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000041_imboy_for_user_tag_relation.sql -------------------------------------------------------------------------------- /doc/postgresql/migrations/00000042_imboy_v0.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/migrations/00000042_imboy_v0.4.0.sql -------------------------------------------------------------------------------- /doc/postgresql/set_max_id_seq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/set_max_id_seq.sql -------------------------------------------------------------------------------- /doc/postgresql/timescaledb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/postgresql/timescaledb.md -------------------------------------------------------------------------------- /doc/redbug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/redbug.md -------------------------------------------------------------------------------- /doc/redeployment_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/redeployment_process.md -------------------------------------------------------------------------------- /doc/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/security.md -------------------------------------------------------------------------------- /doc/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/doc/test.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/imboy_Dockerfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/imboy_Dockerfile_dev -------------------------------------------------------------------------------- /docker/pg-initdb-imboy.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/pg-initdb-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg-initdb-postgis.sh -------------------------------------------------------------------------------- /docker/pg-update-imboy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg-update-imboy.sh -------------------------------------------------------------------------------- /docker/pg-update-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg-update-postgis.sh -------------------------------------------------------------------------------- /docker/pg15_Dockerfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg15_Dockerfile_dev -------------------------------------------------------------------------------- /docker/pg16_Dockerfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg16_Dockerfile_dev -------------------------------------------------------------------------------- /docker/pg17_Dockerfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg17_Dockerfile_dev -------------------------------------------------------------------------------- /docker/pg_jieba_userdict.txt.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/docker/pg_jieba_userdict.txt.big -------------------------------------------------------------------------------- /elvis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/elvis.config -------------------------------------------------------------------------------- /erlang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/erlang.mk -------------------------------------------------------------------------------- /erlang_ls.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/erlang_ls.config -------------------------------------------------------------------------------- /include/cli.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/include/cli.mk -------------------------------------------------------------------------------- /include/deps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/include/deps.mk -------------------------------------------------------------------------------- /include/tpl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/include/tpl.mk -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | {"success":false,"code":10016,"msg":"访问资源不存在","data":null} -------------------------------------------------------------------------------- /priv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/README.md -------------------------------------------------------------------------------- /priv/static/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/architecture.png -------------------------------------------------------------------------------- /priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/favicon.ico -------------------------------------------------------------------------------- /priv/static/image/def_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/image/def_avatar.png -------------------------------------------------------------------------------- /priv/static/image/group_default_avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/image/group_default_avatar.jpeg -------------------------------------------------------------------------------- /priv/static/webrtc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/webrtc.html -------------------------------------------------------------------------------- /priv/static/webrtc/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/webrtc/css/main.css -------------------------------------------------------------------------------- /priv/static/webrtc/js/adapter-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/webrtc/js/adapter-latest.js -------------------------------------------------------------------------------- /priv/static/webrtc/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/priv/static/webrtc/js/main.js -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/rebar.config -------------------------------------------------------------------------------- /relx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/relx.config -------------------------------------------------------------------------------- /script/add_virtual_ips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/add_virtual_ips.sh -------------------------------------------------------------------------------- /script/debug_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/debug_helper.sh -------------------------------------------------------------------------------- /script/erl_crashdump_analyzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/erl_crashdump_analyzer.sh -------------------------------------------------------------------------------- /script/gen_appup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/gen_appup.sh -------------------------------------------------------------------------------- /script/log_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/log_monitor.sh -------------------------------------------------------------------------------- /script/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/start_node.sh -------------------------------------------------------------------------------- /script/stop_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/script/stop_node.sh -------------------------------------------------------------------------------- /src/imboy.appup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/src/imboy.appup -------------------------------------------------------------------------------- /src/imboy_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/src/imboy_app.erl -------------------------------------------------------------------------------- /src/imboy_router.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/src/imboy_router.erl -------------------------------------------------------------------------------- /src/imboy_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/src/imboy_sup.erl -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/README.md -------------------------------------------------------------------------------- /test/doc/test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1.md -------------------------------------------------------------------------------- /test/doc/test1Client/CPU使用率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/CPU使用率.png -------------------------------------------------------------------------------- /test/doc/test1Client/Inode使用率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/Inode使用率.png -------------------------------------------------------------------------------- /test/doc/test1Client/TCP连接数(Count).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/TCP连接数(Count).png -------------------------------------------------------------------------------- /test/doc/test1Client/内存使用量.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/内存使用量.png -------------------------------------------------------------------------------- /test/doc/test1Client/磁盘使用率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/磁盘使用率.png -------------------------------------------------------------------------------- /test/doc/test1Client/系统平均负载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/系统平均负载.png -------------------------------------------------------------------------------- /test/doc/test1Client/网络流入流出数据包数(pps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/网络流入流出数据包数(pps).png -------------------------------------------------------------------------------- /test/doc/test1Client/网络流入流出速率(bps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/网络流入流出速率(bps).png -------------------------------------------------------------------------------- /test/doc/test1Client/读写字节数(Bps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/读写字节数(Bps).png -------------------------------------------------------------------------------- /test/doc/test1Client/读写请求数(CountPerSecond).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Client/读写请求数(CountPerSecond).png -------------------------------------------------------------------------------- /test/doc/test1Service/CPU使用率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/CPU使用率.png -------------------------------------------------------------------------------- /test/doc/test1Service/Inode使用率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/Inode使用率.png -------------------------------------------------------------------------------- /test/doc/test1Service/TCP连接数(Count).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/TCP连接数(Count).png -------------------------------------------------------------------------------- /test/doc/test1Service/内存使用量.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/内存使用量.png -------------------------------------------------------------------------------- /test/doc/test1Service/磁盘使用率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/磁盘使用率.png -------------------------------------------------------------------------------- /test/doc/test1Service/系统平均负载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/系统平均负载.png -------------------------------------------------------------------------------- /test/doc/test1Service/网络流入流出数据包数(pps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/网络流入流出数据包数(pps).png -------------------------------------------------------------------------------- /test/doc/test1Service/网络流入流出速率(bps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/网络流入流出速率(bps).png -------------------------------------------------------------------------------- /test/doc/test1Service/读写字节数(Bps).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/读写字节数(Bps).png -------------------------------------------------------------------------------- /test/doc/test1Service/读写请求数(CountPerSecond).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/doc/test1Service/读写请求数(CountPerSecond).png -------------------------------------------------------------------------------- /test/maps_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/maps_test.erl -------------------------------------------------------------------------------- /test/wsc1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/wsc1.erl -------------------------------------------------------------------------------- /test/wsc2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imboy-pub/imboy/HEAD/test/wsc2.erl --------------------------------------------------------------------------------