├── LICENSE ├── README.md ├── client ├── classes │ └── upload.class.php ├── index.html ├── static │ ├── css │ │ ├── shake.css │ │ └── style.css │ ├── fonts │ │ └── iconfont.woff │ ├── images │ │ ├── avatar │ │ │ └── f1 │ │ │ │ ├── f_1.jpg │ │ │ │ ├── f_10.jpg │ │ │ │ ├── f_11.jpg │ │ │ │ ├── f_12.jpg │ │ │ │ ├── f_2.jpg │ │ │ │ ├── f_3.jpg │ │ │ │ ├── f_4.jpg │ │ │ │ ├── f_5.jpg │ │ │ │ ├── f_6.jpg │ │ │ │ ├── f_7.jpg │ │ │ │ ├── f_8.jpg │ │ │ │ └── f_9.jpg │ │ ├── clear.png │ │ ├── face │ │ │ ├── 0_微笑.gif │ │ │ ├── 10_尴尬.gif │ │ │ ├── 11_发怒.gif │ │ │ ├── 12_调皮.gif │ │ │ ├── 13_龇牙.gif │ │ │ ├── 14_惊讶.gif │ │ │ ├── 15_难过.gif │ │ │ ├── 16_酷.gif │ │ │ ├── 17_冷汗.gif │ │ │ ├── 18_抓狂.gif │ │ │ ├── 19_吐.gif │ │ │ ├── 1_撇嘴.gif │ │ │ ├── 20_偷笑.gif │ │ │ ├── 21_可爱.gif │ │ │ ├── 22_白眼.gif │ │ │ ├── 23_傲慢.gif │ │ │ ├── 24_饥饿.gif │ │ │ ├── 25_困.gif │ │ │ ├── 26_惊恐.gif │ │ │ ├── 27_流汗.gif │ │ │ ├── 28_憨笑.gif │ │ │ ├── 29_大兵.gif │ │ │ ├── 2_色.gif │ │ │ ├── 30_奋斗.gif │ │ │ ├── 31_咒骂.gif │ │ │ ├── 32_疑问.gif │ │ │ ├── 33_嘘.gif │ │ │ ├── 34_晕.gif │ │ │ ├── 35_折磨.gif │ │ │ ├── 36_衰.gif │ │ │ ├── 37_骷髅.gif │ │ │ ├── 38_敲打.gif │ │ │ ├── 39_再见.gif │ │ │ ├── 3_发呆.gif │ │ │ ├── 40_擦汗.gif │ │ │ ├── 41_抠鼻.gif │ │ │ ├── 42_鼓掌.gif │ │ │ ├── 43_糗大了.gif │ │ │ ├── 44_坏笑.gif │ │ │ ├── 45_左哼哼.gif │ │ │ ├── 46_右哼哼.gif │ │ │ ├── 47_哈欠.gif │ │ │ ├── 48_鄙视.gif │ │ │ ├── 49_委屈.gif │ │ │ ├── 4_得意.gif │ │ │ ├── 50_快哭了.gif │ │ │ ├── 51_阴险.gif │ │ │ ├── 52_亲亲.gif │ │ │ ├── 53_吓.gif │ │ │ ├── 54_可怜.gif │ │ │ ├── 55_菜刀.gif │ │ │ ├── 56_西瓜.gif │ │ │ ├── 57_啤酒.gif │ │ │ ├── 58_篮球.gif │ │ │ ├── 59_乒乓.gif │ │ │ ├── 5_流泪.gif │ │ │ ├── 6_害羞.gif │ │ │ ├── 78_拥抱.gif │ │ │ ├── 7_闭嘴.gif │ │ │ ├── 81_握手.gif │ │ │ ├── 8_睡.gif │ │ │ ├── 9_大哭.gif │ │ │ ├── 听音乐.gif │ │ │ └── 得意地笑.gif │ │ ├── forkme_right_orange_ff7600.png │ │ ├── header_logo.png │ │ ├── main-bg.png │ │ └── noimg.png │ ├── js │ │ ├── chat.script.js │ │ ├── create.div.js │ │ ├── face.js │ │ ├── functions.js │ │ ├── init.js │ │ ├── jquery.min.js │ │ └── xlyjs.js │ └── voices │ │ ├── notify.mp3 │ │ ├── notify.ogg │ │ └── notify.wav ├── upload_bak.php └── upload_callback_func.php ├── rooms ├── a │ └── 1 ├── b │ └── 2 ├── c │ └── 3 ├── d │ └── 4 ├── e │ └── 4 └── f │ └── 5 └── server ├── classes ├── Chat.class.php ├── file │ ├── ChatBase.class.php │ ├── ChatLine.class.php │ ├── ChatUser.class.php │ └── File.class.php └── hsw.class.php ├── config.inc.php ├── emotion.config.php ├── functions.php └── hsw_server.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/README.md -------------------------------------------------------------------------------- /client/classes/upload.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/classes/upload.class.php -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/index.html -------------------------------------------------------------------------------- /client/static/css/shake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/css/shake.css -------------------------------------------------------------------------------- /client/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/css/style.css -------------------------------------------------------------------------------- /client/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_1.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_10.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_11.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_12.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_2.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_3.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_4.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_5.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_6.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_7.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_8.jpg -------------------------------------------------------------------------------- /client/static/images/avatar/f1/f_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/avatar/f1/f_9.jpg -------------------------------------------------------------------------------- /client/static/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/clear.png -------------------------------------------------------------------------------- /client/static/images/face/0_微笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/0_微笑.gif -------------------------------------------------------------------------------- /client/static/images/face/10_尴尬.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/10_尴尬.gif -------------------------------------------------------------------------------- /client/static/images/face/11_发怒.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/11_发怒.gif -------------------------------------------------------------------------------- /client/static/images/face/12_调皮.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/12_调皮.gif -------------------------------------------------------------------------------- /client/static/images/face/13_龇牙.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/13_龇牙.gif -------------------------------------------------------------------------------- /client/static/images/face/14_惊讶.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/14_惊讶.gif -------------------------------------------------------------------------------- /client/static/images/face/15_难过.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/15_难过.gif -------------------------------------------------------------------------------- /client/static/images/face/16_酷.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/16_酷.gif -------------------------------------------------------------------------------- /client/static/images/face/17_冷汗.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/17_冷汗.gif -------------------------------------------------------------------------------- /client/static/images/face/18_抓狂.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/18_抓狂.gif -------------------------------------------------------------------------------- /client/static/images/face/19_吐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/19_吐.gif -------------------------------------------------------------------------------- /client/static/images/face/1_撇嘴.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/1_撇嘴.gif -------------------------------------------------------------------------------- /client/static/images/face/20_偷笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/20_偷笑.gif -------------------------------------------------------------------------------- /client/static/images/face/21_可爱.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/21_可爱.gif -------------------------------------------------------------------------------- /client/static/images/face/22_白眼.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/22_白眼.gif -------------------------------------------------------------------------------- /client/static/images/face/23_傲慢.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/23_傲慢.gif -------------------------------------------------------------------------------- /client/static/images/face/24_饥饿.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/24_饥饿.gif -------------------------------------------------------------------------------- /client/static/images/face/25_困.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/25_困.gif -------------------------------------------------------------------------------- /client/static/images/face/26_惊恐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/26_惊恐.gif -------------------------------------------------------------------------------- /client/static/images/face/27_流汗.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/27_流汗.gif -------------------------------------------------------------------------------- /client/static/images/face/28_憨笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/28_憨笑.gif -------------------------------------------------------------------------------- /client/static/images/face/29_大兵.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/29_大兵.gif -------------------------------------------------------------------------------- /client/static/images/face/2_色.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/2_色.gif -------------------------------------------------------------------------------- /client/static/images/face/30_奋斗.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/30_奋斗.gif -------------------------------------------------------------------------------- /client/static/images/face/31_咒骂.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/31_咒骂.gif -------------------------------------------------------------------------------- /client/static/images/face/32_疑问.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/32_疑问.gif -------------------------------------------------------------------------------- /client/static/images/face/33_嘘.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/33_嘘.gif -------------------------------------------------------------------------------- /client/static/images/face/34_晕.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/34_晕.gif -------------------------------------------------------------------------------- /client/static/images/face/35_折磨.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/35_折磨.gif -------------------------------------------------------------------------------- /client/static/images/face/36_衰.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/36_衰.gif -------------------------------------------------------------------------------- /client/static/images/face/37_骷髅.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/37_骷髅.gif -------------------------------------------------------------------------------- /client/static/images/face/38_敲打.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/38_敲打.gif -------------------------------------------------------------------------------- /client/static/images/face/39_再见.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/39_再见.gif -------------------------------------------------------------------------------- /client/static/images/face/3_发呆.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/3_发呆.gif -------------------------------------------------------------------------------- /client/static/images/face/40_擦汗.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/40_擦汗.gif -------------------------------------------------------------------------------- /client/static/images/face/41_抠鼻.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/41_抠鼻.gif -------------------------------------------------------------------------------- /client/static/images/face/42_鼓掌.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/42_鼓掌.gif -------------------------------------------------------------------------------- /client/static/images/face/43_糗大了.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/43_糗大了.gif -------------------------------------------------------------------------------- /client/static/images/face/44_坏笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/44_坏笑.gif -------------------------------------------------------------------------------- /client/static/images/face/45_左哼哼.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/45_左哼哼.gif -------------------------------------------------------------------------------- /client/static/images/face/46_右哼哼.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/46_右哼哼.gif -------------------------------------------------------------------------------- /client/static/images/face/47_哈欠.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/47_哈欠.gif -------------------------------------------------------------------------------- /client/static/images/face/48_鄙视.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/48_鄙视.gif -------------------------------------------------------------------------------- /client/static/images/face/49_委屈.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/49_委屈.gif -------------------------------------------------------------------------------- /client/static/images/face/4_得意.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/4_得意.gif -------------------------------------------------------------------------------- /client/static/images/face/50_快哭了.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/50_快哭了.gif -------------------------------------------------------------------------------- /client/static/images/face/51_阴险.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/51_阴险.gif -------------------------------------------------------------------------------- /client/static/images/face/52_亲亲.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/52_亲亲.gif -------------------------------------------------------------------------------- /client/static/images/face/53_吓.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/53_吓.gif -------------------------------------------------------------------------------- /client/static/images/face/54_可怜.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/54_可怜.gif -------------------------------------------------------------------------------- /client/static/images/face/55_菜刀.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/55_菜刀.gif -------------------------------------------------------------------------------- /client/static/images/face/56_西瓜.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/56_西瓜.gif -------------------------------------------------------------------------------- /client/static/images/face/57_啤酒.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/57_啤酒.gif -------------------------------------------------------------------------------- /client/static/images/face/58_篮球.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/58_篮球.gif -------------------------------------------------------------------------------- /client/static/images/face/59_乒乓.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/59_乒乓.gif -------------------------------------------------------------------------------- /client/static/images/face/5_流泪.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/5_流泪.gif -------------------------------------------------------------------------------- /client/static/images/face/6_害羞.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/6_害羞.gif -------------------------------------------------------------------------------- /client/static/images/face/78_拥抱.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/78_拥抱.gif -------------------------------------------------------------------------------- /client/static/images/face/7_闭嘴.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/7_闭嘴.gif -------------------------------------------------------------------------------- /client/static/images/face/81_握手.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/81_握手.gif -------------------------------------------------------------------------------- /client/static/images/face/8_睡.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/8_睡.gif -------------------------------------------------------------------------------- /client/static/images/face/9_大哭.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/9_大哭.gif -------------------------------------------------------------------------------- /client/static/images/face/听音乐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/听音乐.gif -------------------------------------------------------------------------------- /client/static/images/face/得意地笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/face/得意地笑.gif -------------------------------------------------------------------------------- /client/static/images/forkme_right_orange_ff7600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/forkme_right_orange_ff7600.png -------------------------------------------------------------------------------- /client/static/images/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/header_logo.png -------------------------------------------------------------------------------- /client/static/images/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/main-bg.png -------------------------------------------------------------------------------- /client/static/images/noimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/images/noimg.png -------------------------------------------------------------------------------- /client/static/js/chat.script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/chat.script.js -------------------------------------------------------------------------------- /client/static/js/create.div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/create.div.js -------------------------------------------------------------------------------- /client/static/js/face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/face.js -------------------------------------------------------------------------------- /client/static/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/functions.js -------------------------------------------------------------------------------- /client/static/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/init.js -------------------------------------------------------------------------------- /client/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/jquery.min.js -------------------------------------------------------------------------------- /client/static/js/xlyjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/js/xlyjs.js -------------------------------------------------------------------------------- /client/static/voices/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/voices/notify.mp3 -------------------------------------------------------------------------------- /client/static/voices/notify.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/voices/notify.ogg -------------------------------------------------------------------------------- /client/static/voices/notify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/static/voices/notify.wav -------------------------------------------------------------------------------- /client/upload_bak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/upload_bak.php -------------------------------------------------------------------------------- /client/upload_callback_func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/client/upload_callback_func.php -------------------------------------------------------------------------------- /rooms/a/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/rooms/a/1 -------------------------------------------------------------------------------- /rooms/b/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/rooms/b/2 -------------------------------------------------------------------------------- /rooms/c/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/rooms/c/3 -------------------------------------------------------------------------------- /rooms/d/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/rooms/d/4 -------------------------------------------------------------------------------- /rooms/e/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/rooms/e/4 -------------------------------------------------------------------------------- /rooms/f/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/rooms/f/5 -------------------------------------------------------------------------------- /server/classes/Chat.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/classes/Chat.class.php -------------------------------------------------------------------------------- /server/classes/file/ChatBase.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/classes/file/ChatBase.class.php -------------------------------------------------------------------------------- /server/classes/file/ChatLine.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/classes/file/ChatLine.class.php -------------------------------------------------------------------------------- /server/classes/file/ChatUser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/classes/file/ChatUser.class.php -------------------------------------------------------------------------------- /server/classes/file/File.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/classes/file/File.class.php -------------------------------------------------------------------------------- /server/classes/hsw.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/classes/hsw.class.php -------------------------------------------------------------------------------- /server/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/config.inc.php -------------------------------------------------------------------------------- /server/emotion.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/emotion.config.php -------------------------------------------------------------------------------- /server/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/functions.php -------------------------------------------------------------------------------- /server/hsw_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellosee/swoole-webim-demo/HEAD/server/hsw_server.php --------------------------------------------------------------------------------