2016-11-09 09:37:40 -08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
2017-11-24 22:00:30 -08:00
|
|
|
import android.Manifest;
|
2020-04-23 16:20:59 -03:00
|
|
|
import android.app.PictureInPictureParams;
|
2016-11-09 09:37:40 -08:00
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
|
|
|
import android.content.Intent;
|
2020-04-23 16:20:59 -03:00
|
|
|
import android.content.pm.PackageManager;
|
2016-11-09 09:37:40 -08:00
|
|
|
import android.content.res.Configuration;
|
|
|
|
import android.media.AudioManager;
|
2020-04-23 16:20:59 -03:00
|
|
|
import android.os.Build;
|
2016-11-09 09:37:40 -08:00
|
|
|
import android.os.Bundle;
|
2020-04-23 16:20:59 -03:00
|
|
|
import android.text.SpannableString;
|
|
|
|
import android.text.Spanned;
|
|
|
|
import android.text.method.LinkMovementMethod;
|
|
|
|
import android.util.Rational;
|
2016-11-09 09:37:40 -08:00
|
|
|
import android.view.Window;
|
|
|
|
import android.view.WindowManager;
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
import androidx.appcompat.widget.AppCompatTextView;
|
|
|
|
import androidx.core.content.ContextCompat;
|
|
|
|
import androidx.lifecycle.ViewModelProviders;
|
|
|
|
|
2017-02-17 20:27:11 -08:00
|
|
|
import org.greenrobot.eventbus.EventBus;
|
|
|
|
import org.greenrobot.eventbus.Subscribe;
|
|
|
|
import org.greenrobot.eventbus.ThreadMode;
|
2020-04-23 16:20:59 -03:00
|
|
|
import org.thoughtcrime.securesms.components.TooltipPopup;
|
|
|
|
import org.thoughtcrime.securesms.components.webrtc.WebRtcAudioOutput;
|
|
|
|
import org.thoughtcrime.securesms.components.webrtc.WebRtcCallView;
|
|
|
|
import org.thoughtcrime.securesms.components.webrtc.WebRtcCallViewModel;
|
2017-05-19 18:01:40 -07:00
|
|
|
import org.thoughtcrime.securesms.crypto.storage.TextSecureIdentityKeyStore;
|
2017-02-02 18:34:51 -08:00
|
|
|
import org.thoughtcrime.securesms.events.WebRtcViewModel;
|
2020-04-23 16:20:59 -03:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2020-07-06 16:27:03 -04:00
|
|
|
import org.thoughtcrime.securesms.messagerequests.CalleeMustAcceptMessageRequestActivity;
|
2017-11-24 22:00:30 -08:00
|
|
|
import org.thoughtcrime.securesms.permissions.Permissions;
|
2016-11-09 09:37:40 -08:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2020-02-11 19:56:16 -08:00
|
|
|
import org.thoughtcrime.securesms.ringrtc.RemotePeer;
|
2016-11-09 09:37:40 -08:00
|
|
|
import org.thoughtcrime.securesms.service.WebRtcCallService;
|
2020-04-23 16:20:59 -03:00
|
|
|
import org.thoughtcrime.securesms.util.EllapsedTimeFormatter;
|
|
|
|
import org.thoughtcrime.securesms.util.FeatureFlags;
|
2016-11-09 09:37:40 -08:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2020-04-23 16:20:59 -03:00
|
|
|
import org.thoughtcrime.securesms.util.VerifySpan;
|
2016-11-09 09:37:40 -08:00
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
import org.whispersystems.libsignal.IdentityKey;
|
2017-05-19 18:01:40 -07:00
|
|
|
import org.whispersystems.libsignal.SignalProtocolAddress;
|
2020-05-08 14:39:32 -03:00
|
|
|
import org.whispersystems.signalservice.api.messages.calls.HangupMessage;
|
2017-05-19 18:01:40 -07:00
|
|
|
|
|
|
|
import static org.whispersystems.libsignal.SessionCipher.SESSION_LOCK;
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
public class WebRtcCallActivity extends AppCompatActivity {
|
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
|
|
|
|
private static final String TAG = WebRtcCallActivity.class.getSimpleName();
|
|
|
|
|
|
|
|
private static final int STANDARD_DELAY_FINISH = 1000;
|
|
|
|
public static final int BUSY_SIGNAL_DELAY_FINISH = 5500;
|
|
|
|
|
|
|
|
public static final String ANSWER_ACTION = WebRtcCallActivity.class.getCanonicalName() + ".ANSWER_ACTION";
|
|
|
|
public static final String DENY_ACTION = WebRtcCallActivity.class.getCanonicalName() + ".DENY_ACTION";
|
|
|
|
public static final String END_CALL_ACTION = WebRtcCallActivity.class.getCanonicalName() + ".END_CALL_ACTION";
|
|
|
|
|
2019-12-03 16:26:05 -04:00
|
|
|
public static final String EXTRA_ENABLE_VIDEO_IF_AVAILABLE = WebRtcCallActivity.class.getCanonicalName() + ".ENABLE_VIDEO_IF_AVAILABLE";
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
private WebRtcCallView callScreen;
|
|
|
|
private TooltipPopup videoTooltip;
|
|
|
|
private WebRtcCallViewModel viewModel;
|
|
|
|
private boolean enableVideoIfAvailable;
|
2016-11-09 09:37:40 -08:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
2018-08-02 09:25:33 -04:00
|
|
|
Log.i(TAG, "onCreate()");
|
2016-11-09 09:37:40 -08:00
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
|
2017-02-02 19:02:26 -08:00
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
2016-11-09 09:37:40 -08:00
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
requestWindowFeature(Window.FEATURE_NO_TITLE);
|
|
|
|
setContentView(R.layout.webrtc_call_activity);
|
2020-04-23 16:20:59 -03:00
|
|
|
getSupportActionBar().hide();
|
2016-11-09 09:37:40 -08:00
|
|
|
|
|
|
|
setVolumeControlStream(AudioManager.STREAM_VOICE_CALL);
|
|
|
|
|
|
|
|
initializeResources();
|
2020-04-23 16:20:59 -03:00
|
|
|
initializeViewModel();
|
2019-06-27 15:17:14 -04:00
|
|
|
|
|
|
|
processIntent(getIntent());
|
2019-12-03 16:26:05 -04:00
|
|
|
|
|
|
|
enableVideoIfAvailable = getIntent().getBooleanExtra(EXTRA_ENABLE_VIDEO_IF_AVAILABLE, false);
|
|
|
|
getIntent().removeExtra(EXTRA_ENABLE_VIDEO_IF_AVAILABLE);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
2018-08-02 09:25:33 -04:00
|
|
|
Log.i(TAG, "onResume()");
|
2016-11-09 09:37:40 -08:00
|
|
|
super.onResume();
|
|
|
|
initializeScreenshotSecurity();
|
2020-04-23 16:20:59 -03:00
|
|
|
|
|
|
|
if (!EventBus.getDefault().isRegistered(this)) {
|
|
|
|
EventBus.getDefault().register(this);
|
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onNewIntent(Intent intent){
|
2018-08-02 09:25:33 -04:00
|
|
|
Log.i(TAG, "onNewIntent");
|
2020-04-23 16:20:59 -03:00
|
|
|
super.onNewIntent(intent);
|
2019-06-27 15:17:14 -04:00
|
|
|
processIntent(intent);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause() {
|
2018-08-02 09:25:33 -04:00
|
|
|
Log.i(TAG, "onPause");
|
2016-11-09 09:37:40 -08:00
|
|
|
super.onPause();
|
2020-04-23 16:20:59 -03:00
|
|
|
|
|
|
|
if (!isInPipMode()) {
|
|
|
|
EventBus.getDefault().unregister(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
Log.i(TAG, "onStop");
|
|
|
|
super.onStop();
|
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
EventBus.getDefault().unregister(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(Configuration newConfiguration) {
|
|
|
|
super.onConfigurationChanged(newConfiguration);
|
|
|
|
}
|
|
|
|
|
2017-11-24 22:00:30 -08:00
|
|
|
@Override
|
|
|
|
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
|
|
|
Permissions.onRequestPermissionsResult(this, requestCode, permissions, grantResults);
|
|
|
|
}
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
@Override
|
|
|
|
protected void onUserLeaveHint() {
|
2020-07-08 10:21:16 -04:00
|
|
|
enterPipModeIfPossible();
|
|
|
|
}
|
2020-04-23 16:20:59 -03:00
|
|
|
|
2020-07-08 10:21:16 -04:00
|
|
|
@Override
|
|
|
|
public void onBackPressed() {
|
|
|
|
if (!enterPipModeIfPossible()) {
|
|
|
|
super.onBackPressed();
|
2020-04-23 16:20:59 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPictureInPictureModeChanged(boolean isInPictureInPictureMode, Configuration newConfig) {
|
|
|
|
viewModel.setIsInPipMode(isInPictureInPictureMode);
|
|
|
|
}
|
|
|
|
|
2020-07-08 10:21:16 -04:00
|
|
|
private boolean enterPipModeIfPossible() {
|
|
|
|
if (isSystemPipEnabledAndAvailable()) {
|
|
|
|
PictureInPictureParams params = new PictureInPictureParams.Builder()
|
|
|
|
.setAspectRatio(new Rational(9, 16))
|
|
|
|
.build();
|
|
|
|
enterPictureInPictureMode(params);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
private boolean isInPipMode() {
|
2020-07-08 10:21:16 -04:00
|
|
|
return isSystemPipEnabledAndAvailable() && isInPictureInPictureMode();
|
2020-04-23 16:20:59 -03:00
|
|
|
}
|
|
|
|
|
2019-06-27 15:17:14 -04:00
|
|
|
private void processIntent(@NonNull Intent intent) {
|
|
|
|
if (ANSWER_ACTION.equals(intent.getAction())) {
|
2020-05-18 15:48:46 -03:00
|
|
|
viewModel.setRecipient(EventBus.getDefault().getStickyEvent(WebRtcViewModel.class).getRecipient());
|
2020-04-23 16:20:59 -03:00
|
|
|
handleAnswerWithAudio();
|
2019-06-27 15:17:14 -04:00
|
|
|
} else if (DENY_ACTION.equals(intent.getAction())) {
|
|
|
|
handleDenyCall();
|
|
|
|
} else if (END_CALL_ACTION.equals(intent.getAction())) {
|
|
|
|
handleEndCall();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
private void initializeScreenshotSecurity() {
|
2019-03-20 15:09:27 -07:00
|
|
|
if (TextSecurePreferences.isScreenSecurityEnabled(this)) {
|
2016-11-09 09:37:40 -08:00
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
} else {
|
|
|
|
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeResources() {
|
|
|
|
callScreen = ViewUtil.findById(this, R.id.callScreen);
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setControlsListener(new ControlsListener());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeViewModel() {
|
|
|
|
viewModel = ViewModelProviders.of(this).get(WebRtcCallViewModel.class);
|
|
|
|
viewModel.setIsInPipMode(isInPipMode());
|
|
|
|
viewModel.getRemoteVideoEnabled().observe(this,callScreen::setRemoteVideoEnabled);
|
|
|
|
viewModel.getMicrophoneEnabled().observe(this, callScreen::setMicEnabled);
|
|
|
|
viewModel.getCameraDirection().observe(this, callScreen::setCameraDirection);
|
|
|
|
viewModel.getLocalRenderState().observe(this, callScreen::setLocalRenderState);
|
|
|
|
viewModel.getWebRtcControls().observe(this, callScreen::setWebRtcControls);
|
|
|
|
viewModel.getEvents().observe(this, this::handleViewModelEvent);
|
|
|
|
viewModel.getCallTime().observe(this, this::handleCallTime);
|
|
|
|
viewModel.displaySquareCallCard().observe(this, callScreen::showCallCard);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleViewModelEvent(@NonNull WebRtcCallViewModel.Event event) {
|
|
|
|
if (isInPipMode()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case SHOW_VIDEO_TOOLTIP:
|
|
|
|
if (videoTooltip == null) {
|
|
|
|
videoTooltip = TooltipPopup.forTarget(callScreen.getVideoTooltipTarget())
|
|
|
|
.setBackgroundTint(ContextCompat.getColor(this, R.color.core_ultramarine))
|
|
|
|
.setTextColor(ContextCompat.getColor(this, R.color.core_white))
|
|
|
|
.setText(R.string.WebRtcCallActivity__tap_here_to_turn_on_your_video)
|
|
|
|
.setOnDismissListener(() -> viewModel.onDismissedVideoTooltip())
|
|
|
|
.show(TooltipPopup.POSITION_ABOVE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DISMISS_VIDEO_TOOLTIP:
|
|
|
|
if (videoTooltip != null) {
|
|
|
|
videoTooltip.dismiss();
|
|
|
|
videoTooltip = null;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new IllegalArgumentException("Unknown event: " + event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleCallTime(long callTime) {
|
|
|
|
EllapsedTimeFormatter ellapsedTimeFormatter = EllapsedTimeFormatter.fromDurationMillis(callTime);
|
|
|
|
|
|
|
|
if (ellapsedTimeFormatter == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
callScreen.setStatus(getString(R.string.WebRtcCallActivity__signal_s, ellapsedTimeFormatter.toString()));
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2020-05-21 16:57:21 -03:00
|
|
|
private void handleSetAudioHandset() {
|
2019-12-18 13:57:33 -04:00
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_SET_AUDIO_SPEAKER);
|
|
|
|
startService(intent);
|
|
|
|
}
|
|
|
|
|
2020-05-21 16:57:21 -03:00
|
|
|
private void handleSetAudioSpeaker() {
|
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_SET_AUDIO_SPEAKER);
|
|
|
|
intent.putExtra(WebRtcCallService.EXTRA_SPEAKER, true);
|
|
|
|
startService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleSetAudioBluetooth() {
|
2019-12-18 13:57:33 -04:00
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_SET_AUDIO_BLUETOOTH);
|
2020-05-21 16:57:21 -03:00
|
|
|
intent.putExtra(WebRtcCallService.EXTRA_BLUETOOTH, true);
|
2019-12-18 13:57:33 -04:00
|
|
|
startService(intent);
|
|
|
|
}
|
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
private void handleSetMuteAudio(boolean enabled) {
|
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_SET_MUTE_AUDIO);
|
|
|
|
intent.putExtra(WebRtcCallService.EXTRA_MUTE, enabled);
|
|
|
|
startService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleSetMuteVideo(boolean muted) {
|
2020-04-23 16:20:59 -03:00
|
|
|
Recipient recipient = viewModel.getRecipient().get();
|
|
|
|
|
|
|
|
if (!recipient.equals(Recipient.UNKNOWN)) {
|
|
|
|
String recipientDisplayName = recipient.getDisplayName(this);
|
|
|
|
|
|
|
|
Permissions.with(this)
|
|
|
|
.request(Manifest.permission.CAMERA)
|
|
|
|
.ifNecessary()
|
|
|
|
.withRationaleDialog(getString(R.string.WebRtcCallActivity__to_call_s_signal_needs_access_to_your_camera, recipientDisplayName), R.drawable.ic_video_solid_24_tinted)
|
|
|
|
.withPermanentDenialDialog(getString(R.string.WebRtcCallActivity__to_call_s_signal_needs_access_to_your_camera, recipientDisplayName))
|
|
|
|
.onAllGranted(() -> {
|
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_SET_ENABLE_VIDEO);
|
|
|
|
intent.putExtra(WebRtcCallService.EXTRA_ENABLE, !muted);
|
|
|
|
startService(intent);
|
|
|
|
})
|
|
|
|
.execute();
|
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2018-04-25 11:00:03 -07:00
|
|
|
private void handleFlipCamera() {
|
2018-03-23 20:31:03 +01:00
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
2018-04-25 11:00:03 -07:00
|
|
|
intent.setAction(WebRtcCallService.ACTION_FLIP_CAMERA);
|
2018-03-23 20:31:03 +01:00
|
|
|
startService(intent);
|
|
|
|
}
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
private void handleAnswerWithAudio() {
|
|
|
|
Recipient recipient = viewModel.getRecipient().get();
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
if (!recipient.equals(Recipient.UNKNOWN)) {
|
|
|
|
Permissions.with(this)
|
|
|
|
.request(Manifest.permission.RECORD_AUDIO)
|
|
|
|
.ifNecessary()
|
|
|
|
.withRationaleDialog(getString(R.string.WebRtcCallActivity_to_answer_the_call_from_s_give_signal_access_to_your_microphone, recipient.getDisplayName(this)),
|
|
|
|
R.drawable.ic_mic_solid_24)
|
|
|
|
.withPermanentDenialDialog(getString(R.string.WebRtcCallActivity_signal_requires_microphone_and_camera_permissions_in_order_to_make_or_receive_calls))
|
|
|
|
.onAllGranted(() -> {
|
|
|
|
callScreen.setRecipient(recipient);
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_answering));
|
|
|
|
|
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_ACCEPT_CALL);
|
|
|
|
startService(intent);
|
|
|
|
})
|
|
|
|
.onAnyDenied(this::handleDenyCall)
|
|
|
|
.execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleAnswerWithVideo() {
|
|
|
|
Recipient recipient = viewModel.getRecipient().get();
|
|
|
|
|
|
|
|
if (!recipient.equals(Recipient.UNKNOWN)) {
|
2017-11-24 22:00:30 -08:00
|
|
|
Permissions.with(this)
|
|
|
|
.request(Manifest.permission.RECORD_AUDIO, Manifest.permission.CAMERA)
|
|
|
|
.ifNecessary()
|
2020-04-23 16:20:59 -03:00
|
|
|
.withRationaleDialog(getString(R.string.WebRtcCallActivity_to_answer_the_call_from_s_give_signal_access_to_your_microphone, recipient.getDisplayName(this)),
|
|
|
|
R.drawable.ic_mic_solid_24, R.drawable.ic_video_solid_24_tinted)
|
2017-11-24 22:00:30 -08:00
|
|
|
.withPermanentDenialDialog(getString(R.string.WebRtcCallActivity_signal_requires_microphone_and_camera_permissions_in_order_to_make_or_receive_calls))
|
|
|
|
.onAllGranted(() -> {
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(recipient);
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_answering));
|
2017-11-24 22:00:30 -08:00
|
|
|
|
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
2020-02-11 19:56:16 -08:00
|
|
|
intent.setAction(WebRtcCallService.ACTION_ACCEPT_CALL);
|
2020-04-23 16:20:59 -03:00
|
|
|
intent.putExtra(WebRtcCallService.EXTRA_ANSWER_WITH_VIDEO, true);
|
2017-11-24 22:00:30 -08:00
|
|
|
startService(intent);
|
2020-04-23 16:20:59 -03:00
|
|
|
|
|
|
|
handleSetMuteVideo(false);
|
2017-11-24 22:00:30 -08:00
|
|
|
})
|
|
|
|
.onAnyDenied(this::handleDenyCall)
|
|
|
|
.execute();
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleDenyCall() {
|
2020-04-23 16:20:59 -03:00
|
|
|
Recipient recipient = viewModel.getRecipient().get();
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
if (!recipient.equals(Recipient.UNKNOWN)) {
|
2016-11-09 09:37:40 -08:00
|
|
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_DENY_CALL);
|
|
|
|
startService(intent);
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(recipient);
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_ending_call));
|
2016-11-09 09:37:40 -08:00
|
|
|
delayedFinish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleEndCall() {
|
2018-08-02 09:25:33 -04:00
|
|
|
Log.i(TAG, "Hangup pressed, handling termination now...");
|
2016-11-09 09:37:40 -08:00
|
|
|
Intent intent = new Intent(WebRtcCallActivity.this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_LOCAL_HANGUP);
|
|
|
|
startService(intent);
|
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleIncomingCall(@NonNull WebRtcViewModel event) {
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleOutgoingCall(@NonNull WebRtcViewModel event) {
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
|
|
|
callScreen.setStatus(getString(R.string.WebRtcCallActivity__calling));
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2020-05-08 14:39:32 -03:00
|
|
|
private void handleTerminate(@NonNull Recipient recipient, @NonNull HangupMessage.Type hangupType) {
|
|
|
|
Log.i(TAG, "handleTerminate called: " + hangupType.name());
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(recipient);
|
2020-05-08 14:39:32 -03:00
|
|
|
callScreen.setStatusFromHangupType(hangupType);
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
EventBus.getDefault().removeStickyEvent(WebRtcViewModel.class);
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-07-06 16:27:03 -04:00
|
|
|
if (hangupType == HangupMessage.Type.NEED_PERMISSION) {
|
|
|
|
startActivity(CalleeMustAcceptMessageRequestActivity.createIntent(this, recipient.getId()));
|
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
delayedFinish();
|
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleCallRinging(@NonNull WebRtcViewModel event) {
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_ringing));
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleCallBusy(@NonNull WebRtcViewModel event) {
|
2020-02-11 19:56:16 -08:00
|
|
|
EventBus.getDefault().removeStickyEvent(WebRtcViewModel.class);
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_busy));
|
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
delayedFinish(BUSY_SIGNAL_DELAY_FINISH);
|
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleCallConnected(@NonNull WebRtcViewModel event) {
|
2016-11-09 09:37:40 -08:00
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_IGNORE_CHEEK_PRESSES);
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleRecipientUnavailable(@NonNull WebRtcViewModel event) {
|
2020-02-11 19:56:16 -08:00
|
|
|
EventBus.getDefault().removeStickyEvent(WebRtcViewModel.class);
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_recipient_unavailable));
|
2016-11-09 09:37:40 -08:00
|
|
|
delayedFinish();
|
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleServerFailure(@NonNull WebRtcViewModel event) {
|
2020-02-11 19:56:16 -08:00
|
|
|
EventBus.getDefault().removeStickyEvent(WebRtcViewModel.class);
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setRecipient(event.getRecipient());
|
|
|
|
callScreen.setStatus(getString(R.string.RedPhone_network_failed));
|
2016-11-09 09:37:40 -08:00
|
|
|
delayedFinish();
|
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleNoSuchUser(final @NonNull WebRtcViewModel event) {
|
2016-11-09 09:37:40 -08:00
|
|
|
if (isFinishing()) return; // XXX Stuart added this check above, not sure why, so I'm repeating in ignorance. - moxie
|
|
|
|
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
|
|
|
|
dialog.setTitle(R.string.RedPhone_number_not_registered);
|
|
|
|
dialog.setIconAttribute(R.attr.dialog_alert_icon);
|
|
|
|
dialog.setMessage(R.string.RedPhone_the_number_you_dialed_does_not_support_secure_voice);
|
|
|
|
dialog.setCancelable(true);
|
|
|
|
dialog.setPositiveButton(R.string.RedPhone_got_it, new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2020-05-08 14:39:32 -03:00
|
|
|
WebRtcCallActivity.this.handleTerminate(event.getRecipient(), HangupMessage.Type.NORMAL);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
|
|
|
|
@Override
|
|
|
|
public void onCancel(DialogInterface dialog) {
|
2020-05-08 14:39:32 -03:00
|
|
|
WebRtcCallActivity.this.handleTerminate(event.getRecipient(), HangupMessage.Type.NORMAL);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
dialog.show();
|
|
|
|
}
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
private void handleUntrustedIdentity(@NonNull WebRtcViewModel event) {
|
2020-04-23 16:20:59 -03:00
|
|
|
final IdentityKey theirKey = event.getIdentityKey();
|
|
|
|
final Recipient recipient = event.getRecipient();
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
if (theirKey == null) {
|
2020-05-08 14:39:32 -03:00
|
|
|
handleTerminate(recipient, HangupMessage.Type.NORMAL);
|
2020-04-23 16:20:59 -03:00
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
String name = recipient.getDisplayName(this);
|
|
|
|
String introduction = getString(R.string.WebRtcCallScreen_new_safety_numbers, name, name);
|
|
|
|
SpannableString spannableString = new SpannableString(introduction + " " + getString(R.string.WebRtcCallScreen_you_may_wish_to_verify_this_contact));
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
spannableString.setSpan(new VerifySpan(this, recipient.getId(), theirKey), introduction.length() + 1, spannableString.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
|
|
|
|
AppCompatTextView untrustedIdentityExplanation = new AppCompatTextView(this);
|
|
|
|
untrustedIdentityExplanation.setText(spannableString);
|
|
|
|
untrustedIdentityExplanation.setMovementMethod(LinkMovementMethod.getInstance());
|
|
|
|
|
|
|
|
new AlertDialog.Builder(this)
|
|
|
|
.setView(untrustedIdentityExplanation)
|
|
|
|
.setPositiveButton(R.string.WebRtcCallScreen_accept, (d, w) -> {
|
|
|
|
synchronized (SESSION_LOCK) {
|
|
|
|
TextSecureIdentityKeyStore identityKeyStore = new TextSecureIdentityKeyStore(WebRtcCallActivity.this);
|
|
|
|
identityKeyStore.saveIdentity(new SignalProtocolAddress(recipient.requireServiceId(), 1), theirKey, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
d.dismiss();
|
|
|
|
|
|
|
|
Intent intent = new Intent(WebRtcCallActivity.this, WebRtcCallService.class);
|
|
|
|
intent.setAction(WebRtcCallService.ACTION_OUTGOING_CALL)
|
|
|
|
.putExtra(WebRtcCallService.EXTRA_REMOTE_PEER, new RemotePeer(recipient.getId()));
|
|
|
|
|
|
|
|
startService(intent);
|
|
|
|
})
|
|
|
|
.setNegativeButton(R.string.WebRtcCallScreen_end_call, (d, w) -> {
|
|
|
|
d.dismiss();
|
2020-05-08 14:39:32 -03:00
|
|
|
handleTerminate(recipient, HangupMessage.Type.NORMAL);
|
2020-04-23 16:20:59 -03:00
|
|
|
})
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
|
2020-07-08 10:21:16 -04:00
|
|
|
private boolean isSystemPipEnabledAndAvailable() {
|
2020-04-23 16:20:59 -03:00
|
|
|
return Build.VERSION.SDK_INT >= 26 &&
|
|
|
|
getPackageManager().hasSystemFeature(PackageManager.FEATURE_PICTURE_IN_PICTURE);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void delayedFinish() {
|
|
|
|
delayedFinish(STANDARD_DELAY_FINISH);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void delayedFinish(int delayMillis) {
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.postDelayed(WebRtcCallActivity.this::finish, delayMillis);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2017-02-17 20:27:11 -08:00
|
|
|
@Subscribe(sticky = true, threadMode = ThreadMode.MAIN)
|
2017-02-02 18:34:51 -08:00
|
|
|
public void onEventMainThread(final WebRtcViewModel event) {
|
2018-08-02 09:25:33 -04:00
|
|
|
Log.i(TAG, "Got message from service: " + event);
|
2016-11-09 09:37:40 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
viewModel.setRecipient(event.getRecipient());
|
|
|
|
|
2017-02-02 18:34:51 -08:00
|
|
|
switch (event.getState()) {
|
2020-07-06 16:27:03 -04:00
|
|
|
case CALL_CONNECTED: handleCallConnected(event); break;
|
|
|
|
case NETWORK_FAILURE: handleServerFailure(event); break;
|
|
|
|
case CALL_RINGING: handleCallRinging(event); break;
|
|
|
|
case CALL_DISCONNECTED: handleTerminate(event.getRecipient(), HangupMessage.Type.NORMAL); break;
|
|
|
|
case CALL_ACCEPTED_ELSEWHERE: handleTerminate(event.getRecipient(), HangupMessage.Type.ACCEPTED); break;
|
|
|
|
case CALL_DECLINED_ELSEWHERE: handleTerminate(event.getRecipient(), HangupMessage.Type.DECLINED); break;
|
|
|
|
case CALL_ONGOING_ELSEWHERE: handleTerminate(event.getRecipient(), HangupMessage.Type.BUSY); break;
|
|
|
|
case CALL_NEEDS_PERMISSION: handleTerminate(event.getRecipient(), HangupMessage.Type.NEED_PERMISSION); break;
|
|
|
|
case NO_SUCH_USER: handleNoSuchUser(event); break;
|
|
|
|
case RECIPIENT_UNAVAILABLE: handleRecipientUnavailable(event); break;
|
|
|
|
case CALL_INCOMING: handleIncomingCall(event); break;
|
|
|
|
case CALL_OUTGOING: handleOutgoingCall(event); break;
|
|
|
|
case CALL_BUSY: handleCallBusy(event); break;
|
|
|
|
case UNTRUSTED_IDENTITY: handleUntrustedIdentity(event); break;
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
2017-02-02 18:34:51 -08:00
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
callScreen.setLocalRenderer(event.getLocalRenderer());
|
|
|
|
callScreen.setRemoteRenderer(event.getRemoteRenderer());
|
|
|
|
|
2020-06-12 09:38:26 -04:00
|
|
|
boolean enableVideo = event.getLocalCameraState().getCameraCount() > 0 && enableVideoIfAvailable;
|
2019-12-03 16:26:05 -04:00
|
|
|
|
2020-06-12 09:38:26 -04:00
|
|
|
viewModel.updateFromWebRtcViewModel(event, enableVideo);
|
|
|
|
|
|
|
|
if (enableVideo) {
|
2019-12-03 16:26:05 -04:00
|
|
|
enableVideoIfAvailable = false;
|
|
|
|
handleSetMuteVideo(false);
|
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2020-04-23 16:20:59 -03:00
|
|
|
private final class ControlsListener implements WebRtcCallView.ControlsListener {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onControlsFadeOut() {
|
|
|
|
if (videoTooltip != null) {
|
|
|
|
videoTooltip.dismiss();
|
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onAudioOutputChanged(@NonNull WebRtcAudioOutput audioOutput) {
|
|
|
|
switch (audioOutput) {
|
|
|
|
case HANDSET:
|
2020-05-21 16:57:21 -03:00
|
|
|
handleSetAudioHandset();
|
2020-04-23 16:20:59 -03:00
|
|
|
break;
|
|
|
|
case HEADSET:
|
2020-05-21 16:57:21 -03:00
|
|
|
handleSetAudioBluetooth();
|
2020-04-23 16:20:59 -03:00
|
|
|
break;
|
|
|
|
case SPEAKER:
|
2020-05-21 16:57:21 -03:00
|
|
|
handleSetAudioSpeaker();
|
2020-04-23 16:20:59 -03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new IllegalStateException("Unknown output: " + audioOutput);
|
|
|
|
}
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onVideoChanged(boolean isVideoEnabled) {
|
|
|
|
handleSetMuteVideo(!isVideoEnabled);
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
2018-03-23 20:31:03 +01:00
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onMicChanged(boolean isMicEnabled) {
|
|
|
|
handleSetMuteAudio(!isMicEnabled);
|
2018-04-25 11:00:03 -07:00
|
|
|
}
|
2018-03-23 20:31:03 +01:00
|
|
|
|
2017-03-04 15:48:10 -08:00
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onCameraDirectionChanged() {
|
|
|
|
handleFlipCamera();
|
2017-03-04 15:48:10 -08:00
|
|
|
}
|
2017-02-03 12:00:00 -08:00
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onEndCallPressed() {
|
|
|
|
handleEndCall();
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onDenyCallPressed() {
|
|
|
|
handleDenyCall();
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-23 16:20:59 -03:00
|
|
|
public void onAcceptCallWithVoiceOnlyPressed() {
|
|
|
|
handleAnswerWithAudio();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAcceptCallPressed() {
|
|
|
|
if (viewModel.isAnswerWithVideoAvailable()) {
|
|
|
|
handleAnswerWithVideo();
|
|
|
|
} else {
|
|
|
|
handleAnswerWithAudio();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDownCaretPressed() {
|
|
|
|
|
2016-11-09 09:37:40 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 19:56:16 -08:00
|
|
|
}
|