package eu.siacs.conversations.ui; import android.content.Intent; import android.databinding.DataBindingUtil; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.WindowManager; import java.lang.ref.WeakReference; import eu.siacs.conversations.Config; import eu.siacs.conversations.R; import eu.siacs.conversations.databinding.ActivityRtpSessionBinding; import eu.siacs.conversations.entities.Account; import eu.siacs.conversations.entities.Contact; import eu.siacs.conversations.services.XmppConnectionService; import eu.siacs.conversations.xmpp.jingle.AbstractJingleConnection; import eu.siacs.conversations.xmpp.jingle.JingleRtpConnection; import eu.siacs.conversations.xmpp.jingle.RtpEndUserState; import rocks.xmpp.addr.Jid; public class RtpSessionActivity extends XmppActivity implements XmppConnectionService.OnJingleRtpConnectionUpdate { public static final String EXTRA_WITH = "with"; public static final String EXTRA_SESSION_ID = "session_id"; public static final String ACTION_ACCEPT = "accept"; private WeakReference rtpConnectionReference; private ActivityRtpSessionBinding binding; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON | WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED | WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON) ; Log.d(Config.LOGTAG, "RtpSessionActivity.onCreate()"); this.binding = DataBindingUtil.setContentView(this, R.layout.activity_rtp_session); this.binding.rejectCall.setOnClickListener(this::rejectCall); this.binding.endCall.setOnClickListener(this::endCall); this.binding.acceptCall.setOnClickListener(this::acceptCall); } @Override public void onStart() { super.onStart(); Log.d(Config.LOGTAG, "RtpSessionActivity.onStart()"); } private void endCall(View view) { requireRtpConnection().endCall(); } private void rejectCall(View view) { requireRtpConnection().rejectCall(); finish(); } private void acceptCall(View view) { requireRtpConnection().acceptCall(); } @Override protected void refreshUiReal() { } @Override public void onNewIntent(final Intent intent) { super.onNewIntent(intent); if (ACTION_ACCEPT.equals(intent.getAction())) { Log.d(Config.LOGTAG,"accepting through onNewIntent()"); requireRtpConnection().acceptCall(); } } @Override void onBackendConnected() { final Intent intent = getIntent(); final Account account = extractAccount(intent); final String with = intent.getStringExtra(EXTRA_WITH); final String sessionId = intent.getStringExtra(EXTRA_SESSION_ID); if (with != null && sessionId != null) { final WeakReference reference = xmppConnectionService.getJingleConnectionManager() .findJingleRtpConnection(account, Jid.ofEscaped(with), sessionId); if (reference == null || reference.get() == null) { finish(); return; } this.rtpConnectionReference = reference; binding.with.setText(getWith().getDisplayName()); final RtpEndUserState currentState = requireRtpConnection().getEndUserState(); final String action = intent.getAction(); updateStateDisplay(currentState); updateButtonConfiguration(currentState); if (ACTION_ACCEPT.equals(action)) { Log.d(Config.LOGTAG,"intent action was accept"); requireRtpConnection().acceptCall(); } } } private void updateStateDisplay(final RtpEndUserState state) { switch (state) { case INCOMING_CALL: binding.status.setText(R.string.rtp_state_incoming_call); break; case CONNECTING: binding.status.setText(R.string.rtp_state_connecting); break; case CONNECTED: binding.status.setText(R.string.rtp_state_connected); break; case ACCEPTING_CALL: binding.status.setText(R.string.rtp_state_accepting_call); break; case ENDING_CALL: binding.status.setText(R.string.rtp_state_ending_call); break; } } private void updateButtonConfiguration(final RtpEndUserState state) { if (state == RtpEndUserState.INCOMING_CALL) { this.binding.rejectCall.show(); this.binding.endCall.hide(); this.binding.acceptCall.show(); } else if (state == RtpEndUserState.ENDING_CALL) { this.binding.rejectCall.hide(); this.binding.endCall.hide(); this.binding.acceptCall.hide(); } else { this.binding.rejectCall.hide(); this.binding.endCall.show(); this.binding.acceptCall.hide(); } } private Contact getWith() { final AbstractJingleConnection.Id id = requireRtpConnection().getId(); final Account account = id.account; return account.getRoster().getContact(id.with); } private JingleRtpConnection requireRtpConnection() { final JingleRtpConnection connection = this.rtpConnectionReference != null ? this.rtpConnectionReference.get() : null; if (connection == null) { throw new IllegalStateException("No RTP connection found"); } return connection; } @Override public void onJingleRtpConnectionUpdate(Account account, Jid with, RtpEndUserState state) { final AbstractJingleConnection.Id id = requireRtpConnection().getId(); if (account == id.account && id.with.equals(with)) { if (state == RtpEndUserState.ENDED) { finish(); return; } runOnUiThread(() -> { updateStateDisplay(state); updateButtonConfiguration(state); }); } else { Log.d(Config.LOGTAG, "received update for other rtp session"); } } }