conversations-classic/src/main/java/eu/siacs/conversations/ui/RtpSessionActivity.java

121 lines
4.4 KiB
Java
Raw Normal View History

2020-04-07 09:36:28 +00:00
package eu.siacs.conversations.ui;
2020-04-07 11:15:24 +00:00
import android.content.Intent;
2020-04-07 09:36:28 +00:00
import android.databinding.DataBindingUtil;
import android.os.Bundle;
2020-04-07 11:15:24 +00:00
import android.util.Log;
2020-04-07 09:36:28 +00:00
import android.view.View;
import android.view.WindowManager;
2020-04-07 11:15:24 +00:00
import java.lang.ref.WeakReference;
import eu.siacs.conversations.Config;
2020-04-07 09:36:28 +00:00
import eu.siacs.conversations.R;
import eu.siacs.conversations.databinding.ActivityRtpSessionBinding;
2020-04-07 11:15:24 +00:00
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;
2020-04-07 09:36:28 +00:00
2020-04-07 11:15:24 +00:00
public class RtpSessionActivity extends XmppActivity implements XmppConnectionService.OnJingleRtpConnectionUpdate {
2020-04-07 09:36:28 +00:00
public static final String EXTRA_WITH = "with";
2020-04-07 11:15:24 +00:00
public static final String EXTRA_SESSION_ID = "session_id";
private WeakReference<JingleRtpConnection> rtpConnectionReference;
2020-04-07 09:36:28 +00:00
private ActivityRtpSessionBinding binding;
public void onCreate(Bundle 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);
super.onCreate(savedInstanceState);
this.binding = DataBindingUtil.setContentView(this, R.layout.activity_rtp_session);
this.binding.acceptCall.setOnClickListener(this::acceptCall);
this.binding.rejectCall.setOnClickListener(this::rejectCall);
}
private void rejectCall(View view) {
2020-04-07 11:15:24 +00:00
requireRtpConnection().rejectCall();
finish();
2020-04-07 09:36:28 +00:00
}
private void acceptCall(View view) {
2020-04-07 11:15:24 +00:00
requireRtpConnection().acceptCall();
2020-04-07 09:36:28 +00:00
}
@Override
protected void refreshUiReal() {
}
@Override
void onBackendConnected() {
2020-04-07 11:15:24 +00:00
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<JingleRtpConnection> 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());
showState(requireRtpConnection().getEndUserState());
}
}
private void showState(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;
}
}
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)) {
runOnUiThread(()->{
showState(state);
});
} else {
Log.d(Config.LOGTAG,"received update for other rtp session");
}
2020-04-07 09:36:28 +00:00
}
}