2014-03-04 01:51:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2014-11-17 14:19:11 +00:00
|
|
|
import android.annotation.TargetApi;
|
2014-06-01 08:22:42 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.content.Context;
|
2014-06-01 08:22:42 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-07-16 10:34:09 +00:00
|
|
|
import android.graphics.Bitmap;
|
2014-11-17 14:19:11 +00:00
|
|
|
import android.os.Build;
|
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;
|
|
|
|
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;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
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;
|
|
|
|
import eu.siacs.conversations.entities.MucOptions.User;
|
2014-11-23 14:19:44 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnMucRosterUpdate;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnConversationUpdate;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
|
|
|
|
2014-11-23 14:19:44 +00:00
|
|
|
public class ConferenceDetailsActivity extends XmppActivity implements OnConversationUpdate, OnMucRosterUpdate {
|
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;
|
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 00:54:01 +00:00
|
|
|
private List<User> users = new ArrayList<>();
|
2014-11-17 19:02:46 +00:00
|
|
|
private User mSelectedUser = null;
|
2014-07-16 10:34:09 +00:00
|
|
|
|
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();
|
|
|
|
populateView();
|
|
|
|
}
|
|
|
|
});
|
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) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
2014-11-11 16:39:28 +00:00
|
|
|
|
2014-11-17 00:54:01 +00:00
|
|
|
@Override
|
|
|
|
public void onConversationUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-07-16 10:34:09 +00:00
|
|
|
|
2014-11-17 00:54:01 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
populateView();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
|
2014-11-23 14:19:44 +00:00
|
|
|
@Override
|
|
|
|
public void onMucRosterUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
populateView();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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);
|
2014-03-15 05:20:59 +00:00
|
|
|
mInviteButton = (Button) findViewById(R.id.invite);
|
|
|
|
mInviteButton.setOnClickListener(inviteListener);
|
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(),
|
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
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
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) {
|
|
|
|
quickEdit(mConversation.getName(), new OnValueEdited() {
|
2014-07-16 10:34:09 +00:00
|
|
|
|
2014-11-17 00:54:01 +00:00
|
|
|
@Override
|
|
|
|
public void onValueEdited(String value) {
|
|
|
|
MessagePacket packet = xmppConnectionService
|
|
|
|
.getMessageGenerator().conferenceSubject(
|
2014-11-17 19:02:46 +00:00
|
|
|
mConversation, value);
|
2014-11-17 00:54:01 +00:00
|
|
|
xmppConnectionService.sendMessagePacket(
|
2014-11-17 19:02:46 +00:00
|
|
|
mConversation.getAccount(), packet);
|
2014-11-17 00:54:01 +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;
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(menuItem);
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getReadableRole(int role) {
|
|
|
|
switch (role) {
|
2014-11-17 00:54:01 +00:00
|
|
|
case User.ROLE_MODERATOR:
|
|
|
|
return getString(R.string.moderator);
|
|
|
|
case User.ROLE_PARTICIPANT:
|
|
|
|
return getString(R.string.participant);
|
|
|
|
case User.ROLE_VISITOR:
|
|
|
|
return getString(R.string.visitor);
|
|
|
|
default:
|
|
|
|
return "";
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-16 10:34:09 +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) {
|
|
|
|
return "xmpp:" + mConversation.getContactJid().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);
|
|
|
|
Account account = mConversation.getAccount();
|
|
|
|
if (account.hasBookmarkFor(mConversation.getContactJid().toBareJid())) {
|
|
|
|
menuItemSaveBookmark.setVisible(false);
|
|
|
|
menuItemDeleteBookmark.setVisible(true);
|
|
|
|
} else {
|
|
|
|
menuItemDeleteBookmark.setVisible(false);
|
|
|
|
menuItemSaveBookmark.setVisible(true);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-05 14:41:14 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.muc_details, menu);
|
|
|
|
return true;
|
|
|
|
}
|
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;
|
|
|
|
this.mSelectedUser = user;
|
|
|
|
String name;
|
|
|
|
final Contact contact = user.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
name = contact.getDisplayName();
|
|
|
|
} else if (user.getJid() != null) {
|
|
|
|
name = user.getJid().toBareJid().toString();
|
|
|
|
} else {
|
|
|
|
name = user.getName();
|
|
|
|
}
|
|
|
|
menu.setHeaderTitle(name);
|
|
|
|
MenuItem startConversation = menu.findItem(R.id.start_conversation);
|
|
|
|
if (user.getJid() == null) {
|
|
|
|
startConversation.setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
super.onCreateContextMenu(menu,v,menuInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.start_conversation:
|
|
|
|
startConversation(mSelectedUser);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void startConversation(User user) {
|
|
|
|
if (user.getJid() != null) {
|
2014-11-27 09:26:53 +00:00
|
|
|
Conversation conversation = xmppConnectionService.findOrCreateConversation(this.mConversation.getAccount(),user.getJid().toBareJid(),false);
|
2014-11-17 19:02:46 +00:00
|
|
|
switchToConversation(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:36:44 +00:00
|
|
|
protected void saveAsBookmark() {
|
|
|
|
Account account = mConversation.getAccount();
|
|
|
|
Bookmark bookmark = new Bookmark(account, mConversation.getContactJid().toBareJid());
|
|
|
|
account.getBookmarks().add(bookmark);
|
|
|
|
xmppConnectionService.pushBookmarks(account);
|
|
|
|
mConversation.setBookmark(bookmark);
|
|
|
|
}
|
|
|
|
|
|
|
|
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() {
|
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-07-29 12:42:17 +00:00
|
|
|
.findConversationByUuid(uuid);
|
2014-11-17 19:02:46 +00:00
|
|
|
if (this.mConversation != null) {
|
2014-07-16 10:34:09 +00:00
|
|
|
populateView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-29 12:42:17 +00:00
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
private void populateView() {
|
2014-11-17 19:02:46 +00:00
|
|
|
mAccountJid.setText(getString(R.string.using_account, mConversation
|
2014-11-09 15:57:22 +00:00
|
|
|
.getAccount().getJid().toBareJid()));
|
2014-10-21 12:57:16 +00:00
|
|
|
mYourPhoto.setImageBitmap(avatarService().get(
|
2014-11-17 19:02:46 +00:00
|
|
|
mConversation.getAccount(), getPixel(48)));
|
|
|
|
setTitle(mConversation.getName());
|
|
|
|
mFullJid.setText(mConversation.getContactJid().toBareJid().toString());
|
|
|
|
mYourNick.setText(mConversation.getMucOptions().getActualNick());
|
2014-07-16 10:34:09 +00:00
|
|
|
mRoleAffiliaton = (TextView) findViewById(R.id.muc_role);
|
2014-11-17 19:02:46 +00:00
|
|
|
if (mConversation.getMucOptions().online()) {
|
2014-07-16 10:34:09 +00:00
|
|
|
mMoreDetails.setVisibility(View.VISIBLE);
|
2014-11-17 19:02:46 +00:00
|
|
|
User self = mConversation.getMucOptions().getSelf();
|
2014-07-16 10:34:09 +00:00
|
|
|
switch (self.getAffiliation()) {
|
2014-11-17 00:54:01 +00:00
|
|
|
case User.AFFILIATION_ADMIN:
|
|
|
|
mRoleAffiliaton.setText(getReadableRole(self.getRole()) + " ("
|
|
|
|
+ getString(R.string.admin) + ")");
|
|
|
|
break;
|
|
|
|
case User.AFFILIATION_OWNER:
|
|
|
|
mRoleAffiliaton.setText(getReadableRole(self.getRole()) + " ("
|
|
|
|
+ getString(R.string.owner) + ")");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mRoleAffiliaton.setText(getReadableRole(self.getRole()));
|
|
|
|
break;
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this.users.clear();
|
2014-11-17 19:02:46 +00:00
|
|
|
this.users.addAll(mConversation.getMucOptions().getUsers());
|
2014-07-16 10:34:09 +00:00
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
membersView.removeAllViews();
|
2014-11-17 19:02:46 +00:00
|
|
|
for (final User user : mConversation.getMucOptions().getUsers()) {
|
2014-10-26 17:54:10 +00:00
|
|
|
View view = inflater.inflate(R.layout.contact, membersView,
|
2014-07-29 12:42:17 +00:00
|
|
|
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);
|
2014-07-29 12:42:17 +00:00
|
|
|
TextView name = (TextView) view
|
2014-07-16 10:34:09 +00:00
|
|
|
.findViewById(R.id.contact_display_name);
|
|
|
|
TextView key = (TextView) view.findViewById(R.id.key);
|
|
|
|
TextView role = (TextView) view.findViewById(R.id.contact_jid);
|
2014-07-29 12:42:17 +00:00
|
|
|
if (user.getPgpKeyId() != 0) {
|
2014-07-16 10:34:09 +00:00
|
|
|
key.setVisibility(View.VISIBLE);
|
|
|
|
key.setOnClickListener(new OnClickListener() {
|
|
|
|
|
|
|
|
@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
|
|
|
});
|
2014-07-29 12:42:17 +00:00
|
|
|
key.setText(OpenPgpUtils.convertKeyIdToHex(user.getPgpKeyId()));
|
|
|
|
}
|
|
|
|
Bitmap bm;
|
2014-10-21 12:57:16 +00:00
|
|
|
Contact contact = user.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
bm = avatarService().get(contact, getPixel(48));
|
|
|
|
name.setText(contact.getDisplayName());
|
|
|
|
role.setText(user.getName() + " \u2022 "
|
|
|
|
+ getReadableRole(user.getRole()));
|
2014-07-29 12:42:17 +00:00
|
|
|
} else {
|
2014-10-21 12:57:16 +00:00
|
|
|
bm = avatarService().get(user.getName(), getPixel(48));
|
2014-07-29 12:42:17 +00:00
|
|
|
name.setText(user.getName());
|
2014-08-12 09:36:47 +00:00
|
|
|
role.setText(getReadableRole(user.getRole()));
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
ImageView iv = (ImageView) view.findViewById(R.id.contact_photo);
|
|
|
|
iv.setImageBitmap(bm);
|
|
|
|
membersView.addView(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-29 12:50:59 +00:00
|
|
|
@SuppressWarnings("deprecation")
|
2014-11-17 14:19:11 +00:00
|
|
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
2014-11-17 00:54:01 +00:00
|
|
|
private void setListItemBackgroundOnView(View view) {
|
|
|
|
int sdk = android.os.Build.VERSION.SDK_INT;
|
|
|
|
if (sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
|
|
|
|
view.setBackgroundDrawable(getResources().getDrawable(R.drawable.greybackground));
|
|
|
|
} else {
|
|
|
|
view.setBackground(getResources().getDrawable(R.drawable.greybackground));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|