CallController.java 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773
  1. /*
  2. * Nextcloud Talk application
  3. *
  4. * @author Mario Danic
  5. * Copyright (C) 2017-2018 Mario Danic <mario@lovelyhq.com>
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.nextcloud.talk.controllers;
  21. import android.Manifest;
  22. import android.animation.Animator;
  23. import android.animation.AnimatorListenerAdapter;
  24. import android.annotation.SuppressLint;
  25. import android.content.res.Configuration;
  26. import android.graphics.Color;
  27. import android.os.Build;
  28. import android.os.Bundle;
  29. import android.os.Handler;
  30. import android.support.annotation.NonNull;
  31. import android.support.annotation.Nullable;
  32. import android.support.v7.app.AppCompatActivity;
  33. import android.text.TextUtils;
  34. import android.util.Log;
  35. import android.view.LayoutInflater;
  36. import android.view.MotionEvent;
  37. import android.view.View;
  38. import android.view.ViewGroup;
  39. import android.widget.ImageView;
  40. import android.widget.LinearLayout;
  41. import android.widget.RelativeLayout;
  42. import android.widget.TextView;
  43. import com.bluelinelabs.logansquare.LoganSquare;
  44. import com.bumptech.glide.load.engine.DiskCacheStrategy;
  45. import com.bumptech.glide.load.resource.bitmap.CircleCrop;
  46. import com.bumptech.glide.request.RequestOptions;
  47. import com.nextcloud.talk.R;
  48. import com.nextcloud.talk.api.NcApi;
  49. import com.nextcloud.talk.application.NextcloudTalkApplication;
  50. import com.nextcloud.talk.controllers.base.BaseController;
  51. import com.nextcloud.talk.events.ConfigurationChangeEvent;
  52. import com.nextcloud.talk.events.MediaStreamEvent;
  53. import com.nextcloud.talk.events.PeerConnectionEvent;
  54. import com.nextcloud.talk.events.SessionDescriptionSendEvent;
  55. import com.nextcloud.talk.models.database.UserEntity;
  56. import com.nextcloud.talk.models.json.call.CallOverall;
  57. import com.nextcloud.talk.models.json.capabilities.CapabilitiesOverall;
  58. import com.nextcloud.talk.models.json.generic.GenericOverall;
  59. import com.nextcloud.talk.models.json.participants.Participant;
  60. import com.nextcloud.talk.models.json.participants.ParticipantsOverall;
  61. import com.nextcloud.talk.models.json.rooms.Conversation;
  62. import com.nextcloud.talk.models.json.rooms.RoomsOverall;
  63. import com.nextcloud.talk.models.json.signaling.DataChannelMessage;
  64. import com.nextcloud.talk.models.json.signaling.NCIceCandidate;
  65. import com.nextcloud.talk.models.json.signaling.NCMessagePayload;
  66. import com.nextcloud.talk.models.json.signaling.NCMessageWrapper;
  67. import com.nextcloud.talk.models.json.signaling.NCSignalingMessage;
  68. import com.nextcloud.talk.models.json.signaling.Signaling;
  69. import com.nextcloud.talk.models.json.signaling.SignalingOverall;
  70. import com.nextcloud.talk.models.json.signaling.settings.IceServer;
  71. import com.nextcloud.talk.models.json.signaling.settings.SignalingSettingsOverall;
  72. import com.nextcloud.talk.utils.ApiUtils;
  73. import com.nextcloud.talk.utils.MagicFlipView;
  74. import com.nextcloud.talk.utils.NotificationUtils;
  75. import com.nextcloud.talk.utils.animations.PulseAnimation;
  76. import com.nextcloud.talk.utils.bundle.BundleKeys;
  77. import com.nextcloud.talk.utils.database.user.UserUtils;
  78. import com.nextcloud.talk.utils.glide.GlideApp;
  79. import com.nextcloud.talk.utils.preferences.AppPreferences;
  80. import com.nextcloud.talk.utils.singletons.ApplicationWideCurrentRoomHolder;
  81. import com.nextcloud.talk.webrtc.MagicAudioManager;
  82. import com.nextcloud.talk.webrtc.MagicPeerConnectionWrapper;
  83. import com.nextcloud.talk.webrtc.MagicWebRTCUtils;
  84. import com.wooplr.spotlight.SpotlightView;
  85. import org.apache.commons.lang3.StringEscapeUtils;
  86. import org.greenrobot.eventbus.EventBus;
  87. import org.greenrobot.eventbus.Subscribe;
  88. import org.greenrobot.eventbus.ThreadMode;
  89. import org.parceler.Parcels;
  90. import org.webrtc.AudioSource;
  91. import org.webrtc.AudioTrack;
  92. import org.webrtc.Camera1Enumerator;
  93. import org.webrtc.Camera2Enumerator;
  94. import org.webrtc.CameraEnumerator;
  95. import org.webrtc.CameraVideoCapturer;
  96. import org.webrtc.EglBase;
  97. import org.webrtc.IceCandidate;
  98. import org.webrtc.Logging;
  99. import org.webrtc.MediaConstraints;
  100. import org.webrtc.MediaStream;
  101. import org.webrtc.PeerConnection;
  102. import org.webrtc.PeerConnectionFactory;
  103. import org.webrtc.RendererCommon;
  104. import org.webrtc.SessionDescription;
  105. import org.webrtc.SurfaceViewRenderer;
  106. import org.webrtc.VideoCapturer;
  107. import org.webrtc.VideoSource;
  108. import org.webrtc.VideoTrack;
  109. import java.io.IOException;
  110. import java.util.ArrayList;
  111. import java.util.HashMap;
  112. import java.util.HashSet;
  113. import java.util.List;
  114. import java.util.Map;
  115. import java.util.Set;
  116. import java.util.concurrent.TimeUnit;
  117. import javax.inject.Inject;
  118. import autodagger.AutoInjector;
  119. import butterknife.BindView;
  120. import butterknife.OnClick;
  121. import butterknife.OnLongClick;
  122. import eu.davidea.flipview.FlipView;
  123. import io.reactivex.Observer;
  124. import io.reactivex.android.schedulers.AndroidSchedulers;
  125. import io.reactivex.disposables.Disposable;
  126. import io.reactivex.schedulers.Schedulers;
  127. import me.zhanghai.android.effortlesspermissions.AfterPermissionDenied;
  128. import me.zhanghai.android.effortlesspermissions.EffortlessPermissions;
  129. import me.zhanghai.android.effortlesspermissions.OpenAppDetailsDialogFragment;
  130. import okhttp3.Cache;
  131. import pub.devrel.easypermissions.AfterPermissionGranted;
  132. @AutoInjector(NextcloudTalkApplication.class)
  133. public class CallController extends BaseController {
  134. private static final String TAG = "CallController";
  135. private static final String[] PERMISSIONS_CALL = {
  136. android.Manifest.permission.CAMERA,
  137. android.Manifest.permission.RECORD_AUDIO,
  138. };
  139. private static final String[] PERMISSIONS_CAMERA = {
  140. Manifest.permission.CAMERA
  141. };
  142. private static final String[] PERMISSIONS_MICROPHONE = {
  143. Manifest.permission.RECORD_AUDIO
  144. };
  145. @BindView(R.id.callControlEnableSpeaker)
  146. MagicFlipView callControlEnableSpeaker;
  147. @BindView(R.id.pip_video_view)
  148. SurfaceViewRenderer pipVideoView;
  149. @BindView(R.id.relative_layout)
  150. RelativeLayout relativeLayout;
  151. @BindView(R.id.remote_renderers_layout)
  152. LinearLayout remoteRenderersLayout;
  153. @BindView(R.id.callControlsLinearLayoutView)
  154. LinearLayout callControls;
  155. @BindView(R.id.call_control_microphone)
  156. FlipView microphoneControlButton;
  157. @BindView(R.id.call_control_camera)
  158. FlipView cameraControlButton;
  159. @BindView(R.id.call_control_switch_camera)
  160. FlipView cameraSwitchButton;
  161. @BindView(R.id.connectingTextView)
  162. TextView connectingTextView;
  163. @BindView(R.id.connectingRelativeLayoutView)
  164. RelativeLayout connectingView;
  165. @BindView(R.id.conversationRelativeLayoutView)
  166. RelativeLayout conversationView;
  167. @Inject
  168. NcApi ncApi;
  169. @Inject
  170. EventBus eventBus;
  171. @Inject
  172. UserUtils userUtils;
  173. @Inject
  174. AppPreferences appPreferences;
  175. @Inject
  176. Cache cache;
  177. private PeerConnectionFactory peerConnectionFactory;
  178. private MediaConstraints audioConstraints;
  179. private MediaConstraints videoConstraints;
  180. private MediaConstraints sdpConstraints;
  181. private MagicAudioManager audioManager;
  182. private VideoSource videoSource;
  183. private VideoTrack localVideoTrack;
  184. private AudioSource audioSource;
  185. private AudioTrack localAudioTrack;
  186. private VideoCapturer videoCapturer;
  187. private EglBase rootEglBase;
  188. private boolean leavingCall = false;
  189. private boolean inCall = false;
  190. private Disposable signalingDisposable;
  191. private Disposable pingDisposable;
  192. private List<PeerConnection.IceServer> iceServers;
  193. private CameraEnumerator cameraEnumerator;
  194. private String roomToken;
  195. private UserEntity conversationUser;
  196. private String callSession;
  197. private MediaStream localMediaStream;
  198. private String credentials;
  199. private List<MagicPeerConnectionWrapper> magicPeerConnectionWrapperList = new ArrayList<>();
  200. private Map<String, Participant> participantMap = new HashMap<>();
  201. private boolean videoOn = false;
  202. private boolean audioOn = false;
  203. private boolean isMultiSession = false;
  204. private boolean needsPing = true;
  205. private boolean isVoiceOnlyCall;
  206. private boolean isFromNotification;
  207. private Handler callControlHandler = new Handler();
  208. private Handler cameraSwitchHandler = new Handler();
  209. private boolean isPTTActive = false;
  210. private PulseAnimation pulseAnimation;
  211. private View.OnClickListener videoOnClickListener;
  212. private String baseUrl;
  213. private String roomId;
  214. private SpotlightView spotlightView;
  215. public CallController(Bundle args) {
  216. super(args);
  217. NextcloudTalkApplication.getSharedApplication().getComponentApplication().inject(this);
  218. roomId = args.getString(BundleKeys.KEY_ROOM_ID, "");
  219. roomToken = args.getString(BundleKeys.KEY_ROOM_TOKEN, "");
  220. conversationUser = Parcels.unwrap(args.getParcelable(BundleKeys.KEY_USER_ENTITY));
  221. if (conversationUser == null) {
  222. conversationUser = userUtils.getCurrentUser();
  223. }
  224. callSession = args.getString(BundleKeys.KEY_CALL_SESSION, "0");
  225. credentials = ApiUtils.getCredentials(conversationUser.getUsername(), conversationUser.getToken());
  226. isVoiceOnlyCall = args.getBoolean(BundleKeys.KEY_CALL_VOICE_ONLY, false);
  227. if (conversationUser.getUserId().equals("?")) {
  228. credentials = null;
  229. }
  230. baseUrl = args.getString(BundleKeys.KEY_MODIFIED_BASE_URL, "");
  231. if (TextUtils.isEmpty(baseUrl)) {
  232. baseUrl = conversationUser.getBaseUrl();
  233. }
  234. isFromNotification = TextUtils.isEmpty(roomToken);
  235. }
  236. @Override
  237. protected View inflateView(@NonNull LayoutInflater inflater, @NonNull ViewGroup container) {
  238. return inflater.inflate(R.layout.controller_call, container, false);
  239. }
  240. private void createCameraEnumerator() {
  241. if (getActivity() != null) {
  242. boolean camera2EnumeratorIsSupported = false;
  243. try {
  244. camera2EnumeratorIsSupported = Camera2Enumerator.isSupported(getActivity());
  245. } catch (final Throwable throwable) {
  246. Log.w(TAG, "Camera2Enumator threw an error");
  247. }
  248. if (camera2EnumeratorIsSupported) {
  249. cameraEnumerator = new Camera2Enumerator(getActivity());
  250. } else {
  251. cameraEnumerator = new Camera1Enumerator(MagicWebRTCUtils.shouldEnableVideoHardwareAcceleration());
  252. }
  253. }
  254. }
  255. @Override
  256. protected void onViewBound(@NonNull View view) {
  257. super.onViewBound(view);
  258. microphoneControlButton.setOnTouchListener(new MicrophoneButtonTouchListener());
  259. videoOnClickListener = new VideoClickListener();
  260. pulseAnimation = PulseAnimation.create().with(microphoneControlButton.getFrontImageView())
  261. .setDuration(310)
  262. .setRepeatCount(PulseAnimation.INFINITE)
  263. .setRepeatMode(PulseAnimation.REVERSE);
  264. try {
  265. cache.evictAll();
  266. } catch (IOException e) {
  267. Log.e(TAG, "Failed to evict cache");
  268. }
  269. if (isVoiceOnlyCall) {
  270. callControlEnableSpeaker.setVisibility(View.VISIBLE);
  271. }
  272. callControls.setZ(100.0f);
  273. basicInitialization();
  274. if (isFromNotification) {
  275. handleFromNotification();
  276. } else {
  277. initViews();
  278. checkPermissions();
  279. }
  280. }
  281. private void basicInitialization() {
  282. rootEglBase = EglBase.create();
  283. createCameraEnumerator();
  284. //Create a new PeerConnectionFactory instance.
  285. PeerConnectionFactory.Options options = new PeerConnectionFactory.Options();
  286. peerConnectionFactory = PeerConnectionFactory.builder().createPeerConnectionFactory();
  287. peerConnectionFactory.setVideoHwAccelerationOptions(rootEglBase.getEglBaseContext(),
  288. rootEglBase.getEglBaseContext());
  289. //Create MediaConstraints - Will be useful for specifying video and audio constraints.
  290. audioConstraints = new MediaConstraints();
  291. videoConstraints = new MediaConstraints();
  292. localMediaStream = peerConnectionFactory.createLocalMediaStream("NCMS");
  293. // Create and audio manager that will take care of audio routing,
  294. // audio modes, audio device enumeration etc.
  295. audioManager = MagicAudioManager.create(getApplicationContext(), !isVoiceOnlyCall);
  296. // Store existing audio settings and change audio mode to
  297. // MODE_IN_COMMUNICATION for best possible VoIP performance.
  298. Log.d(TAG, "Starting the audio manager...");
  299. audioManager.start(this::onAudioManagerDevicesChanged);
  300. iceServers = new ArrayList<>();
  301. //create sdpConstraints
  302. sdpConstraints = new MediaConstraints();
  303. sdpConstraints.mandatory.add(new MediaConstraints.KeyValuePair("OfferToReceiveAudio", "true"));
  304. String offerToReceiveVideoString = "true";
  305. if (isVoiceOnlyCall) {
  306. offerToReceiveVideoString = "false";
  307. }
  308. sdpConstraints.mandatory.add(new MediaConstraints.KeyValuePair("OfferToReceiveVideo",
  309. offerToReceiveVideoString));
  310. sdpConstraints.optional.add(new MediaConstraints.KeyValuePair("internalSctpDataChannels", "true"));
  311. sdpConstraints.optional.add(new MediaConstraints.KeyValuePair("DtlsSrtpKeyAgreement", "true"));
  312. if (!isVoiceOnlyCall) {
  313. cameraInitialization();
  314. }
  315. microphoneInitialization();
  316. }
  317. private void handleFromNotification() {
  318. ncApi.getRooms(credentials, ApiUtils.getUrlForGetRooms(baseUrl))
  319. .retry(3)
  320. .subscribeOn(Schedulers.newThread())
  321. .observeOn(AndroidSchedulers.mainThread())
  322. .subscribe(new Observer<RoomsOverall>() {
  323. @Override
  324. public void onSubscribe(Disposable d) {
  325. }
  326. @Override
  327. public void onNext(RoomsOverall roomsOverall) {
  328. for (Conversation conversation : roomsOverall.getOcs().getData()) {
  329. if (roomId.equals(conversation.getRoomId())) {
  330. roomToken = conversation.getToken();
  331. break;
  332. }
  333. }
  334. initViews();
  335. checkPermissions();
  336. }
  337. @Override
  338. public void onError(Throwable e) {
  339. }
  340. @Override
  341. public void onComplete() {
  342. }
  343. });
  344. }
  345. private void initViews() {
  346. if (isVoiceOnlyCall) {
  347. cameraSwitchButton.setVisibility(View.GONE);
  348. cameraControlButton.setVisibility(View.GONE);
  349. pipVideoView.setVisibility(View.GONE);
  350. } else {
  351. if (cameraEnumerator.getDeviceNames().length < 2) {
  352. cameraSwitchButton.setVisibility(View.GONE);
  353. }
  354. // setting this to true because it's not shown by default
  355. pipVideoView.setMirror(false);
  356. pipVideoView.init(rootEglBase.getEglBaseContext(), null);
  357. pipVideoView.setZOrderMediaOverlay(true);
  358. // disabled because it causes some devices to crash
  359. pipVideoView.setEnableHardwareScaler(false);
  360. pipVideoView.setScalingType(RendererCommon.ScalingType.SCALE_ASPECT_FIT);
  361. }
  362. }
  363. private void checkPermissions() {
  364. if (isVoiceOnlyCall) {
  365. onMicrophoneClick();
  366. } else if (getActivity() != null) {
  367. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
  368. requestPermissions(PERMISSIONS_CALL, 100);
  369. } else {
  370. onRequestPermissionsResult(100, PERMISSIONS_CALL, new int[]{1, 1});
  371. }
  372. }
  373. }
  374. @AfterPermissionGranted(100)
  375. private void onPermissionsGranted() {
  376. if (EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_CALL)) {
  377. if (!videoOn && !isVoiceOnlyCall) {
  378. onCameraClick();
  379. }
  380. if (!audioOn) {
  381. onMicrophoneClick();
  382. }
  383. if (!isVoiceOnlyCall) {
  384. if (cameraEnumerator.getDeviceNames().length == 0) {
  385. cameraControlButton.setVisibility(View.GONE);
  386. }
  387. if (cameraEnumerator.getDeviceNames().length > 1) {
  388. cameraSwitchButton.setVisibility(View.VISIBLE);
  389. }
  390. }
  391. if (!inCall) {
  392. startCall();
  393. }
  394. } else if (getActivity() != null && EffortlessPermissions.somePermissionPermanentlyDenied(getActivity(),
  395. PERMISSIONS_CALL)) {
  396. checkIfSomeAreApproved();
  397. }
  398. }
  399. private void checkIfSomeAreApproved() {
  400. if (!isVoiceOnlyCall) {
  401. if (cameraEnumerator.getDeviceNames().length == 0) {
  402. cameraControlButton.setVisibility(View.GONE);
  403. }
  404. if (cameraEnumerator.getDeviceNames().length > 1) {
  405. cameraSwitchButton.setVisibility(View.VISIBLE);
  406. }
  407. if (getActivity() != null && EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_CAMERA)) {
  408. if (!videoOn) {
  409. onCameraClick();
  410. }
  411. } else {
  412. cameraControlButton.getFrontImageView().setImageResource(R.drawable.ic_videocam_off_white_24px);
  413. cameraControlButton.setAlpha(0.7f);
  414. cameraSwitchButton.setVisibility(View.GONE);
  415. }
  416. }
  417. if (EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_MICROPHONE)) {
  418. if (!audioOn) {
  419. onMicrophoneClick();
  420. }
  421. } else {
  422. microphoneControlButton.getFrontImageView().setImageResource(R.drawable.ic_mic_off_white_24px);
  423. }
  424. if (!inCall) {
  425. startCall();
  426. }
  427. }
  428. @AfterPermissionDenied(100)
  429. private void onPermissionsDenied() {
  430. if (!isVoiceOnlyCall) {
  431. if (cameraEnumerator.getDeviceNames().length == 0) {
  432. cameraControlButton.setVisibility(View.GONE);
  433. } else if (cameraEnumerator.getDeviceNames().length == 1) {
  434. cameraSwitchButton.setVisibility(View.GONE);
  435. }
  436. }
  437. if (getActivity() != null && (EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_CAMERA) ||
  438. EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_MICROPHONE))) {
  439. checkIfSomeAreApproved();
  440. } else if (!inCall) {
  441. startCall();
  442. }
  443. }
  444. private void onAudioManagerDevicesChanged(
  445. final MagicAudioManager.AudioDevice device, final Set<MagicAudioManager.AudioDevice> availableDevices) {
  446. Log.d(TAG, "onAudioManagerDevicesChanged: " + availableDevices + ", "
  447. + "selected: " + device);
  448. }
  449. private void cameraInitialization() {
  450. videoCapturer = createCameraCapturer(cameraEnumerator);
  451. //Create a VideoSource instance
  452. if (videoCapturer != null) {
  453. videoSource = peerConnectionFactory.createVideoSource(videoCapturer);
  454. localVideoTrack = peerConnectionFactory.createVideoTrack("NCv0", videoSource);
  455. localMediaStream.addTrack(localVideoTrack);
  456. localVideoTrack.setEnabled(false);
  457. localVideoTrack.addSink(pipVideoView);
  458. }
  459. }
  460. private void microphoneInitialization() {
  461. //create an AudioSource instance
  462. audioSource = peerConnectionFactory.createAudioSource(audioConstraints);
  463. localAudioTrack = peerConnectionFactory.createAudioTrack("NCa0", audioSource);
  464. localAudioTrack.setEnabled(false);
  465. localMediaStream.addTrack(localAudioTrack);
  466. }
  467. private VideoCapturer createCameraCapturer(CameraEnumerator enumerator) {
  468. final String[] deviceNames = enumerator.getDeviceNames();
  469. // First, try to find front facing camera
  470. Logging.d(TAG, "Looking for front facing cameras.");
  471. for (String deviceName : deviceNames) {
  472. if (enumerator.isFrontFacing(deviceName)) {
  473. Logging.d(TAG, "Creating front facing camera capturer.");
  474. VideoCapturer videoCapturer = enumerator.createCapturer(deviceName, null);
  475. if (videoCapturer != null) {
  476. return videoCapturer;
  477. }
  478. }
  479. }
  480. // Front facing camera not found, try something else
  481. Logging.d(TAG, "Looking for other cameras.");
  482. for (String deviceName : deviceNames) {
  483. if (!enumerator.isFrontFacing(deviceName)) {
  484. Logging.d(TAG, "Creating other camera capturer.");
  485. VideoCapturer videoCapturer = enumerator.createCapturer(deviceName, null);
  486. if (videoCapturer != null) {
  487. pipVideoView.setMirror(false);
  488. return videoCapturer;
  489. }
  490. }
  491. }
  492. return null;
  493. }
  494. @OnLongClick(R.id.call_control_microphone)
  495. public boolean onMicrophoneLongClick() {
  496. if (!audioOn) {
  497. callControlHandler.removeCallbacksAndMessages(null);
  498. cameraSwitchHandler.removeCallbacksAndMessages(null);
  499. isPTTActive = true;
  500. callControls.setVisibility(View.VISIBLE);
  501. cameraSwitchButton.setVisibility(View.VISIBLE);
  502. }
  503. onMicrophoneClick();
  504. return true;
  505. }
  506. @OnClick(R.id.callControlEnableSpeaker)
  507. public void onEnableSpeakerphoneClick() {
  508. if (audioManager != null) {
  509. audioManager.toggleUseSpeakerphone();
  510. callControlEnableSpeaker.flipSilently(!callControlEnableSpeaker.isFlipped());
  511. }
  512. }
  513. @OnClick(R.id.call_control_microphone)
  514. public void onMicrophoneClick() {
  515. if (getActivity() != null && EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_MICROPHONE)) {
  516. if (getActivity() != null && !appPreferences.getPushToTalkIntroShown()) {
  517. spotlightView = new SpotlightView.Builder(getActivity())
  518. .introAnimationDuration(300)
  519. .enableRevealAnimation(true)
  520. .performClick(false)
  521. .fadeinTextDuration(400)
  522. .headingTvColor(getResources().getColor(R.color.colorPrimary))
  523. .headingTvSize(20)
  524. .headingTvText(getResources().getString(R.string.nc_push_to_talk))
  525. .subHeadingTvColor(getResources().getColor(R.color.white))
  526. .subHeadingTvSize(16)
  527. .subHeadingTvText(getResources().getString(R.string.nc_push_to_talk_desc))
  528. .maskColor(Color.parseColor("#dc000000"))
  529. .target(microphoneControlButton)
  530. .lineAnimDuration(400)
  531. .lineAndArcColor(getResources().getColor(R.color.colorPrimary))
  532. .enableDismissAfterShown(true)
  533. .dismissOnBackPress(true)
  534. .usageId("pushToTalk")
  535. .show();
  536. appPreferences.setPushToTalkIntroShown(true);
  537. }
  538. if (!isPTTActive) {
  539. audioOn = !audioOn;
  540. if (audioOn) {
  541. microphoneControlButton.getFrontImageView().setImageResource(R.drawable.ic_mic_white_24px);
  542. } else {
  543. microphoneControlButton.getFrontImageView().setImageResource(R.drawable.ic_mic_off_white_24px);
  544. }
  545. toggleMedia(audioOn, false);
  546. } else {
  547. microphoneControlButton.getFrontImageView().setImageResource(R.drawable.ic_mic_white_24px);
  548. pulseAnimation.start();
  549. toggleMedia(true, false);
  550. }
  551. if (isVoiceOnlyCall && !inCall) {
  552. startCall();
  553. }
  554. } else if (getActivity() != null && EffortlessPermissions.somePermissionPermanentlyDenied(getActivity(),
  555. PERMISSIONS_MICROPHONE)) {
  556. // Microphone permission is permanently denied so we cannot request it normally.
  557. OpenAppDetailsDialogFragment.show(
  558. R.string.nc_microphone_permission_permanently_denied,
  559. R.string.nc_permissions_settings, (AppCompatActivity) getActivity());
  560. } else {
  561. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
  562. requestPermissions(PERMISSIONS_MICROPHONE, 100);
  563. } else {
  564. onRequestPermissionsResult(100, PERMISSIONS_MICROPHONE, new int[]{1});
  565. }
  566. }
  567. }
  568. @OnClick(R.id.callControlHangupView)
  569. public void onHangupClick() {
  570. if (inCall) {
  571. hangup(false);
  572. } else {
  573. hangup(true);
  574. }
  575. }
  576. @OnClick(R.id.call_control_camera)
  577. public void onCameraClick() {
  578. if (getActivity() != null && EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_CAMERA)) {
  579. videoOn = !videoOn;
  580. if (videoOn) {
  581. cameraControlButton.getFrontImageView().setImageResource(R.drawable.ic_videocam_white_24px);
  582. if (cameraEnumerator.getDeviceNames().length > 1) {
  583. cameraSwitchButton.setVisibility(View.VISIBLE);
  584. }
  585. } else {
  586. cameraControlButton.getFrontImageView().setImageResource(R.drawable.ic_videocam_off_white_24px);
  587. cameraSwitchButton.setVisibility(View.GONE);
  588. }
  589. toggleMedia(videoOn, true);
  590. } else if (getActivity() != null && EffortlessPermissions.somePermissionPermanentlyDenied(getActivity(),
  591. PERMISSIONS_CAMERA)) {
  592. // Camera permission is permanently denied so we cannot request it normally.
  593. OpenAppDetailsDialogFragment.show(
  594. R.string.nc_camera_permission_permanently_denied,
  595. R.string.nc_permissions_settings, (AppCompatActivity) getActivity());
  596. } else {
  597. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
  598. requestPermissions(PERMISSIONS_CAMERA, 100);
  599. } else {
  600. onRequestPermissionsResult(100, PERMISSIONS_CAMERA, new int[]{1});
  601. }
  602. }
  603. }
  604. @OnClick(R.id.call_control_switch_camera)
  605. public void switchCamera() {
  606. CameraVideoCapturer cameraVideoCapturer = (CameraVideoCapturer) videoCapturer;
  607. if (cameraVideoCapturer != null) {
  608. cameraVideoCapturer.switchCamera(new CameraVideoCapturer.CameraSwitchHandler() {
  609. @Override
  610. public void onCameraSwitchDone(boolean b) {
  611. pipVideoView.setMirror(false);
  612. }
  613. @Override
  614. public void onCameraSwitchError(String s) {
  615. }
  616. });
  617. }
  618. }
  619. private void toggleMedia(boolean enable, boolean video) {
  620. String message;
  621. if (video) {
  622. message = "videoOff";
  623. if (enable) {
  624. cameraControlButton.setAlpha(1.0f);
  625. message = "videoOn";
  626. startVideoCapture();
  627. } else {
  628. cameraControlButton.setAlpha(0.7f);
  629. if (videoCapturer != null) {
  630. try {
  631. videoCapturer.stopCapture();
  632. } catch (InterruptedException e) {
  633. Log.d(TAG, "Failed to stop capturing video while sensor is near the ear");
  634. }
  635. }
  636. }
  637. if (localMediaStream != null && localMediaStream.videoTracks.size() > 0) {
  638. localMediaStream.videoTracks.get(0).setEnabled(enable);
  639. }
  640. if (enable) {
  641. pipVideoView.setVisibility(View.VISIBLE);
  642. } else {
  643. pipVideoView.setVisibility(View.INVISIBLE);
  644. }
  645. } else {
  646. message = "audioOff";
  647. if (enable) {
  648. message = "audioOn";
  649. microphoneControlButton.setAlpha(1.0f);
  650. } else {
  651. microphoneControlButton.setAlpha(0.7f);
  652. }
  653. if (localMediaStream != null && localMediaStream.audioTracks.size() > 0) {
  654. localMediaStream.audioTracks.get(0).setEnabled(enable);
  655. }
  656. }
  657. if (inCall) {
  658. for (int i = 0; i < magicPeerConnectionWrapperList.size(); i++) {
  659. magicPeerConnectionWrapperList.get(i).sendChannelData(new DataChannelMessage(message));
  660. }
  661. }
  662. }
  663. private void startCall() {
  664. startPullingSignalingMessages();
  665. }
  666. private void animateCallControls(boolean show, long startDelay) {
  667. if (isVoiceOnlyCall) {
  668. if (spotlightView != null && spotlightView.getVisibility() != View.GONE) {
  669. spotlightView.setVisibility(View.GONE);
  670. }
  671. } else if (!isPTTActive) {
  672. float alpha;
  673. long duration;
  674. if (show) {
  675. callControlHandler.removeCallbacksAndMessages(null);
  676. cameraSwitchHandler.removeCallbacksAndMessages(null);
  677. alpha = 1.0f;
  678. duration = 1000;
  679. if (callControls.getVisibility() != View.VISIBLE) {
  680. callControls.setAlpha(0.0f);
  681. callControls.setVisibility(View.VISIBLE);
  682. cameraSwitchButton.setAlpha(0.0f);
  683. cameraSwitchButton.setVisibility(View.VISIBLE);
  684. } else {
  685. callControlHandler.postDelayed(() -> animateCallControls(false, 0), 5000);
  686. return;
  687. }
  688. } else {
  689. alpha = 0.0f;
  690. duration = 1000;
  691. }
  692. if (callControls != null) {
  693. callControls.setEnabled(false);
  694. callControls.animate()
  695. .translationY(0)
  696. .alpha(alpha)
  697. .setDuration(duration)
  698. .setStartDelay(startDelay)
  699. .setListener(new AnimatorListenerAdapter() {
  700. @Override
  701. public void onAnimationEnd(Animator animation) {
  702. super.onAnimationEnd(animation);
  703. if (callControls != null) {
  704. if (!show) {
  705. callControls.setVisibility(View.GONE);
  706. if (spotlightView != null && spotlightView.getVisibility() != View.GONE) {
  707. spotlightView.setVisibility(View.GONE);
  708. }
  709. } else {
  710. callControlHandler.postDelayed(new Runnable() {
  711. @Override
  712. public void run() {
  713. if (!isPTTActive) {
  714. animateCallControls(false, 0);
  715. }
  716. }
  717. }, 7500);
  718. }
  719. callControls.setEnabled(true);
  720. }
  721. }
  722. });
  723. }
  724. if (cameraSwitchButton != null) {
  725. cameraSwitchButton.setEnabled(false);
  726. cameraSwitchButton.animate()
  727. .translationY(0)
  728. .alpha(alpha)
  729. .setDuration(duration)
  730. .setStartDelay(startDelay)
  731. .setListener(new AnimatorListenerAdapter() {
  732. @Override
  733. public void onAnimationEnd(Animator animation) {
  734. super.onAnimationEnd(animation);
  735. if (cameraSwitchButton != null) {
  736. if (!show) {
  737. cameraSwitchButton.setVisibility(View.GONE);
  738. }
  739. cameraSwitchButton.setEnabled(true);
  740. }
  741. }
  742. });
  743. }
  744. }
  745. }
  746. @Override
  747. public void onDestroy() {
  748. onHangupClick();
  749. super.onDestroy();
  750. }
  751. private void startPullingSignalingMessages() {
  752. leavingCall = false;
  753. ncApi.getSignalingSettings(credentials, ApiUtils.getUrlForSignalingSettings(baseUrl))
  754. .subscribeOn(Schedulers.newThread())
  755. .retry(3)
  756. .observeOn(AndroidSchedulers.mainThread())
  757. .subscribe(new Observer<SignalingSettingsOverall>() {
  758. @Override
  759. public void onSubscribe(Disposable d) {
  760. }
  761. @Override
  762. public void onNext(SignalingSettingsOverall signalingSettingsOverall) {
  763. IceServer iceServer;
  764. if (signalingSettingsOverall != null && signalingSettingsOverall.getOcs() != null &&
  765. signalingSettingsOverall.getOcs().getSettings() != null) {
  766. if (signalingSettingsOverall.getOcs().getSettings().getStunServers() != null) {
  767. for (int i = 0; i < signalingSettingsOverall.getOcs().getSettings().getStunServers().size();
  768. i++) {
  769. iceServer = signalingSettingsOverall.getOcs().getSettings().getStunServers().get(i);
  770. if (TextUtils.isEmpty(iceServer.getUsername()) || TextUtils.isEmpty(iceServer
  771. .getCredential())) {
  772. iceServers.add(new PeerConnection.IceServer(iceServer.getUrl()));
  773. } else {
  774. iceServers.add(new PeerConnection.IceServer(iceServer.getUrl(),
  775. iceServer.getUsername(), iceServer.getCredential()));
  776. }
  777. }
  778. }
  779. if (signalingSettingsOverall.getOcs().getSettings().getTurnServers() != null) {
  780. for (int i = 0; i < signalingSettingsOverall.getOcs().getSettings().getTurnServers().size();
  781. i++) {
  782. iceServer = signalingSettingsOverall.getOcs().getSettings().getTurnServers().get(i);
  783. for (int j = 0; j < iceServer.getUrls().size(); j++) {
  784. if (TextUtils.isEmpty(iceServer.getUsername()) || TextUtils.isEmpty(iceServer
  785. .getCredential())) {
  786. iceServers.add(new PeerConnection.IceServer(iceServer.getUrls().get(j)));
  787. } else {
  788. iceServers.add(new PeerConnection.IceServer(iceServer.getUrls().get(j),
  789. iceServer.getUsername(), iceServer.getCredential()));
  790. }
  791. }
  792. }
  793. }
  794. }
  795. checkCapabilities();
  796. }
  797. @Override
  798. public void onError(Throwable e) {
  799. }
  800. @Override
  801. public void onComplete() {
  802. }
  803. });
  804. }
  805. private void checkCapabilities() {
  806. ncApi.getCapabilities(credentials, ApiUtils.getUrlForCapabilities(baseUrl))
  807. .retry(3)
  808. .subscribeOn(Schedulers.newThread())
  809. .observeOn(AndroidSchedulers.mainThread())
  810. .subscribe(new Observer<CapabilitiesOverall>() {
  811. @Override
  812. public void onSubscribe(Disposable d) {
  813. }
  814. @Override
  815. public void onNext(CapabilitiesOverall capabilitiesOverall) {
  816. isMultiSession = capabilitiesOverall.getOcs().getData()
  817. .getCapabilities() != null && capabilitiesOverall.getOcs().getData()
  818. .getCapabilities().getSpreedCapability() != null &&
  819. capabilitiesOverall.getOcs().getData()
  820. .getCapabilities().getSpreedCapability()
  821. .getFeatures() != null && capabilitiesOverall.getOcs().getData()
  822. .getCapabilities().getSpreedCapability()
  823. .getFeatures().contains("multi-room-users");
  824. needsPing = !(capabilitiesOverall.getOcs().getData()
  825. .getCapabilities() != null && capabilitiesOverall.getOcs().getData()
  826. .getCapabilities().getSpreedCapability() != null &&
  827. capabilitiesOverall.getOcs().getData()
  828. .getCapabilities().getSpreedCapability()
  829. .getFeatures() != null && capabilitiesOverall.getOcs().getData()
  830. .getCapabilities().getSpreedCapability()
  831. .getFeatures().contains("no-ping"));
  832. joinRoomAndCall();
  833. }
  834. @Override
  835. public void onError(Throwable e) {
  836. isMultiSession = false;
  837. }
  838. @Override
  839. public void onComplete() {
  840. }
  841. });
  842. }
  843. private void joinRoomAndCall() {
  844. if ("0".equals(callSession)) {
  845. ncApi.joinRoom(credentials, ApiUtils.getUrlForSettingMyselfAsActiveParticipant(baseUrl, roomToken), null)
  846. .subscribeOn(Schedulers.newThread())
  847. .observeOn(AndroidSchedulers.mainThread())
  848. .retry(3)
  849. .subscribe(new Observer<CallOverall>() {
  850. @Override
  851. public void onSubscribe(Disposable d) {
  852. }
  853. @Override
  854. public void onNext(CallOverall callOverall) {
  855. callSession = callOverall.getOcs().getData().getSessionId();
  856. performCall();
  857. }
  858. @Override
  859. public void onError(Throwable e) {
  860. }
  861. @Override
  862. public void onComplete() {
  863. }
  864. });
  865. } else {
  866. performCall();
  867. }
  868. }
  869. private void performCall() {
  870. ncApi.joinCall(credentials,
  871. ApiUtils.getUrlForCall(baseUrl, roomToken))
  872. .subscribeOn(Schedulers.newThread())
  873. .retry(3)
  874. .observeOn(AndroidSchedulers.mainThread())
  875. .subscribe(new Observer<GenericOverall>() {
  876. @Override
  877. public void onSubscribe(Disposable d) {
  878. }
  879. @Override
  880. public void onNext(GenericOverall genericOverall) {
  881. inCall = true;
  882. if (connectingView != null) {
  883. connectingView.setVisibility(View.GONE);
  884. }
  885. if (conversationView != null) {
  886. conversationView.setVisibility(View.VISIBLE);
  887. }
  888. if (!isPTTActive) {
  889. animateCallControls(false, 5000);
  890. }
  891. ApplicationWideCurrentRoomHolder.getInstance().setCurrentRoomId(roomId);
  892. ApplicationWideCurrentRoomHolder.getInstance().setCurrentRoomToken(roomToken);
  893. ApplicationWideCurrentRoomHolder.getInstance().setInCall(true);
  894. ApplicationWideCurrentRoomHolder.getInstance().setUserInRoom(conversationUser);
  895. if (needsPing) {
  896. ncApi.pingCall(credentials, ApiUtils.getUrlForCallPing(baseUrl, roomToken))
  897. .subscribeOn(Schedulers.newThread())
  898. .observeOn(AndroidSchedulers.mainThread())
  899. .repeatWhen(observable -> observable.delay(5000, TimeUnit.MILLISECONDS))
  900. .takeWhile(observable -> inCall)
  901. .retry(3, observable -> inCall)
  902. .subscribe(new Observer<GenericOverall>() {
  903. @Override
  904. public void onSubscribe(Disposable d) {
  905. pingDisposable = d;
  906. }
  907. @Override
  908. public void onNext(GenericOverall genericOverall) {
  909. }
  910. @Override
  911. public void onError(Throwable e) {
  912. dispose(pingDisposable);
  913. }
  914. @Override
  915. public void onComplete() {
  916. dispose(pingDisposable);
  917. }
  918. });
  919. }
  920. // Start pulling signaling messages
  921. String urlToken = null;
  922. if (isMultiSession) {
  923. urlToken = roomToken;
  924. }
  925. NotificationUtils.cancelExistingNotifications(getApplicationContext(), conversationUser);
  926. ncApi.pullSignalingMessages(credentials, ApiUtils.getUrlForSignaling(baseUrl, urlToken))
  927. .subscribeOn(Schedulers.newThread())
  928. .observeOn(AndroidSchedulers.mainThread())
  929. .repeatWhen(observable -> observable)
  930. .takeWhile(observable -> inCall)
  931. .retry(3, observable -> inCall)
  932. .subscribe(new Observer<SignalingOverall>() {
  933. @Override
  934. public void onSubscribe(Disposable d) {
  935. signalingDisposable = d;
  936. }
  937. @Override
  938. public void onNext(SignalingOverall signalingOverall) {
  939. if (signalingOverall.getOcs().getSignalings() != null) {
  940. for (int i = 0; i < signalingOverall.getOcs().getSignalings().size(); i++) {
  941. try {
  942. receivedSignalingMessage(signalingOverall.getOcs().getSignalings().get(i));
  943. } catch (IOException e) {
  944. Log.e(TAG, "Failed to process received signaling" +
  945. " message");
  946. }
  947. }
  948. }
  949. }
  950. @Override
  951. public void onError(Throwable e) {
  952. dispose(signalingDisposable);
  953. }
  954. @Override
  955. public void onComplete() {
  956. dispose(signalingDisposable);
  957. }
  958. });
  959. }
  960. @Override
  961. public void onError(Throwable e) {
  962. }
  963. @Override
  964. public void onComplete() {
  965. }
  966. });
  967. }
  968. @OnClick({R.id.pip_video_view, R.id.remote_renderers_layout})
  969. public void showCallControls() {
  970. animateCallControls(true, 0);
  971. }
  972. private void dispose(@Nullable Disposable disposable) {
  973. if (disposable != null && !disposable.isDisposed()) {
  974. disposable.dispose();
  975. } else if (disposable == null) {
  976. if (pingDisposable != null && !pingDisposable.isDisposed()) {
  977. pingDisposable.dispose();
  978. pingDisposable = null;
  979. }
  980. if (signalingDisposable != null && !signalingDisposable.isDisposed()) {
  981. signalingDisposable.dispose();
  982. signalingDisposable = null;
  983. }
  984. }
  985. }
  986. private void receivedSignalingMessage(Signaling signaling) throws IOException {
  987. String messageType = signaling.getType();
  988. if (leavingCall) {
  989. return;
  990. }
  991. if ("usersInRoom".equals(messageType)) {
  992. processUsersInRoom((List<HashMap<String, String>>) signaling.getMessageWrapper());
  993. } else if ("message".equals(messageType)) {
  994. NCSignalingMessage ncSignalingMessage = LoganSquare.parse(signaling.getMessageWrapper().toString(),
  995. NCSignalingMessage.class);
  996. if (ncSignalingMessage.getRoomType().equals("video")) {
  997. MagicPeerConnectionWrapper magicPeerConnectionWrapper = alwaysGetPeerConnectionWrapperForSessionId
  998. (ncSignalingMessage.getFrom());
  999. String type = null;
  1000. if (ncSignalingMessage.getPayload() != null && ncSignalingMessage.getPayload().getType() !=
  1001. null) {
  1002. type = ncSignalingMessage.getPayload().getType();
  1003. } else if (ncSignalingMessage.getType() != null) {
  1004. type = ncSignalingMessage.getType();
  1005. }
  1006. if (type != null) {
  1007. switch (type) {
  1008. case "offer":
  1009. case "answer":
  1010. magicPeerConnectionWrapper.setNick(ncSignalingMessage.getPayload().getNick());
  1011. String sessionDescriptionStringWithPreferredCodec = MagicWebRTCUtils.preferCodec
  1012. (ncSignalingMessage.getPayload().getSdp(),
  1013. "VP8", false);
  1014. SessionDescription sessionDescriptionWithPreferredCodec = new SessionDescription(
  1015. SessionDescription.Type.fromCanonicalForm(type),
  1016. sessionDescriptionStringWithPreferredCodec);
  1017. if (magicPeerConnectionWrapper.getPeerConnection() != null) {
  1018. magicPeerConnectionWrapper.getPeerConnection().setRemoteDescription(magicPeerConnectionWrapper
  1019. .getMagicSdpObserver(), sessionDescriptionWithPreferredCodec);
  1020. }
  1021. break;
  1022. case "candidate":
  1023. NCIceCandidate ncIceCandidate = ncSignalingMessage.getPayload().getIceCandidate();
  1024. IceCandidate iceCandidate = new IceCandidate(ncIceCandidate.getSdpMid(),
  1025. ncIceCandidate.getSdpMLineIndex(), ncIceCandidate.getCandidate());
  1026. magicPeerConnectionWrapper.addCandidate(iceCandidate);
  1027. break;
  1028. case "endOfCandidates":
  1029. magicPeerConnectionWrapper.drainIceCandidates();
  1030. break;
  1031. default:
  1032. break;
  1033. }
  1034. }
  1035. } else {
  1036. Log.d(TAG, "Something went very very wrong");
  1037. }
  1038. } else {
  1039. Log.d(TAG, "Something went very very wrong");
  1040. }
  1041. }
  1042. private void hangup(boolean dueToNetworkChange) {
  1043. leavingCall = true;
  1044. inCall = false;
  1045. if (videoCapturer != null) {
  1046. try {
  1047. videoCapturer.stopCapture();
  1048. } catch (InterruptedException e) {
  1049. Log.e(TAG, "Failed to stop capturing while hanging up");
  1050. }
  1051. videoCapturer.dispose();
  1052. videoCapturer = null;
  1053. }
  1054. for (int i = 0; i < magicPeerConnectionWrapperList.size(); i++) {
  1055. endPeerConnection(magicPeerConnectionWrapperList.get(i).getSessionId());
  1056. }
  1057. if (pipVideoView != null) {
  1058. pipVideoView.release();
  1059. }
  1060. if (audioSource != null) {
  1061. audioSource.dispose();
  1062. audioSource = null;
  1063. }
  1064. if (audioManager != null) {
  1065. audioManager.stop();
  1066. audioManager = null;
  1067. }
  1068. if (videoSource != null) {
  1069. videoSource = null;
  1070. }
  1071. if (peerConnectionFactory != null) {
  1072. peerConnectionFactory = null;
  1073. }
  1074. localMediaStream = null;
  1075. localAudioTrack = null;
  1076. localVideoTrack = null;
  1077. if (!dueToNetworkChange) {
  1078. hangupNetworkCalls();
  1079. } else {
  1080. if (getActivity() != null) {
  1081. getActivity().finish();
  1082. }
  1083. }
  1084. }
  1085. private void hangupNetworkCalls() {
  1086. ncApi.leaveCall(credentials, ApiUtils.getUrlForCall(baseUrl, roomToken))
  1087. .subscribeOn(Schedulers.newThread())
  1088. .observeOn(AndroidSchedulers.mainThread())
  1089. .subscribe(new Observer<GenericOverall>() {
  1090. @Override
  1091. public void onSubscribe(Disposable d) {
  1092. }
  1093. @Override
  1094. public void onNext(GenericOverall genericOverall) {
  1095. if (isMultiSession) {
  1096. if (getActivity() != null) {
  1097. getActivity().finish();
  1098. }
  1099. } else {
  1100. leaveRoom();
  1101. }
  1102. }
  1103. @Override
  1104. public void onError(Throwable e) {
  1105. }
  1106. @Override
  1107. public void onComplete() {
  1108. }
  1109. });
  1110. }
  1111. private void leaveRoom() {
  1112. ncApi.leaveRoom(credentials, ApiUtils.getUrlForSettingMyselfAsActiveParticipant(baseUrl, roomToken))
  1113. .subscribeOn(Schedulers.newThread())
  1114. .observeOn(AndroidSchedulers.mainThread())
  1115. .subscribe(new Observer<GenericOverall>() {
  1116. @Override
  1117. public void onSubscribe(Disposable d) {
  1118. }
  1119. @Override
  1120. public void onNext(GenericOverall genericOverall) {
  1121. if (getActivity() != null) {
  1122. getActivity().finish();
  1123. }
  1124. }
  1125. @Override
  1126. public void onError(Throwable e) {
  1127. }
  1128. @Override
  1129. public void onComplete() {
  1130. }
  1131. });
  1132. }
  1133. private void startVideoCapture() {
  1134. if (videoCapturer != null) {
  1135. videoCapturer.startCapture(1280, 720, 30);
  1136. }
  1137. }
  1138. private void processUsersInRoom(List<HashMap<String, String>> users) {
  1139. List<String> newSessions = new ArrayList<>();
  1140. Set<String> oldSesssions = new HashSet<>();
  1141. for (HashMap<String, String> participant : users) {
  1142. if (!participant.get("sessionId").equals(callSession)) {
  1143. Object inCallObject = participant.get("inCall");
  1144. if ((boolean) inCallObject) {
  1145. newSessions.add(participant.get("sessionId"));
  1146. } else {
  1147. oldSesssions.add(participant.get("sessionId"));
  1148. }
  1149. }
  1150. }
  1151. for (MagicPeerConnectionWrapper magicPeerConnectionWrapper : magicPeerConnectionWrapperList) {
  1152. oldSesssions.add(magicPeerConnectionWrapper.getSessionId());
  1153. }
  1154. // Calculate sessions that left the call
  1155. oldSesssions.removeAll(newSessions);
  1156. // Calculate sessions that join the call
  1157. newSessions.removeAll(oldSesssions);
  1158. if (leavingCall) {
  1159. return;
  1160. }
  1161. if (newSessions.size() > 0) {
  1162. getPeersForCall();
  1163. }
  1164. for (String sessionId : newSessions) {
  1165. alwaysGetPeerConnectionWrapperForSessionId(sessionId);
  1166. }
  1167. for (String sessionId : oldSesssions) {
  1168. endPeerConnection(sessionId);
  1169. }
  1170. }
  1171. private void getPeersForCall() {
  1172. ncApi.getPeersForCall(credentials, ApiUtils.getUrlForCall(baseUrl, roomToken))
  1173. .subscribeOn(Schedulers.newThread())
  1174. .subscribe(new Observer<ParticipantsOverall>() {
  1175. @Override
  1176. public void onSubscribe(Disposable d) {
  1177. }
  1178. @Override
  1179. public void onNext(ParticipantsOverall participantsOverall) {
  1180. participantMap = new HashMap<>();
  1181. for (Participant participant : participantsOverall.getOcs().getData()) {
  1182. participantMap.put(participant.getSessionId(), participant);
  1183. if (getActivity() != null) {
  1184. getActivity().runOnUiThread(() -> setupAvatarForSession(participant.getSessionId()));
  1185. }
  1186. }
  1187. }
  1188. @Override
  1189. public void onError(Throwable e) {
  1190. }
  1191. @Override
  1192. public void onComplete() {
  1193. }
  1194. });
  1195. }
  1196. private void deleteMagicPeerConnection(MagicPeerConnectionWrapper magicPeerConnectionWrapper) {
  1197. magicPeerConnectionWrapper.removePeerConnection();
  1198. magicPeerConnectionWrapperList.remove(magicPeerConnectionWrapper);
  1199. }
  1200. private MagicPeerConnectionWrapper alwaysGetPeerConnectionWrapperForSessionId(String sessionId) {
  1201. MagicPeerConnectionWrapper magicPeerConnectionWrapper;
  1202. if ((magicPeerConnectionWrapper = getPeerConnectionWrapperForSessionId(sessionId)) != null) {
  1203. return magicPeerConnectionWrapper;
  1204. } else {
  1205. magicPeerConnectionWrapper = new MagicPeerConnectionWrapper(peerConnectionFactory,
  1206. iceServers, sdpConstraints, sessionId, callSession, localMediaStream);
  1207. magicPeerConnectionWrapperList.add(magicPeerConnectionWrapper);
  1208. return magicPeerConnectionWrapper;
  1209. }
  1210. }
  1211. private MagicPeerConnectionWrapper getPeerConnectionWrapperForSessionId(String sessionId) {
  1212. for (MagicPeerConnectionWrapper magicPeerConnectionWrapper : magicPeerConnectionWrapperList) {
  1213. if (magicPeerConnectionWrapper.getSessionId().equals(sessionId)) {
  1214. return magicPeerConnectionWrapper;
  1215. }
  1216. }
  1217. return null;
  1218. }
  1219. private void endPeerConnection(String sessionId) {
  1220. MagicPeerConnectionWrapper magicPeerConnectionWrapper;
  1221. if ((magicPeerConnectionWrapper = getPeerConnectionWrapperForSessionId(sessionId)) != null && getActivity()
  1222. != null) {
  1223. getActivity().runOnUiThread(() -> removeMediaStream(sessionId));
  1224. deleteMagicPeerConnection(magicPeerConnectionWrapper);
  1225. }
  1226. }
  1227. private void removeMediaStream(String sessionId) {
  1228. if (remoteRenderersLayout != null && remoteRenderersLayout.getChildCount() > 0) {
  1229. RelativeLayout relativeLayout = remoteRenderersLayout.findViewWithTag(sessionId);
  1230. if (relativeLayout != null) {
  1231. SurfaceViewRenderer surfaceViewRenderer = relativeLayout.findViewById(R.id.surface_view);
  1232. surfaceViewRenderer.release();
  1233. remoteRenderersLayout.removeView(relativeLayout);
  1234. remoteRenderersLayout.invalidate();
  1235. }
  1236. }
  1237. if (callControls != null) {
  1238. callControls.setZ(100.0f);
  1239. }
  1240. }
  1241. @Subscribe(threadMode = ThreadMode.MAIN)
  1242. public void onMessageEvent(ConfigurationChangeEvent configurationChangeEvent) {
  1243. if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
  1244. remoteRenderersLayout.setOrientation(LinearLayout.HORIZONTAL);
  1245. } else if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
  1246. remoteRenderersLayout.setOrientation(LinearLayout.VERTICAL);
  1247. }
  1248. }
  1249. @Subscribe(threadMode = ThreadMode.MAIN)
  1250. public void onMessageEvent(PeerConnectionEvent peerConnectionEvent) {
  1251. if (peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent.PeerConnectionEventType
  1252. .PEER_CLOSED)) {
  1253. endPeerConnection(peerConnectionEvent.getSessionId());
  1254. } else if (peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent
  1255. .PeerConnectionEventType.SENSOR_FAR) ||
  1256. peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent
  1257. .PeerConnectionEventType.SENSOR_NEAR)) {
  1258. if (!isVoiceOnlyCall) {
  1259. boolean enableVideo = peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent
  1260. .PeerConnectionEventType.SENSOR_FAR) && videoOn;
  1261. if (getActivity() != null && EffortlessPermissions.hasPermissions(getActivity(), PERMISSIONS_CAMERA) &&
  1262. inCall && videoOn
  1263. && enableVideo != localVideoTrack.enabled()) {
  1264. toggleMedia(enableVideo, true);
  1265. }
  1266. }
  1267. } else if (peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent
  1268. .PeerConnectionEventType.NICK_CHANGE)) {
  1269. gotNick(peerConnectionEvent.getSessionId(), peerConnectionEvent.getNick());
  1270. } else if (peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent
  1271. .PeerConnectionEventType.VIDEO_CHANGE) && !isVoiceOnlyCall) {
  1272. gotAudioOrVideoChange(true, peerConnectionEvent.getSessionId(),
  1273. peerConnectionEvent.getChangeValue());
  1274. } else if (peerConnectionEvent.getPeerConnectionEventType().equals(PeerConnectionEvent
  1275. .PeerConnectionEventType.AUDIO_CHANGE)) {
  1276. gotAudioOrVideoChange(false, peerConnectionEvent.getSessionId(),
  1277. peerConnectionEvent.getChangeValue());
  1278. }
  1279. }
  1280. @Subscribe(threadMode = ThreadMode.MAIN)
  1281. public void onMessageEvent(MediaStreamEvent mediaStreamEvent) {
  1282. if (mediaStreamEvent.getMediaStream() != null) {
  1283. setupVideoStreamForLayout(mediaStreamEvent.getMediaStream(), mediaStreamEvent.getSession(),
  1284. mediaStreamEvent.getMediaStream().videoTracks != null
  1285. && mediaStreamEvent.getMediaStream().videoTracks.size() > 0);
  1286. } else {
  1287. setupVideoStreamForLayout(null, mediaStreamEvent.getSession(), false);
  1288. }
  1289. }
  1290. @Subscribe(threadMode = ThreadMode.BACKGROUND)
  1291. public void onMessageEvent(SessionDescriptionSendEvent sessionDescriptionSend) throws IOException {
  1292. NCMessageWrapper ncMessageWrapper = new NCMessageWrapper();
  1293. ncMessageWrapper.setEv("message");
  1294. ncMessageWrapper.setSessionId(callSession);
  1295. NCSignalingMessage ncSignalingMessage = new NCSignalingMessage();
  1296. ncSignalingMessage.setTo(sessionDescriptionSend.getPeerId());
  1297. ncSignalingMessage.setRoomType("video");
  1298. ncSignalingMessage.setType(sessionDescriptionSend.getType());
  1299. NCMessagePayload ncMessagePayload = new NCMessagePayload();
  1300. ncMessagePayload.setType(sessionDescriptionSend.getType());
  1301. if (!"candidate".equals(sessionDescriptionSend.getType())) {
  1302. ncMessagePayload.setSdp(sessionDescriptionSend.getSessionDescription().description);
  1303. ncMessagePayload.setNick(conversationUser.getDisplayName());
  1304. } else {
  1305. ncMessagePayload.setIceCandidate(sessionDescriptionSend.getNcIceCandidate());
  1306. }
  1307. // Set all we need
  1308. ncSignalingMessage.setPayload(ncMessagePayload);
  1309. ncMessageWrapper.setSignalingMessage(ncSignalingMessage);
  1310. StringBuilder stringBuilder = new StringBuilder();
  1311. stringBuilder.append("{")
  1312. .append("\"fn\":\"")
  1313. .append(StringEscapeUtils.escapeJson(LoganSquare.serialize(ncMessageWrapper.getSignalingMessage()))).append("\"")
  1314. .append(",")
  1315. .append("\"sessionId\":")
  1316. .append("\"").append(StringEscapeUtils.escapeJson(callSession)).append("\"")
  1317. .append(",")
  1318. .append("\"ev\":\"message\"")
  1319. .append("}");
  1320. List<String> strings = new ArrayList<>();
  1321. String stringToSend = stringBuilder.toString();
  1322. strings.add(stringToSend);
  1323. String urlToken = null;
  1324. if (isMultiSession) {
  1325. urlToken = roomToken;
  1326. }
  1327. ncApi.sendSignalingMessages(credentials, ApiUtils.getUrlForSignaling(baseUrl, urlToken),
  1328. strings.toString())
  1329. .retry(3)
  1330. .subscribeOn(Schedulers.newThread())
  1331. .subscribe(new Observer<SignalingOverall>() {
  1332. @Override
  1333. public void onSubscribe(Disposable d) {
  1334. }
  1335. @Override
  1336. public void onNext(SignalingOverall signalingOverall) {
  1337. if (signalingOverall.getOcs().getSignalings() != null) {
  1338. for (int i = 0; i < signalingOverall.getOcs().getSignalings().size(); i++) {
  1339. try {
  1340. receivedSignalingMessage(signalingOverall.getOcs().getSignalings().get(i));
  1341. } catch (IOException e) {
  1342. e.printStackTrace();
  1343. }
  1344. }
  1345. }
  1346. }
  1347. @Override
  1348. public void onError(Throwable e) {
  1349. }
  1350. @Override
  1351. public void onComplete() {
  1352. }
  1353. });
  1354. }
  1355. @Override
  1356. public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
  1357. @NonNull int[] grantResults) {
  1358. super.onRequestPermissionsResult(requestCode, permissions, grantResults);
  1359. EffortlessPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults,
  1360. this);
  1361. }
  1362. private void setupAvatarForSession(String session) {
  1363. if (remoteRenderersLayout != null) {
  1364. RelativeLayout relativeLayout = remoteRenderersLayout.findViewWithTag(session);
  1365. if (relativeLayout != null) {
  1366. ImageView avatarImageView = relativeLayout.findViewById(R.id.avatarImageView);
  1367. if (participantMap.containsKey(session) && avatarImageView.getDrawable() == null) {
  1368. int size = Math.round(getResources().getDimension(R.dimen.avatar_size_big));
  1369. if (getActivity() != null) {
  1370. GlideApp.with(getActivity())
  1371. .asBitmap()
  1372. .diskCacheStrategy(DiskCacheStrategy.NONE)
  1373. .load(ApiUtils.getUrlForAvatarWithName(baseUrl, participantMap.get(session).getUserId(), R.dimen.avatar_size_big))
  1374. .centerInside()
  1375. .override(size, size)
  1376. .apply(RequestOptions.bitmapTransform(new CircleCrop()))
  1377. .into(avatarImageView);
  1378. }
  1379. }
  1380. }
  1381. }
  1382. }
  1383. private void setupVideoStreamForLayout(@Nullable MediaStream mediaStream, String session, boolean enable) {
  1384. boolean isInitialLayoutSetupForPeer = false;
  1385. if (remoteRenderersLayout.findViewWithTag(session) == null) {
  1386. setupNewPeerLayout(session);
  1387. isInitialLayoutSetupForPeer = true;
  1388. }
  1389. RelativeLayout relativeLayout = remoteRenderersLayout.findViewWithTag(session);
  1390. SurfaceViewRenderer surfaceViewRenderer = relativeLayout.findViewById(R.id.surface_view);
  1391. ImageView imageView = relativeLayout.findViewById(R.id.avatarImageView);
  1392. if (mediaStream != null && mediaStream.videoTracks != null && mediaStream.videoTracks.size() > 0 && enable) {
  1393. VideoTrack videoTrack = mediaStream.videoTracks.get(0);
  1394. videoTrack.addSink(surfaceViewRenderer);
  1395. imageView.setVisibility(View.INVISIBLE);
  1396. surfaceViewRenderer.setVisibility(View.VISIBLE);
  1397. } else {
  1398. imageView.setVisibility(View.VISIBLE);
  1399. surfaceViewRenderer.setVisibility(View.INVISIBLE);
  1400. if (isInitialLayoutSetupForPeer && isVoiceOnlyCall) {
  1401. gotAudioOrVideoChange(true, session, false);
  1402. }
  1403. }
  1404. callControls.setZ(100.0f);
  1405. }
  1406. private void gotAudioOrVideoChange(boolean video, String sessionId, boolean change) {
  1407. RelativeLayout relativeLayout = remoteRenderersLayout.findViewWithTag(sessionId);
  1408. if (relativeLayout != null) {
  1409. ImageView imageView;
  1410. ImageView avatarImageView = relativeLayout.findViewById(R.id.avatarImageView);
  1411. SurfaceViewRenderer surfaceViewRenderer = relativeLayout.findViewById(R.id.surface_view);
  1412. if (video) {
  1413. imageView = relativeLayout.findViewById(R.id.remote_video_off);
  1414. if (change) {
  1415. avatarImageView.setVisibility(View.INVISIBLE);
  1416. surfaceViewRenderer.setVisibility(View.VISIBLE);
  1417. } else {
  1418. avatarImageView.setVisibility(View.VISIBLE);
  1419. surfaceViewRenderer.setVisibility(View.INVISIBLE);
  1420. }
  1421. } else {
  1422. imageView = relativeLayout.findViewById(R.id.remote_audio_off);
  1423. }
  1424. if (change && imageView.getVisibility() != View.INVISIBLE) {
  1425. imageView.setVisibility(View.INVISIBLE);
  1426. } else if (!change && imageView.getVisibility() != View.VISIBLE) {
  1427. imageView.setVisibility(View.VISIBLE);
  1428. }
  1429. }
  1430. }
  1431. private void setupNewPeerLayout(String session) {
  1432. if (remoteRenderersLayout.findViewWithTag(session) == null && getActivity() != null) {
  1433. getActivity().runOnUiThread(() -> {
  1434. RelativeLayout relativeLayout = (RelativeLayout)
  1435. getActivity().getLayoutInflater().inflate(R.layout.call_item, remoteRenderersLayout,
  1436. false);
  1437. relativeLayout.setTag(session);
  1438. SurfaceViewRenderer surfaceViewRenderer = relativeLayout.findViewById(R.id
  1439. .surface_view);
  1440. surfaceViewRenderer.setMirror(false);
  1441. surfaceViewRenderer.init(rootEglBase.getEglBaseContext(), null);
  1442. surfaceViewRenderer.setZOrderMediaOverlay(false);
  1443. // disabled because it causes some devices to crash
  1444. surfaceViewRenderer.setEnableHardwareScaler(false);
  1445. surfaceViewRenderer.setScalingType(RendererCommon.ScalingType.SCALE_ASPECT_FIT);
  1446. surfaceViewRenderer.setOnClickListener(videoOnClickListener);
  1447. remoteRenderersLayout.addView(relativeLayout);
  1448. gotNick(session, getPeerConnectionWrapperForSessionId(session).getNick());
  1449. setupAvatarForSession(session);
  1450. callControls.setZ(100.0f);
  1451. });
  1452. }
  1453. }
  1454. private void gotNick(String sessionId, String nick) {
  1455. RelativeLayout relativeLayout = remoteRenderersLayout.findViewWithTag(sessionId);
  1456. if (relativeLayout != null) {
  1457. TextView textView = relativeLayout.findViewById(R.id.peer_nick_text_view);
  1458. textView.setText(nick);
  1459. }
  1460. }
  1461. @Override
  1462. protected void onAttach(@NonNull View view) {
  1463. super.onAttach(view);
  1464. eventBus.register(this);
  1465. }
  1466. @Override
  1467. protected void onDetach(@NonNull View view) {
  1468. super.onDetach(view);
  1469. eventBus.unregister(this);
  1470. }
  1471. private class MicrophoneButtonTouchListener implements View.OnTouchListener {
  1472. @SuppressLint("ClickableViewAccessibility")
  1473. @Override
  1474. public boolean onTouch(View v, MotionEvent event) {
  1475. v.onTouchEvent(event);
  1476. if (event.getAction() == MotionEvent.ACTION_UP && isPTTActive) {
  1477. isPTTActive = false;
  1478. microphoneControlButton.getFrontImageView().setImageResource(R.drawable.ic_mic_off_white_24px);
  1479. pulseAnimation.stop();
  1480. toggleMedia(false, false);
  1481. animateCallControls(false, 5000);
  1482. }
  1483. return true;
  1484. }
  1485. }
  1486. private class VideoClickListener implements View.OnClickListener {
  1487. @Override
  1488. public void onClick(View v) {
  1489. showCallControls();
  1490. }
  1491. }
  1492. }