2014-03-04 01:51:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2015-01-07 17:34:24 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-06-01 08:22:42 +00:00
|
|
|
import android.app.PendingIntent;
|
2016-04-12 16:30:02 +00:00
|
|
|
import android.content.ActivityNotFoundException;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.content.Context;
|
2015-01-07 17:34:24 +00:00
|
|
|
import android.content.DialogInterface;
|
2016-04-12 16:30:02 +00:00
|
|
|
import android.content.Intent;
|
2014-06-01 08:22:42 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.os.Bundle;
|
2014-11-17 19:02:46 +00:00
|
|
|
import android.view.ContextMenu;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.view.LayoutInflater;
|
2014-03-05 14:41:14 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
2014-03-15 05:20:59 +00:00
|
|
|
import android.widget.Button;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.widget.ImageButton;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.LinearLayout;
|
2015-10-02 20:00:11 +00:00
|
|
|
import android.widget.TableLayout;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.widget.TextView;
|
2014-07-16 10:34:09 +00:00
|
|
|
import android.widget.Toast;
|
2014-03-04 01:51:01 +00:00
|
|
|
|
2014-11-17 00:54:01 +00:00
|
|
|
import org.openintents.openpgp.util.OpenPgpUtils;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2015-02-07 11:29:32 +00:00
|
|
|
import java.util.Collections;
|
2016-01-08 20:30:46 +00:00
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
2014-11-17 00:54:01 +00:00
|
|
|
|
2015-08-03 20:58:17 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.crypto.PgpEngine;
|
2014-11-23 20:36:44 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Bookmark;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2015-01-05 14:06:39 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions.User;
|
2015-01-07 14:03:29 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnConversationUpdate;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnMucRosterUpdate;
|
2015-01-07 14:03:29 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-11-17 00:54:01 +00:00
|
|
|
|
2015-01-08 20:29:26 +00:00
|
|
|
public class ConferenceDetailsActivity extends XmppActivity implements OnConversationUpdate, OnMucRosterUpdate, XmppConnectionService.OnAffiliationChanged, XmppConnectionService.OnRoleChanged, XmppConnectionService.OnConferenceOptionsPushed {
|
2014-03-04 01:51:01 +00:00
|
|
|
public static final String ACTION_VIEW_MUC = "view_muc";
|
2014-11-17 19:02:46 +00:00
|
|
|
private Conversation mConversation;
|
2014-11-17 00:54:01 +00:00
|
|
|
private OnClickListener inviteListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2014-11-17 19:02:46 +00:00
|
|
|
inviteToConversation(mConversation);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
};
|
2014-07-16 10:34:09 +00:00
|
|
|
private TextView mYourNick;
|
|
|
|
private ImageView mYourPhoto;
|
|
|
|
private ImageButton mEditNickButton;
|
2014-03-04 01:51:01 +00:00
|
|
|
private TextView mRoleAffiliaton;
|
|
|
|
private TextView mFullJid;
|
2014-10-13 12:36:19 +00:00
|
|
|
private TextView mAccountJid;
|
2014-03-04 01:51:01 +00:00
|
|
|
private LinearLayout membersView;
|
|
|
|
private LinearLayout mMoreDetails;
|
2015-01-08 20:29:26 +00:00
|
|
|
private TextView mConferenceType;
|
2015-10-02 20:00:11 +00:00
|
|
|
private TableLayout mConferenceInfoTable;
|
|
|
|
private TextView mConferenceInfoMam;
|
2016-01-08 20:30:46 +00:00
|
|
|
private TextView mNotifyStatusText;
|
2015-01-08 20:29:26 +00:00
|
|
|
private ImageButton mChangeConferenceSettingsButton;
|
2016-01-08 20:30:46 +00:00
|
|
|
private ImageButton mNotifyStatusButton;
|
2014-03-15 05:20:59 +00:00
|
|
|
private Button mInviteButton;
|
2014-03-04 01:51:01 +00:00
|
|
|
private String uuid = null;
|
2014-11-17 19:02:46 +00:00
|
|
|
private User mSelectedUser = null;
|
2014-07-16 10:34:09 +00:00
|
|
|
|
2015-01-05 14:06:39 +00:00
|
|
|
private boolean mAdvancedMode = false;
|
|
|
|
|
2014-11-20 17:20:42 +00:00
|
|
|
private UiCallback<Conversation> renameCallback = new UiCallback<Conversation>() {
|
|
|
|
@Override
|
|
|
|
public void success(Conversation object) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(ConferenceDetailsActivity.this,getString(R.string.your_nick_has_been_changed),Toast.LENGTH_SHORT).show();
|
2015-01-05 14:06:39 +00:00
|
|
|
updateView();
|
2014-11-20 17:20:42 +00:00
|
|
|
}
|
|
|
|
});
|
2014-11-11 16:39:28 +00:00
|
|
|
|
2014-11-20 17:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(final int errorCode, Conversation object) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(ConferenceDetailsActivity.this,getString(errorCode),Toast.LENGTH_SHORT).show();
|
2014-11-11 16:39:28 +00:00
|
|
|
}
|
2014-11-20 17:20:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Conversation object) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
2016-01-08 20:30:46 +00:00
|
|
|
|
|
|
|
private OnClickListener mNotifyStatusClickListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(ConferenceDetailsActivity.this);
|
|
|
|
builder.setTitle(R.string.pref_notification_settings);
|
|
|
|
String[] choices = {
|
|
|
|
getString(R.string.notify_on_all_messages),
|
|
|
|
getString(R.string.notify_only_when_highlighted),
|
|
|
|
getString(R.string.notify_never)
|
|
|
|
};
|
|
|
|
final AtomicInteger choice;
|
|
|
|
if (mConversation.getLongAttribute(Conversation.ATTRIBUTE_MUTED_TILL,0) == Long.MAX_VALUE) {
|
|
|
|
choice = new AtomicInteger(2);
|
|
|
|
} else {
|
|
|
|
choice = new AtomicInteger(mConversation.alwaysNotify() ? 0 : 1);
|
|
|
|
}
|
|
|
|
builder.setSingleChoiceItems(choices, choice.get(), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
choice.set(which);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (choice.get() == 2) {
|
|
|
|
mConversation.setMutedTill(Long.MAX_VALUE);
|
|
|
|
} else {
|
|
|
|
mConversation.setMutedTill(0);
|
|
|
|
mConversation.setAttribute(Conversation.ATTRIBUTE_ALWAYS_NOTIFY,String.valueOf(choice.get() == 0));
|
|
|
|
}
|
|
|
|
xmppConnectionService.updateConversation(mConversation);
|
|
|
|
updateView();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-08 20:29:26 +00:00
|
|
|
private OnClickListener mChangeConferenceSettings = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(ConferenceDetailsActivity.this);
|
|
|
|
builder.setTitle(R.string.conference_options);
|
2015-09-13 15:13:46 +00:00
|
|
|
final String[] options;
|
|
|
|
final boolean[] values;
|
|
|
|
if (mAdvancedMode) {
|
|
|
|
options = new String[]{
|
|
|
|
getString(R.string.members_only),
|
|
|
|
getString(R.string.moderated),
|
|
|
|
getString(R.string.non_anonymous)
|
|
|
|
};
|
|
|
|
values = new boolean[]{
|
|
|
|
mucOptions.membersOnly(),
|
|
|
|
mucOptions.moderated(),
|
|
|
|
mucOptions.nonanonymous()
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
options = new String[]{
|
|
|
|
getString(R.string.members_only),
|
|
|
|
getString(R.string.non_anonymous)
|
|
|
|
};
|
|
|
|
values = new boolean[]{
|
|
|
|
mucOptions.membersOnly(),
|
|
|
|
mucOptions.nonanonymous()
|
|
|
|
};
|
|
|
|
}
|
2015-01-08 20:29:26 +00:00
|
|
|
builder.setMultiChoiceItems(options,values,new DialogInterface.OnMultiChoiceClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which, boolean isChecked) {
|
|
|
|
values[which] = isChecked;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.confirm,new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2015-01-09 12:28:01 +00:00
|
|
|
if (!mucOptions.membersOnly() && values[0]) {
|
|
|
|
xmppConnectionService.changeAffiliationsInConference(mConversation,
|
|
|
|
MucOptions.Affiliation.NONE,
|
|
|
|
MucOptions.Affiliation.MEMBER);
|
|
|
|
}
|
2015-01-08 20:29:26 +00:00
|
|
|
Bundle options = new Bundle();
|
|
|
|
options.putString("muc#roomconfig_membersonly", values[0] ? "1" : "0");
|
2015-09-13 15:13:46 +00:00
|
|
|
if (values.length == 2) {
|
|
|
|
options.putString("muc#roomconfig_whois", values[1] ? "anyone" : "moderators");
|
|
|
|
} else if (values.length == 3) {
|
|
|
|
options.putString("muc#roomconfig_moderatedroom", values[1] ? "1" : "0");
|
|
|
|
options.putString("muc#roomconfig_whois", values[2] ? "anyone" : "moderators");
|
|
|
|
}
|
2015-01-10 22:10:32 +00:00
|
|
|
options.putString("muc#roomconfig_persistentroom", "1");
|
2015-01-09 12:28:01 +00:00
|
|
|
xmppConnectionService.pushConferenceConfiguration(mConversation,
|
|
|
|
options,
|
|
|
|
ConferenceDetailsActivity.this);
|
2015-01-08 20:29:26 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
};
|
2015-01-10 22:10:32 +00:00
|
|
|
private OnValueEdited onSubjectEdited = new OnValueEdited() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onValueEdited(String value) {
|
|
|
|
xmppConnectionService.pushSubjectToConference(mConversation,value);
|
|
|
|
}
|
|
|
|
};
|
2014-11-11 16:39:28 +00:00
|
|
|
|
2014-11-17 00:54:01 +00:00
|
|
|
@Override
|
|
|
|
public void onConversationUpdate() {
|
2015-02-17 13:18:35 +00:00
|
|
|
refreshUi();
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
|
2014-11-23 14:19:44 +00:00
|
|
|
@Override
|
|
|
|
public void onMucRosterUpdate() {
|
2015-02-17 13:18:35 +00:00
|
|
|
refreshUi();
|
|
|
|
}
|
2014-11-23 14:19:44 +00:00
|
|
|
|
2015-02-17 13:18:35 +00:00
|
|
|
@Override
|
|
|
|
protected void refreshUiReal() {
|
|
|
|
updateView();
|
2014-11-23 14:19:44 +00:00
|
|
|
}
|
|
|
|
|
2014-03-04 01:51:01 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2014-03-05 14:41:14 +00:00
|
|
|
setContentView(R.layout.activity_muc_details);
|
2014-07-16 10:34:09 +00:00
|
|
|
mYourNick = (TextView) findViewById(R.id.muc_your_nick);
|
|
|
|
mYourPhoto = (ImageView) findViewById(R.id.your_photo);
|
|
|
|
mEditNickButton = (ImageButton) findViewById(R.id.edit_nick_button);
|
2014-03-04 01:51:01 +00:00
|
|
|
mFullJid = (TextView) findViewById(R.id.muc_jabberid);
|
|
|
|
membersView = (LinearLayout) findViewById(R.id.muc_members);
|
2014-10-13 12:36:19 +00:00
|
|
|
mAccountJid = (TextView) findViewById(R.id.details_account);
|
2014-03-04 01:51:01 +00:00
|
|
|
mMoreDetails = (LinearLayout) findViewById(R.id.muc_more_details);
|
|
|
|
mMoreDetails.setVisibility(View.GONE);
|
2015-01-08 20:29:26 +00:00
|
|
|
mChangeConferenceSettingsButton = (ImageButton) findViewById(R.id.change_conference_button);
|
|
|
|
mChangeConferenceSettingsButton.setOnClickListener(this.mChangeConferenceSettings);
|
2014-03-15 05:20:59 +00:00
|
|
|
mInviteButton = (Button) findViewById(R.id.invite);
|
|
|
|
mInviteButton.setOnClickListener(inviteListener);
|
2015-01-08 20:29:26 +00:00
|
|
|
mConferenceType = (TextView) findViewById(R.id.muc_conference_type);
|
2014-11-29 12:50:59 +00:00
|
|
|
if (getActionBar() != null) {
|
|
|
|
getActionBar().setHomeButtonEnabled(true);
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
mEditNickButton.setOnClickListener(new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2014-11-17 19:02:46 +00:00
|
|
|
quickEdit(mConversation.getMucOptions().getActualNick(),
|
2016-05-22 16:20:57 +00:00
|
|
|
0,
|
2014-07-16 10:34:09 +00:00
|
|
|
new OnValueEdited() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onValueEdited(String value) {
|
2014-11-20 17:20:42 +00:00
|
|
|
xmppConnectionService.renameInMuc(mConversation,value,renameCallback);
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-09-13 15:13:46 +00:00
|
|
|
this.mAdvancedMode = getPreferences().getBoolean("advanced_muc_mode", false);
|
2015-10-02 20:00:11 +00:00
|
|
|
this.mConferenceInfoTable = (TableLayout) findViewById(R.id.muc_info_more);
|
|
|
|
mConferenceInfoTable.setVisibility(this.mAdvancedMode ? View.VISIBLE : View.GONE);
|
|
|
|
this.mConferenceInfoMam = (TextView) findViewById(R.id.muc_info_mam);
|
2016-01-08 20:30:46 +00:00
|
|
|
this.mNotifyStatusButton = (ImageButton) findViewById(R.id.notification_status_button);
|
|
|
|
this.mNotifyStatusButton.setOnClickListener(this.mNotifyStatusClickListener);
|
|
|
|
this.mNotifyStatusText = (TextView) findViewById(R.id.notification_status_text);
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
|
2014-03-05 14:41:14 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem menuItem) {
|
2014-07-16 10:34:09 +00:00
|
|
|
switch (menuItem.getItemId()) {
|
2014-11-17 00:54:01 +00:00
|
|
|
case android.R.id.home:
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
case R.id.action_edit_subject:
|
2014-11-17 19:02:46 +00:00
|
|
|
if (mConversation != null) {
|
2016-05-22 16:20:57 +00:00
|
|
|
quickEdit(mConversation.getMucOptions().getSubject(),
|
2016-05-26 10:39:04 +00:00
|
|
|
R.string.edit_subject_hint,
|
2016-05-22 16:20:57 +00:00
|
|
|
this.onSubjectEdited);
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-04-12 16:30:02 +00:00
|
|
|
case R.id.action_share:
|
2016-06-24 13:16:01 +00:00
|
|
|
shareUri();
|
2016-04-12 16:30:02 +00:00
|
|
|
break;
|
2014-11-23 20:36:44 +00:00
|
|
|
case R.id.action_save_as_bookmark:
|
|
|
|
saveAsBookmark();
|
|
|
|
break;
|
|
|
|
case R.id.action_delete_bookmark:
|
|
|
|
deleteBookmark();
|
|
|
|
break;
|
2015-01-05 14:06:39 +00:00
|
|
|
case R.id.action_advanced_mode:
|
|
|
|
this.mAdvancedMode = !menuItem.isChecked();
|
|
|
|
menuItem.setChecked(this.mAdvancedMode);
|
2015-09-13 15:13:46 +00:00
|
|
|
getPreferences().edit().putBoolean("advanced_muc_mode", mAdvancedMode).commit();
|
2015-10-02 20:00:11 +00:00
|
|
|
mConferenceInfoTable.setVisibility(this.mAdvancedMode ? View.VISIBLE : View.GONE);
|
2015-01-05 14:06:39 +00:00
|
|
|
invalidateOptionsMenu();
|
|
|
|
updateView();
|
|
|
|
break;
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(menuItem);
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
@Override
|
|
|
|
protected String getShareableUri() {
|
2014-11-17 19:02:46 +00:00
|
|
|
if (mConversation != null) {
|
2014-12-21 20:43:58 +00:00
|
|
|
return "xmpp:" + mConversation.getJid().toBareJid().toString() + "?join";
|
2014-11-04 11:15:14 +00:00
|
|
|
} else {
|
2014-11-04 16:10:35 +00:00
|
|
|
return "";
|
2014-11-04 11:15:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:36:44 +00:00
|
|
|
@Override
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu) {
|
|
|
|
MenuItem menuItemSaveBookmark = menu.findItem(R.id.action_save_as_bookmark);
|
|
|
|
MenuItem menuItemDeleteBookmark = menu.findItem(R.id.action_delete_bookmark);
|
2015-01-05 14:06:39 +00:00
|
|
|
MenuItem menuItemAdvancedMode = menu.findItem(R.id.action_advanced_mode);
|
2015-11-26 16:44:29 +00:00
|
|
|
MenuItem menuItemChangeSubject = menu.findItem(R.id.action_edit_subject);
|
2015-01-05 14:06:39 +00:00
|
|
|
menuItemAdvancedMode.setChecked(mAdvancedMode);
|
2015-04-28 11:56:08 +00:00
|
|
|
if (mConversation == null) {
|
|
|
|
return true;
|
|
|
|
}
|
2014-11-23 20:36:44 +00:00
|
|
|
Account account = mConversation.getAccount();
|
2014-12-21 20:43:58 +00:00
|
|
|
if (account.hasBookmarkFor(mConversation.getJid().toBareJid())) {
|
2014-11-23 20:36:44 +00:00
|
|
|
menuItemSaveBookmark.setVisible(false);
|
|
|
|
menuItemDeleteBookmark.setVisible(true);
|
|
|
|
} else {
|
|
|
|
menuItemDeleteBookmark.setVisible(false);
|
|
|
|
menuItemSaveBookmark.setVisible(true);
|
|
|
|
}
|
2015-11-26 16:44:29 +00:00
|
|
|
menuItemChangeSubject.setVisible(mConversation.getMucOptions().canChangeSubject());
|
2014-11-23 20:36:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-05 14:41:14 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.muc_details, menu);
|
2016-02-27 09:25:31 +00:00
|
|
|
return super.onCreateOptionsMenu(menu);
|
2014-03-05 14:41:14 +00:00
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
|
2014-11-17 19:02:46 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
|
|
|
|
Object tag = v.getTag();
|
|
|
|
if (tag instanceof User) {
|
|
|
|
getMenuInflater().inflate(R.menu.muc_details_context,menu);
|
|
|
|
final User user = (User) tag;
|
2015-01-07 14:03:29 +00:00
|
|
|
final User self = mConversation.getMucOptions().getSelf();
|
2014-11-17 19:02:46 +00:00
|
|
|
this.mSelectedUser = user;
|
|
|
|
String name;
|
2015-07-21 11:15:59 +00:00
|
|
|
final Contact contact = user.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
name = contact.getDisplayName();
|
2016-05-16 12:10:40 +00:00
|
|
|
} else if (user.getRealJid() != null){
|
|
|
|
name = user.getRealJid().toBareJid().toString();
|
2015-07-21 11:15:59 +00:00
|
|
|
} else {
|
|
|
|
name = user.getName();
|
|
|
|
}
|
|
|
|
menu.setHeaderTitle(name);
|
2016-05-16 12:10:40 +00:00
|
|
|
if (user.getRealJid() != null) {
|
2015-07-19 12:03:46 +00:00
|
|
|
MenuItem showContactDetails = menu.findItem(R.id.action_contact_details);
|
2015-01-07 14:03:29 +00:00
|
|
|
MenuItem startConversation = menu.findItem(R.id.start_conversation);
|
|
|
|
MenuItem giveMembership = menu.findItem(R.id.give_membership);
|
|
|
|
MenuItem removeMembership = menu.findItem(R.id.remove_membership);
|
|
|
|
MenuItem giveAdminPrivileges = menu.findItem(R.id.give_admin_privileges);
|
|
|
|
MenuItem removeAdminPrivileges = menu.findItem(R.id.remove_admin_privileges);
|
|
|
|
MenuItem removeFromRoom = menu.findItem(R.id.remove_from_room);
|
2015-01-07 23:23:26 +00:00
|
|
|
MenuItem banFromConference = menu.findItem(R.id.ban_from_conference);
|
2016-05-31 22:12:14 +00:00
|
|
|
MenuItem invite = menu.findItem(R.id.invite);
|
2015-01-07 14:03:29 +00:00
|
|
|
startConversation.setVisible(true);
|
2015-07-20 12:24:59 +00:00
|
|
|
if (contact != null) {
|
|
|
|
showContactDetails.setVisible(true);
|
|
|
|
}
|
2016-05-31 22:12:14 +00:00
|
|
|
if (user.getRole() == MucOptions.Role.NONE) {
|
|
|
|
invite.setVisible(true);
|
|
|
|
}
|
2015-01-07 14:03:29 +00:00
|
|
|
if (self.getAffiliation().ranks(MucOptions.Affiliation.ADMIN) &&
|
|
|
|
self.getAffiliation().outranks(user.getAffiliation())) {
|
|
|
|
if (mAdvancedMode) {
|
|
|
|
if (user.getAffiliation() == MucOptions.Affiliation.NONE) {
|
|
|
|
giveMembership.setVisible(true);
|
|
|
|
} else {
|
|
|
|
removeMembership.setVisible(true);
|
|
|
|
}
|
2015-01-07 23:23:26 +00:00
|
|
|
banFromConference.setVisible(true);
|
|
|
|
} else {
|
|
|
|
removeFromRoom.setVisible(true);
|
2015-01-07 14:03:29 +00:00
|
|
|
}
|
|
|
|
if (user.getAffiliation() != MucOptions.Affiliation.ADMIN) {
|
|
|
|
giveAdminPrivileges.setVisible(true);
|
|
|
|
} else {
|
|
|
|
removeAdminPrivileges.setVisible(true);
|
|
|
|
}
|
|
|
|
}
|
2015-07-21 11:15:59 +00:00
|
|
|
} else {
|
|
|
|
MenuItem sendPrivateMessage = menu.findItem(R.id.send_private_message);
|
2016-05-31 22:12:14 +00:00
|
|
|
sendPrivateMessage.setVisible(user.getRole().ranks(MucOptions.Role.PARTICIPANT));
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
2015-01-07 14:03:29 +00:00
|
|
|
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
2015-07-20 12:24:59 +00:00
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2015-07-19 12:03:46 +00:00
|
|
|
case R.id.action_contact_details:
|
2015-07-20 12:24:59 +00:00
|
|
|
Contact contact = mSelectedUser.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
switchToContactDetails(contact);
|
|
|
|
}
|
2015-07-19 12:03:46 +00:00
|
|
|
return true;
|
2014-11-17 19:02:46 +00:00
|
|
|
case R.id.start_conversation:
|
|
|
|
startConversation(mSelectedUser);
|
|
|
|
return true;
|
2015-01-07 14:03:29 +00:00
|
|
|
case R.id.give_admin_privileges:
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getRealJid(), MucOptions.Affiliation.ADMIN,this);
|
2015-01-07 14:03:29 +00:00
|
|
|
return true;
|
|
|
|
case R.id.give_membership:
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getRealJid(), MucOptions.Affiliation.MEMBER,this);
|
2015-01-07 14:03:29 +00:00
|
|
|
return true;
|
|
|
|
case R.id.remove_membership:
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getRealJid(), MucOptions.Affiliation.NONE,this);
|
2015-01-07 14:03:29 +00:00
|
|
|
return true;
|
|
|
|
case R.id.remove_admin_privileges:
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getRealJid(), MucOptions.Affiliation.MEMBER,this);
|
2015-01-07 14:03:29 +00:00
|
|
|
return true;
|
|
|
|
case R.id.remove_from_room:
|
2015-01-07 17:34:24 +00:00
|
|
|
removeFromRoom(mSelectedUser);
|
2015-01-07 14:03:29 +00:00
|
|
|
return true;
|
2015-01-07 23:23:26 +00:00
|
|
|
case R.id.ban_from_conference:
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getRealJid(), MucOptions.Affiliation.OUTCAST,this);
|
2016-05-16 13:50:57 +00:00
|
|
|
if (mSelectedUser.getRole() != MucOptions.Role.NONE) {
|
|
|
|
xmppConnectionService.changeRoleInConference(mConversation, mSelectedUser.getName(), MucOptions.Role.NONE, this);
|
|
|
|
}
|
2015-01-07 23:23:26 +00:00
|
|
|
return true;
|
2015-07-21 11:15:59 +00:00
|
|
|
case R.id.send_private_message:
|
|
|
|
privateMsgInMuc(mConversation,mSelectedUser.getName());
|
|
|
|
return true;
|
2014-11-17 19:02:46 +00:00
|
|
|
default:
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-07 17:34:24 +00:00
|
|
|
private void removeFromRoom(final User user) {
|
|
|
|
if (mConversation.getMucOptions().membersOnly()) {
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,user.getRealJid(), MucOptions.Affiliation.NONE,this);
|
2016-05-16 13:50:57 +00:00
|
|
|
if (user.getRole() != MucOptions.Role.NONE) {
|
|
|
|
xmppConnectionService.changeRoleInConference(mConversation, mSelectedUser.getName(), MucOptions.Role.NONE, ConferenceDetailsActivity.this);
|
|
|
|
}
|
2015-01-07 17:34:24 +00:00
|
|
|
} else {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2015-01-07 23:23:26 +00:00
|
|
|
builder.setTitle(R.string.ban_from_conference);
|
2015-01-07 17:34:24 +00:00
|
|
|
builder.setMessage(getString(R.string.removing_from_public_conference,user.getName()));
|
|
|
|
builder.setNegativeButton(R.string.cancel,null);
|
|
|
|
builder.setPositiveButton(R.string.ban_now,new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2016-05-16 12:10:40 +00:00
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,user.getRealJid(), MucOptions.Affiliation.OUTCAST,ConferenceDetailsActivity.this);
|
2016-05-16 13:50:57 +00:00
|
|
|
if (user.getRole() != MucOptions.Role.NONE) {
|
|
|
|
xmppConnectionService.changeRoleInConference(mConversation, mSelectedUser.getName(), MucOptions.Role.NONE, ConferenceDetailsActivity.this);
|
|
|
|
}
|
2015-01-07 17:34:24 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-17 19:02:46 +00:00
|
|
|
protected void startConversation(User user) {
|
2016-05-16 12:10:40 +00:00
|
|
|
if (user.getRealJid() != null) {
|
|
|
|
Conversation conversation = xmppConnectionService.findOrCreateConversation(this.mConversation.getAccount(),user.getRealJid().toBareJid(),false);
|
2014-11-17 19:02:46 +00:00
|
|
|
switchToConversation(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:36:44 +00:00
|
|
|
protected void saveAsBookmark() {
|
2016-05-26 20:53:55 +00:00
|
|
|
xmppConnectionService.saveConversationAsBookmark(mConversation,
|
|
|
|
mConversation.getMucOptions().getSubject());
|
2014-11-23 20:36:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void deleteBookmark() {
|
|
|
|
Account account = mConversation.getAccount();
|
|
|
|
Bookmark bookmark = mConversation.getBookmark();
|
|
|
|
bookmark.unregisterConversation();
|
|
|
|
account.getBookmarks().remove(bookmark);
|
|
|
|
xmppConnectionService.pushBookmarks(account);
|
|
|
|
}
|
|
|
|
|
2014-03-04 01:51:01 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
2015-05-12 02:33:04 +00:00
|
|
|
if (mPendingConferenceInvite != null) {
|
|
|
|
mPendingConferenceInvite.execute(this);
|
|
|
|
mPendingConferenceInvite = null;
|
|
|
|
}
|
2014-03-27 01:02:59 +00:00
|
|
|
if (getIntent().getAction().equals(ACTION_VIEW_MUC)) {
|
|
|
|
this.uuid = getIntent().getExtras().getString("uuid");
|
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
if (uuid != null) {
|
2014-11-17 19:02:46 +00:00
|
|
|
this.mConversation = xmppConnectionService
|
2014-12-21 20:43:58 +00:00
|
|
|
.findConversationByUuid(uuid);
|
2014-11-17 19:02:46 +00:00
|
|
|
if (this.mConversation != null) {
|
2015-01-05 14:06:39 +00:00
|
|
|
updateView();
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-29 12:42:17 +00:00
|
|
|
|
2015-01-05 14:06:39 +00:00
|
|
|
private void updateView() {
|
2015-01-08 20:29:26 +00:00
|
|
|
final MucOptions mucOptions = mConversation.getMucOptions();
|
|
|
|
final User self = mucOptions.getSelf();
|
2015-08-03 20:58:17 +00:00
|
|
|
String account;
|
|
|
|
if (Config.DOMAIN_LOCK != null) {
|
|
|
|
account = mConversation.getAccount().getJid().getLocalpart();
|
|
|
|
} else {
|
|
|
|
account = mConversation.getAccount().getJid().toBareJid().toString();
|
|
|
|
}
|
|
|
|
mAccountJid.setText(getString(R.string.using_account, account));
|
2015-01-05 14:06:39 +00:00
|
|
|
mYourPhoto.setImageBitmap(avatarService().get(mConversation.getAccount(), getPixel(48)));
|
2014-11-17 19:02:46 +00:00
|
|
|
setTitle(mConversation.getName());
|
2016-04-27 14:43:02 +00:00
|
|
|
mFullJid.setText(mConversation.getJid().toBareJid().toString());
|
2015-01-08 20:29:26 +00:00
|
|
|
mYourNick.setText(mucOptions.getActualNick());
|
2014-07-16 10:34:09 +00:00
|
|
|
mRoleAffiliaton = (TextView) findViewById(R.id.muc_role);
|
2015-01-08 20:29:26 +00:00
|
|
|
if (mucOptions.online()) {
|
2014-07-16 10:34:09 +00:00
|
|
|
mMoreDetails.setVisibility(View.VISIBLE);
|
2015-01-05 14:06:39 +00:00
|
|
|
final String status = getStatus(self);
|
|
|
|
if (status != null) {
|
|
|
|
mRoleAffiliaton.setVisibility(View.VISIBLE);
|
|
|
|
mRoleAffiliaton.setText(status);
|
|
|
|
} else {
|
|
|
|
mRoleAffiliaton.setVisibility(View.GONE);
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
2015-01-08 20:29:26 +00:00
|
|
|
if (mucOptions.membersOnly()) {
|
|
|
|
mConferenceType.setText(R.string.private_conference);
|
|
|
|
} else {
|
|
|
|
mConferenceType.setText(R.string.public_conference);
|
|
|
|
}
|
2015-10-02 20:00:11 +00:00
|
|
|
if (mucOptions.mamSupport()) {
|
|
|
|
mConferenceInfoMam.setText(R.string.server_info_available);
|
|
|
|
} else {
|
|
|
|
mConferenceInfoMam.setText(R.string.server_info_unavailable);
|
|
|
|
}
|
2015-01-08 20:29:26 +00:00
|
|
|
if (self.getAffiliation().ranks(MucOptions.Affiliation.OWNER)) {
|
|
|
|
mChangeConferenceSettingsButton.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
mChangeConferenceSettingsButton.setVisibility(View.GONE);
|
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
2016-01-08 20:30:46 +00:00
|
|
|
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
int ic_notifications = getThemeResource(R.attr.icon_notifications, R.drawable.ic_notifications_black54_24dp);
|
|
|
|
int ic_notifications_off = getThemeResource(R.attr.icon_notifications_off, R.drawable.ic_notifications_off_black54_24dp);
|
|
|
|
int ic_notifications_paused = getThemeResource(R.attr.icon_notifications_paused, R.drawable.ic_notifications_paused_black54_24dp);
|
|
|
|
int ic_notifications_none = getThemeResource(R.attr.icon_notifications_none, R.drawable.ic_notifications_none_black54_24dp);
|
|
|
|
|
2016-01-08 20:30:46 +00:00
|
|
|
long mutedTill = mConversation.getLongAttribute(Conversation.ATTRIBUTE_MUTED_TILL,0);
|
|
|
|
if (mutedTill == Long.MAX_VALUE) {
|
|
|
|
mNotifyStatusText.setText(R.string.notify_never);
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
mNotifyStatusButton.setImageResource(ic_notifications_off);
|
2016-01-08 20:30:46 +00:00
|
|
|
} else if (System.currentTimeMillis() < mutedTill) {
|
|
|
|
mNotifyStatusText.setText(R.string.notify_paused);
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
mNotifyStatusButton.setImageResource(ic_notifications_paused);
|
2016-01-08 20:30:46 +00:00
|
|
|
} else if (mConversation.alwaysNotify()) {
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
mNotifyStatusButton.setImageResource(ic_notifications);
|
2016-01-08 20:30:46 +00:00
|
|
|
mNotifyStatusText.setText(R.string.notify_on_all_messages);
|
|
|
|
} else {
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
mNotifyStatusButton.setImageResource(ic_notifications_none);
|
2016-01-08 20:30:46 +00:00
|
|
|
mNotifyStatusText.setText(R.string.notify_only_when_highlighted);
|
|
|
|
}
|
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
membersView.removeAllViews();
|
2015-12-03 17:18:34 +00:00
|
|
|
final ArrayList<User> users = mucOptions.getUsers();
|
2016-05-17 13:01:56 +00:00
|
|
|
Collections.sort(users);
|
2015-02-07 11:29:32 +00:00
|
|
|
for (final User user : users) {
|
|
|
|
View view = inflater.inflate(R.layout.contact, membersView,false);
|
2014-11-17 00:54:01 +00:00
|
|
|
this.setListItemBackgroundOnView(view);
|
|
|
|
view.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2014-11-17 19:02:46 +00:00
|
|
|
highlightInMuc(mConversation, user.getName());
|
2014-11-17 00:54:01 +00:00
|
|
|
}
|
|
|
|
});
|
2014-11-17 19:02:46 +00:00
|
|
|
registerForContextMenu(view);
|
|
|
|
view.setTag(user);
|
2015-01-05 14:06:39 +00:00
|
|
|
TextView tvDisplayName = (TextView) view.findViewById(R.id.contact_display_name);
|
|
|
|
TextView tvKey = (TextView) view.findViewById(R.id.key);
|
|
|
|
TextView tvStatus = (TextView) view.findViewById(R.id.contact_jid);
|
|
|
|
if (mAdvancedMode && user.getPgpKeyId() != 0) {
|
|
|
|
tvKey.setVisibility(View.VISIBLE);
|
|
|
|
tvKey.setOnClickListener(new OnClickListener() {
|
2014-07-16 10:34:09 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2014-07-29 12:42:17 +00:00
|
|
|
viewPgpKey(user);
|
2014-05-22 18:54:54 +00:00
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
});
|
2015-01-05 14:06:39 +00:00
|
|
|
tvKey.setText(OpenPgpUtils.convertKeyIdToHex(user.getPgpKeyId()));
|
2014-07-29 12:42:17 +00:00
|
|
|
}
|
2014-10-21 12:57:16 +00:00
|
|
|
Contact contact = user.getContact();
|
2016-05-16 12:10:40 +00:00
|
|
|
String name = user.getName();
|
2014-10-21 12:57:16 +00:00
|
|
|
if (contact != null) {
|
2015-01-05 14:06:39 +00:00
|
|
|
tvDisplayName.setText(contact.getDisplayName());
|
2016-05-16 12:10:40 +00:00
|
|
|
tvStatus.setText((name != null ? name+ " \u2022 " : "") + getStatus(user));
|
2014-07-29 12:42:17 +00:00
|
|
|
} else {
|
2016-05-16 12:10:40 +00:00
|
|
|
tvDisplayName.setText(name == null ? "" : name);
|
2015-01-05 14:06:39 +00:00
|
|
|
tvStatus.setText(getStatus(user));
|
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
ImageView iv = (ImageView) view.findViewById(R.id.contact_photo);
|
2015-12-03 17:18:34 +00:00
|
|
|
iv.setImageBitmap(avatarService().get(user, getPixel(48), false));
|
2014-07-16 10:34:09 +00:00
|
|
|
membersView.addView(view);
|
2015-01-07 17:34:24 +00:00
|
|
|
if (mConversation.getMucOptions().canInvite()) {
|
|
|
|
mInviteButton.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
mInviteButton.setVisibility(View.GONE);
|
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 14:06:39 +00:00
|
|
|
private String getStatus(User user) {
|
|
|
|
if (mAdvancedMode) {
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
builder.append(getString(user.getAffiliation().getResId()));
|
|
|
|
builder.append(" (");
|
|
|
|
builder.append(getString(user.getRole().getResId()));
|
|
|
|
builder.append(')');
|
|
|
|
return builder.toString();
|
|
|
|
} else {
|
|
|
|
return getString(user.getAffiliation().getResId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
private void viewPgpKey(User user) {
|
|
|
|
PgpEngine pgp = xmppConnectionService.getPgpEngine();
|
|
|
|
if (pgp != null) {
|
|
|
|
PendingIntent intent = pgp.getIntentForKey(
|
2014-11-17 19:02:46 +00:00
|
|
|
mConversation.getAccount(), user.getPgpKeyId());
|
2014-07-16 10:34:09 +00:00
|
|
|
if (intent != null) {
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(intent.getIntentSender(), 0,
|
|
|
|
null, 0, 0, 0);
|
2014-11-29 12:50:59 +00:00
|
|
|
} catch (SendIntentException ignored) {
|
2014-07-16 10:34:09 +00:00
|
|
|
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-07 14:03:29 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAffiliationChangedSuccessful(Jid jid) {
|
2016-05-16 12:10:40 +00:00
|
|
|
refreshUi();
|
2015-01-07 14:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAffiliationChangeFailed(Jid jid, int resId) {
|
2015-01-08 20:29:26 +00:00
|
|
|
displayToast(getString(resId,jid.toBareJid().toString()));
|
2015-01-07 14:03:29 +00:00
|
|
|
}
|
2015-01-08 00:23:53 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRoleChangedSuccessful(String nick) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-01-08 20:29:26 +00:00
|
|
|
public void onRoleChangeFailed(String nick, int resId) {
|
|
|
|
displayToast(getString(resId,nick));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPushSucceeded() {
|
|
|
|
displayToast(getString(R.string.modified_conference_options));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPushFailed() {
|
|
|
|
displayToast(getString(R.string.could_not_modify_conference_options));
|
|
|
|
}
|
2015-01-08 00:23:53 +00:00
|
|
|
|
2015-01-08 20:29:26 +00:00
|
|
|
private void displayToast(final String msg) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(ConferenceDetailsActivity.this,msg,Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
});
|
2015-01-08 00:23:53 +00:00
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|