mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-30 21:45:20 +00:00
404 lines
15 KiB
Java
404 lines
15 KiB
Java
|
/*
|
||
|
* 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;
|
||
|
|
||
|
import android.app.Activity;
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.DialogInterface;
|
||
|
import android.content.DialogInterface.OnClickListener;
|
||
|
import android.content.Intent;
|
||
|
import android.content.IntentFilter;
|
||
|
import android.content.res.Configuration;
|
||
|
import android.media.AudioManager;
|
||
|
import android.os.Build;
|
||
|
import android.os.Bundle;
|
||
|
import android.support.annotation.NonNull;
|
||
|
import android.support.v7.app.AlertDialog;
|
||
|
import android.util.Log;
|
||
|
import android.view.View;
|
||
|
import android.view.Window;
|
||
|
import android.view.WindowManager;
|
||
|
|
||
|
import org.thoughtcrime.redphone.util.AudioUtils;
|
||
|
import org.thoughtcrime.securesms.components.webrtc.WebRtcCallControls;
|
||
|
import org.thoughtcrime.securesms.components.webrtc.WebRtcCallScreen;
|
||
|
import org.thoughtcrime.securesms.components.webrtc.WebRtcIncomingCallOverlay;
|
||
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
||
|
import org.thoughtcrime.securesms.database.IdentityDatabase;
|
||
|
import org.thoughtcrime.securesms.events.WebRtcCallEvent;
|
||
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
||
|
import org.thoughtcrime.securesms.service.WebRtcCallService;
|
||
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
||
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
||
|
import org.whispersystems.libsignal.IdentityKey;
|
||
|
|
||
|
import de.greenrobot.event.EventBus;
|
||
|
|
||
|
public class WebRtcCallActivity extends Activity {
|
||
|
|
||
|
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";
|
||
|
|
||
|
private WebRtcCallScreen callScreen;
|
||
|
private BroadcastReceiver bluetoothStateReceiver;
|
||
|
|
||
|
@Override
|
||
|
public void onCreate(Bundle savedInstanceState) {
|
||
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
|
||
|
super.onCreate(savedInstanceState);
|
||
|
|
||
|
requestWindowFeature(Window.FEATURE_NO_TITLE);
|
||
|
setContentView(R.layout.webrtc_call_activity);
|
||
|
|
||
|
setVolumeControlStream(AudioManager.STREAM_VOICE_CALL);
|
||
|
|
||
|
initializeResources();
|
||
|
}
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void onResume() {
|
||
|
super.onResume();
|
||
|
|
||
|
initializeScreenshotSecurity();
|
||
|
EventBus.getDefault().registerSticky(this);
|
||
|
registerBluetoothReceiver();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onNewIntent(Intent intent){
|
||
|
if (ANSWER_ACTION.equals(intent.getAction())) {
|
||
|
handleAnswerCall();
|
||
|
} else if (DENY_ACTION.equals(intent.getAction())) {
|
||
|
handleDenyCall();
|
||
|
} else if (END_CALL_ACTION.equals(intent.getAction())) {
|
||
|
handleEndCall();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onPause() {
|
||
|
super.onPause();
|
||
|
|
||
|
EventBus.getDefault().unregister(this);
|
||
|
unregisterReceiver(bluetoothStateReceiver);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onConfigurationChanged(Configuration newConfiguration) {
|
||
|
super.onConfigurationChanged(newConfiguration);
|
||
|
}
|
||
|
|
||
|
private void initializeScreenshotSecurity() {
|
||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH &&
|
||
|
TextSecurePreferences.isScreenSecurityEnabled(this))
|
||
|
{
|
||
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
||
|
} else {
|
||
|
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void initializeResources() {
|
||
|
callScreen = ViewUtil.findById(this, R.id.callScreen);
|
||
|
callScreen.setHangupButtonListener(new HangupButtonListener());
|
||
|
callScreen.setIncomingCallActionListener(new IncomingCallActionListener());
|
||
|
callScreen.setAudioMuteButtonListener(new AudioMuteButtonListener());
|
||
|
callScreen.setVideoMuteButtonListener(new VideoMuteButtonListener());
|
||
|
callScreen.setAudioButtonListener(new AudioButtonListener());
|
||
|
}
|
||
|
|
||
|
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) {
|
||
|
callScreen.setLocalVideoEnabled(!muted);
|
||
|
|
||
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
||
|
intent.setAction(WebRtcCallService.ACTION_SET_MUTE_VIDEO);
|
||
|
intent.putExtra(WebRtcCallService.EXTRA_MUTE, muted);
|
||
|
startService(intent);
|
||
|
}
|
||
|
|
||
|
private void handleAnswerCall() {
|
||
|
WebRtcCallEvent event = EventBus.getDefault().getStickyEvent(WebRtcCallEvent.class);
|
||
|
|
||
|
if (event != null) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_answering));
|
||
|
|
||
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
||
|
intent.setAction(WebRtcCallService.ACTION_ANSWER_CALL);
|
||
|
startService(intent);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void handleDenyCall() {
|
||
|
WebRtcCallEvent event = EventBus.getDefault().getStickyEvent(WebRtcCallEvent.class);
|
||
|
|
||
|
if (event != null) {
|
||
|
Intent intent = new Intent(this, WebRtcCallService.class);
|
||
|
intent.setAction(WebRtcCallService.ACTION_DENY_CALL);
|
||
|
startService(intent);
|
||
|
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_ending_call));
|
||
|
delayedFinish();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void handleEndCall() {
|
||
|
Log.w(TAG, "Hangup pressed, handling termination now...");
|
||
|
Intent intent = new Intent(WebRtcCallActivity.this, WebRtcCallService.class);
|
||
|
intent.setAction(WebRtcCallService.ACTION_LOCAL_HANGUP);
|
||
|
startService(intent);
|
||
|
|
||
|
WebRtcCallEvent event = EventBus.getDefault().getStickyEvent(WebRtcCallEvent.class);
|
||
|
|
||
|
if (event != null) {
|
||
|
WebRtcCallActivity.this.handleTerminate(event.getRecipient());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void handleIncomingCall(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setIncomingCall(event.getRecipient());
|
||
|
}
|
||
|
|
||
|
private void handleOutgoingCall(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_dialing));
|
||
|
}
|
||
|
|
||
|
private void handleTerminate(@NonNull Recipient recipient /*, int terminationType */) {
|
||
|
Log.w(TAG, "handleTerminate called");
|
||
|
|
||
|
callScreen.setActiveCall(recipient, getString(R.string.RedPhone_ending_call));
|
||
|
EventBus.getDefault().removeStickyEvent(WebRtcCallEvent.class);
|
||
|
|
||
|
delayedFinish();
|
||
|
}
|
||
|
|
||
|
private void handleCallRinging(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_ringing));
|
||
|
}
|
||
|
|
||
|
private void handleCallBusy(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_busy));
|
||
|
|
||
|
delayedFinish(BUSY_SIGNAL_DELAY_FINISH);
|
||
|
}
|
||
|
|
||
|
private void handleCallConnected(@NonNull WebRtcCallEvent event) {
|
||
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_IGNORE_CHEEK_PRESSES);
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_connected), "");
|
||
|
}
|
||
|
|
||
|
private void handleConnectingToInitiator(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_connecting));
|
||
|
}
|
||
|
|
||
|
private void handleHandshakeFailed(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_handshake_failed));
|
||
|
delayedFinish();
|
||
|
}
|
||
|
|
||
|
private void handleRecipientUnavailable(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_recipient_unavailable));
|
||
|
delayedFinish();
|
||
|
}
|
||
|
|
||
|
private void handlePerformingHandshake(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_performing_handshake));
|
||
|
}
|
||
|
|
||
|
private void handleServerFailure(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_network_failed));
|
||
|
delayedFinish();
|
||
|
}
|
||
|
|
||
|
private void handleLoginFailed(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setActiveCall(event.getRecipient(), getString(R.string.RedPhone_login_failed));
|
||
|
delayedFinish();
|
||
|
}
|
||
|
|
||
|
private void handleNoSuchUser(final @NonNull WebRtcCallEvent event) {
|
||
|
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) {
|
||
|
WebRtcCallActivity.this.handleTerminate(event.getRecipient());
|
||
|
}
|
||
|
});
|
||
|
dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
|
||
|
@Override
|
||
|
public void onCancel(DialogInterface dialog) {
|
||
|
WebRtcCallActivity.this.handleTerminate(event.getRecipient());
|
||
|
}
|
||
|
});
|
||
|
dialog.show();
|
||
|
}
|
||
|
|
||
|
private void handleRemoteVideoDisabled(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setRemoteVideoEnabled(false);
|
||
|
}
|
||
|
|
||
|
private void handleRemoteVideoEnabled(@NonNull WebRtcCallEvent event) {
|
||
|
callScreen.setRemoteVideoEnabled(true);
|
||
|
}
|
||
|
|
||
|
private void handleUntrustedIdentity(@NonNull WebRtcCallEvent event) {
|
||
|
final IdentityKey theirIdentity = (IdentityKey)event.getExtra();
|
||
|
final Recipient recipient = event.getRecipient();
|
||
|
|
||
|
callScreen.setUntrustedIdentity(recipient, theirIdentity);
|
||
|
callScreen.setAcceptIdentityListener(new View.OnClickListener() {
|
||
|
@Override
|
||
|
public void onClick(View v) {
|
||
|
IdentityDatabase identityDatabase = DatabaseFactory.getIdentityDatabase(WebRtcCallActivity.this);
|
||
|
identityDatabase.saveIdentity(recipient.getRecipientId(), theirIdentity);
|
||
|
|
||
|
Intent intent = new Intent(WebRtcCallActivity.this, WebRtcCallService.class);
|
||
|
intent.putExtra(WebRtcCallService.EXTRA_REMOTE_NUMBER, recipient.getNumber());
|
||
|
intent.setAction(WebRtcCallService.ACTION_OUTGOING_CALL);
|
||
|
startService(intent);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
callScreen.setCancelIdentityButton(new View.OnClickListener() {
|
||
|
@Override
|
||
|
public void onClick(View v) {
|
||
|
handleTerminate(recipient);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
private void delayedFinish() {
|
||
|
delayedFinish(STANDARD_DELAY_FINISH);
|
||
|
}
|
||
|
|
||
|
private void delayedFinish(int delayMillis) {
|
||
|
callScreen.postDelayed(new Runnable() {
|
||
|
public void run() {
|
||
|
WebRtcCallActivity.this.finish();
|
||
|
}
|
||
|
}, delayMillis);
|
||
|
}
|
||
|
|
||
|
@SuppressWarnings("unused")
|
||
|
public void onEventMainThread(final WebRtcCallEvent event) {
|
||
|
Log.w(TAG, "Got message from service: " + event.getType());
|
||
|
|
||
|
switch (event.getType()) {
|
||
|
case CALL_CONNECTED: handleCallConnected(event); break;
|
||
|
case SERVER_FAILURE: handleServerFailure(event); break;
|
||
|
case PERFORMING_HANDSHAKE: handlePerformingHandshake(event); break;
|
||
|
case HANDSHAKE_FAILED: handleHandshakeFailed(event); break;
|
||
|
case CONNECTING_TO_INITIATOR: handleConnectingToInitiator(event); break;
|
||
|
case CALL_RINGING: handleCallRinging(event); break;
|
||
|
case CALL_DISCONNECTED: handleTerminate(event.getRecipient()); break;
|
||
|
case NO_SUCH_USER: handleNoSuchUser(event); break;
|
||
|
case RECIPIENT_UNAVAILABLE: handleRecipientUnavailable(event); break;
|
||
|
case INCOMING_CALL: handleIncomingCall(event); break;
|
||
|
case OUTGOING_CALL: handleOutgoingCall(event); break;
|
||
|
case CALL_BUSY: handleCallBusy(event); break;
|
||
|
case LOGIN_FAILED: handleLoginFailed(event); break;
|
||
|
case REMOTE_VIDEO_DISABLED: handleRemoteVideoDisabled(event); break;
|
||
|
case REMOTE_VIDEO_ENABLED: handleRemoteVideoEnabled(event); break;
|
||
|
case UNTRUSTED_IDENTITY: handleUntrustedIdentity(event); break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private class HangupButtonListener implements WebRtcCallScreen.HangupButtonListener {
|
||
|
public void onClick() {
|
||
|
handleEndCall();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private class AudioMuteButtonListener implements WebRtcCallControls.MuteButtonListener {
|
||
|
@Override
|
||
|
public void onToggle(boolean isMuted) {
|
||
|
WebRtcCallActivity.this.handleSetMuteAudio(isMuted);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private class VideoMuteButtonListener implements WebRtcCallControls.MuteButtonListener {
|
||
|
@Override
|
||
|
public void onToggle(boolean isMuted) {
|
||
|
WebRtcCallActivity.this.handleSetMuteVideo(isMuted);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void registerBluetoothReceiver() {
|
||
|
IntentFilter filter = new IntentFilter();
|
||
|
filter.addAction(AudioUtils.getScoUpdateAction());
|
||
|
bluetoothStateReceiver = new BroadcastReceiver() {
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
callScreen.notifyBluetoothChange();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
registerReceiver(bluetoothStateReceiver, filter);
|
||
|
callScreen.notifyBluetoothChange();
|
||
|
}
|
||
|
|
||
|
private class AudioButtonListener implements WebRtcCallControls.AudioButtonListener {
|
||
|
@Override
|
||
|
public void onAudioChange(AudioUtils.AudioMode mode) {
|
||
|
switch(mode) {
|
||
|
case DEFAULT:
|
||
|
AudioUtils.enableDefaultRouting(WebRtcCallActivity.this);
|
||
|
break;
|
||
|
case SPEAKER:
|
||
|
AudioUtils.enableSpeakerphoneRouting(WebRtcCallActivity.this);
|
||
|
break;
|
||
|
case HEADSET:
|
||
|
AudioUtils.enableBluetoothRouting(WebRtcCallActivity.this);
|
||
|
break;
|
||
|
default:
|
||
|
throw new IllegalStateException("Audio mode " + mode + " is not supported.");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private class IncomingCallActionListener implements WebRtcIncomingCallOverlay.IncomingCallActionListener {
|
||
|
@Override
|
||
|
public void onAcceptClick() {
|
||
|
WebRtcCallActivity.this.handleAnswerCall();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onDenyClick() {
|
||
|
WebRtcCallActivity.this.handleDenyCall();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|