|
@@ -0,0 +1,500 @@
|
|
|
+package com.wdkl.core.socket;
|
|
|
+
|
|
|
+import android.annotation.SuppressLint;
|
|
|
+import android.util.Log;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.wdkl.core.util.StringUtil;
|
|
|
+
|
|
|
+import org.java_websocket.client.WebSocketClient;
|
|
|
+import org.java_websocket.handshake.ServerHandshake;
|
|
|
+
|
|
|
+import java.net.URI;
|
|
|
+import java.security.cert.CertificateException;
|
|
|
+import java.security.cert.X509Certificate;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+import javax.net.ssl.X509TrustManager;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Created by dds on 2019/7/26.
|
|
|
+ * android_shuai@163.com
|
|
|
+ */
|
|
|
+public class MyWebSocket extends WebSocketClient {
|
|
|
+ private final static String TAG = "dds_WebSocket";
|
|
|
+ private final IEvent iEvent;
|
|
|
+ private boolean connectFlag = false;
|
|
|
+
|
|
|
+
|
|
|
+ public MyWebSocket(URI serverUri, IEvent event) {
|
|
|
+ super(serverUri);
|
|
|
+ this.iEvent = event;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onClose(int code, String reason, boolean remote) {
|
|
|
+ Log.e("dds_error", "onClose:" + reason + "remote:" + remote);
|
|
|
+ if (connectFlag) {
|
|
|
+ try {
|
|
|
+ Thread.sleep(3000);
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ this.iEvent.reConnect();
|
|
|
+ } else {
|
|
|
+ this.iEvent.logout("onClose");
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onError(Exception ex) {
|
|
|
+ Log.e("dds_error", "onError:" + ex.toString());
|
|
|
+ this.iEvent.logout("onError");
|
|
|
+ connectFlag = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onOpen(ServerHandshake handshakedata) {
|
|
|
+ Log.e("dds_info", "onOpen");
|
|
|
+ this.iEvent.onOpen();
|
|
|
+ connectFlag = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onMessage(String message) {
|
|
|
+ Log.d(TAG, message);
|
|
|
+ handleMessage(message);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void setConnectFlag(boolean flag) {
|
|
|
+ connectFlag = flag;
|
|
|
+ }
|
|
|
+
|
|
|
+ // ---------------------------------------处理接收消息-------------------------------------
|
|
|
+
|
|
|
+ private void handleMessage(String message) {
|
|
|
+ Map map = JSON.parseObject(message, Map.class);
|
|
|
+ String eventName = (String) map.get("eventName");
|
|
|
+ if (eventName == null) return;
|
|
|
+ // 登录成功
|
|
|
+ if (eventName.equals("__login_success")) {
|
|
|
+ handleLogin(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 被邀请
|
|
|
+ if (eventName.equals("__invite")) {
|
|
|
+ handleInvite(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 取消拨出
|
|
|
+ if (eventName.equals("__cancel")) {
|
|
|
+ handleCancel(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 响铃
|
|
|
+ if (eventName.equals("__ring")) {
|
|
|
+ handleRing(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 进入房间
|
|
|
+ if (eventName.equals("__peers")) {
|
|
|
+ handlePeers(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 新人入房间
|
|
|
+ if (eventName.equals("__new_peer")) {
|
|
|
+ handleNewPeer(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 拒绝接听
|
|
|
+ if (eventName.equals("__reject")) {
|
|
|
+ handleReject(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // offer
|
|
|
+ if (eventName.equals("__offer")) {
|
|
|
+ handleOffer(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // answer
|
|
|
+ if (eventName.equals("__answer")) {
|
|
|
+ handleAnswer(map);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // ice-candidate
|
|
|
+ if (eventName.equals("__ice_candidate")) {
|
|
|
+ handleIceCandidate(map);
|
|
|
+ }
|
|
|
+ // 离开房间
|
|
|
+ if (eventName.equals("__leave")) {
|
|
|
+ handleLeave(map);
|
|
|
+ }
|
|
|
+ // 切换到语音
|
|
|
+ if (eventName.equals("__audio")) {
|
|
|
+ handleTransAudio(map);
|
|
|
+ }
|
|
|
+ // 意外断开
|
|
|
+ if (eventName.equals("__disconnect")) {
|
|
|
+ handleDisConnect(map);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleDisConnect(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String fromId = (String) data.get("fromID");
|
|
|
+ this.iEvent.onDisConnect(fromId);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleTransAudio(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String fromId = (String) data.get("fromID");
|
|
|
+ this.iEvent.onTransAudio(fromId);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleLogin(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String userID = (String) data.get("userID");
|
|
|
+ String avatar = (String) data.get("avatar");
|
|
|
+ this.iEvent.loginSuccess(userID, avatar);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleIceCandidate(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String userID = (String) data.get("fromID");
|
|
|
+ String id = (String) data.get("id");
|
|
|
+ int label = (int) data.get("label");
|
|
|
+ String candidate = (String) data.get("candidate");
|
|
|
+ this.iEvent.onIceCandidate(userID, id, label, candidate);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleAnswer(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String sdp = (String) data.get("sdp");
|
|
|
+ String userID = (String) data.get("fromID");
|
|
|
+ this.iEvent.onAnswer(userID, sdp);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleOffer(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String sdp = (String) data.get("sdp");
|
|
|
+ String userID = (String) data.get("fromID");
|
|
|
+ this.iEvent.onOffer(userID, sdp);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleReject(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String fromID = (String) data.get("fromID");
|
|
|
+ int rejectType = Integer.parseInt(String.valueOf(data.get("refuseType")));
|
|
|
+ this.iEvent.onReject(fromID, rejectType);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handlePeers(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String you = (String) data.get("you");
|
|
|
+ String connections = (String) data.get("connections");
|
|
|
+ int roomSize = (int) data.get("roomSize");
|
|
|
+ this.iEvent.onPeers(you, connections, roomSize);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleNewPeer(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String userID = (String) data.get("userID");
|
|
|
+ this.iEvent.onNewPeer(userID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleRing(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String fromId = (String) data.get("fromID");
|
|
|
+ this.iEvent.onRing(fromId);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleCancel(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String inviteID = (String) data.get("inviteID");
|
|
|
+ String userList = (String) data.get("userList");
|
|
|
+ this.iEvent.onCancel(inviteID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleInvite(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String room = (String) data.get("room");
|
|
|
+ boolean audioOnly = (boolean) data.get("audioOnly");
|
|
|
+ String inviteID = (String) data.get("inviteID");
|
|
|
+ String userList = (String) data.get("userList");
|
|
|
+ this.iEvent.onInvite(room, audioOnly, inviteID, userList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void handleLeave(Map map) {
|
|
|
+ Map data = (Map) map.get("data");
|
|
|
+ if (data != null) {
|
|
|
+ String fromID = (String) data.get("fromID");
|
|
|
+ this.iEvent.onLeave(fromID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ------------------------------发送消息----------------------------------------
|
|
|
+ */
|
|
|
+ public void createRoom(String room, int roomSize, String myId) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__create");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("room", room);
|
|
|
+ childMap.put("roomSize", roomSize);
|
|
|
+ childMap.put("userID", myId);
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 发送邀请
|
|
|
+ public void sendInvite(String room, String myId, List<String> users, boolean audioOnly) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__invite");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("room", room);
|
|
|
+ childMap.put("audioOnly", audioOnly);
|
|
|
+ childMap.put("inviteID", myId);
|
|
|
+
|
|
|
+ String join = StringUtil.listToString(users);
|
|
|
+ childMap.put("userList", join);
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 取消邀请
|
|
|
+ public void sendCancel(String mRoomId, String useId, List<String> users) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__cancel");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("inviteID", useId);
|
|
|
+ childMap.put("room", mRoomId);
|
|
|
+
|
|
|
+ String join = StringUtil.listToString(users);
|
|
|
+ childMap.put("userList", join);
|
|
|
+
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 发送响铃通知
|
|
|
+ public void sendRing(String myId, String toId, String room) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__ring");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("toID", toId);
|
|
|
+ childMap.put("room", room);
|
|
|
+
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ //加入房间
|
|
|
+ public void sendJoin(String room, String myId) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__join");
|
|
|
+
|
|
|
+ Map<String, String> childMap = new HashMap<>();
|
|
|
+ childMap.put("room", room);
|
|
|
+ childMap.put("userID", myId);
|
|
|
+
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 拒接接听
|
|
|
+ public void sendRefuse(String room, String inviteID, String myId, int refuseType) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__reject");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("room", room);
|
|
|
+ childMap.put("toID", inviteID);
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("refuseType", String.valueOf(refuseType));
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 离开房间
|
|
|
+ public void sendLeave(String myId, String room, String userId) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__leave");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("room", room);
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("userID", userId);
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ if (isOpen()) {
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // send offer
|
|
|
+ public void sendOffer(String myId, String userId, String sdp) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("sdp", sdp);
|
|
|
+ childMap.put("userID", userId);
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ map.put("data", childMap);
|
|
|
+ map.put("eventName", "__offer");
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // send answer
|
|
|
+ public void sendAnswer(String myId, String userId, String sdp) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("sdp", sdp);
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("userID", userId);
|
|
|
+ map.put("data", childMap);
|
|
|
+ map.put("eventName", "__answer");
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // send ice-candidate
|
|
|
+ public void sendIceCandidate(String myId, String userId, String id, int label, String candidate) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("eventName", "__ice_candidate");
|
|
|
+
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("userID", userId);
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("id", id);
|
|
|
+ childMap.put("label", label);
|
|
|
+ childMap.put("candidate", candidate);
|
|
|
+
|
|
|
+ map.put("data", childMap);
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ if (isOpen()) {
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 切换到语音
|
|
|
+ public void sendTransAudio(String myId, String userId) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("userID", userId);
|
|
|
+ map.put("data", childMap);
|
|
|
+ map.put("eventName", "__audio");
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 断开重连
|
|
|
+ public void sendDisconnect(String room, String myId, String userId) {
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ Map<String, Object> childMap = new HashMap<>();
|
|
|
+ childMap.put("fromID", myId);
|
|
|
+ childMap.put("userID", userId);
|
|
|
+ childMap.put("room", room);
|
|
|
+ map.put("data", childMap);
|
|
|
+ map.put("eventName", "__disconnect");
|
|
|
+ JSONObject object = new JSONObject(map);
|
|
|
+ final String jsonString = object.toString();
|
|
|
+ Log.d(TAG, "send-->" + jsonString);
|
|
|
+ send(jsonString);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 忽略证书
|
|
|
+ public static class TrustManagerTest implements X509TrustManager {
|
|
|
+
|
|
|
+ @SuppressLint("TrustAllX509TrustManager")
|
|
|
+ @Override
|
|
|
+ public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @SuppressLint("TrustAllX509TrustManager")
|
|
|
+ @Override
|
|
|
+ public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public X509Certificate[] getAcceptedIssuers() {
|
|
|
+ return new X509Certificate[0];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|