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;
|
2015-01-07 17:34:24 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-06-01 08:22:42 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.content.Context;
|
2015-01-07 17:34:24 +00:00
|
|
|
import android.content.DialogInterface;
|
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;
|
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-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;
|
2015-01-07 14:03:29 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-11-17 00:54:01 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
|
|
|
|
2015-01-08 00:23:53 +00:00
|
|
|
public class ConferenceDetailsActivity extends XmppActivity implements OnConversationUpdate, OnMucRosterUpdate, XmppConnectionService.OnAffiliationChanged, XmppConnectionService.OnRoleChanged {
|
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
|
|
|
|
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) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
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() {
|
2015-01-05 14:06:39 +00:00
|
|
|
updateView();
|
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() {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2015-01-05 14:06:39 +00:00
|
|
|
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);
|
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
|
2014-12-21 20:43:58 +00:00
|
|
|
.getMessageGenerator().conferenceSubject(
|
|
|
|
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;
|
2015-01-05 14:06:39 +00:00
|
|
|
case R.id.action_advanced_mode:
|
|
|
|
this.mAdvancedMode = !menuItem.isChecked();
|
|
|
|
menuItem.setChecked(this.mAdvancedMode);
|
|
|
|
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);
|
|
|
|
menuItemAdvancedMode.setChecked(mAdvancedMode);
|
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);
|
|
|
|
}
|
|
|
|
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;
|
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-01-07 14:03:29 +00:00
|
|
|
if (user.getJid() != null) {
|
|
|
|
final Contact contact = user.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
name = contact.getDisplayName();
|
|
|
|
} else {
|
|
|
|
name = user.getName();
|
|
|
|
}
|
|
|
|
menu.setHeaderTitle(name);
|
|
|
|
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);
|
2015-01-07 14:03:29 +00:00
|
|
|
startConversation.setVisible(true);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
2015-01-07 14:03:29 +00:00
|
|
|
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
|
|
|
super.onCreateContextMenu(menu,v,menuInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.start_conversation:
|
|
|
|
startConversation(mSelectedUser);
|
|
|
|
return true;
|
2015-01-07 14:03:29 +00:00
|
|
|
case R.id.give_admin_privileges:
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getJid(), MucOptions.Affiliation.ADMIN,this);
|
|
|
|
return true;
|
|
|
|
case R.id.give_membership:
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getJid(), MucOptions.Affiliation.MEMBER,this);
|
|
|
|
return true;
|
|
|
|
case R.id.remove_membership:
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getJid(), MucOptions.Affiliation.NONE,this);
|
|
|
|
return true;
|
|
|
|
case R.id.remove_admin_privileges:
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getJid(), MucOptions.Affiliation.MEMBER,this);
|
|
|
|
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:
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,mSelectedUser.getJid(), MucOptions.Affiliation.OUTCAST,this);
|
2015-01-08 00:23:53 +00:00
|
|
|
xmppConnectionService.changeRoleInConference(mConversation,mSelectedUser.getName(), MucOptions.Role.NONE,this);
|
2015-01-07 23:23:26 +00:00
|
|
|
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()) {
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,user.getJid(), MucOptions.Affiliation.NONE,this);
|
2015-01-08 00:23:53 +00:00
|
|
|
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) {
|
|
|
|
xmppConnectionService.changeAffiliationInConference(mConversation,user.getJid(), MucOptions.Affiliation.OUTCAST,ConferenceDetailsActivity.this);
|
2015-01-08 00:23:53 +00:00
|
|
|
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) {
|
|
|
|
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();
|
2014-12-21 20:43:58 +00:00
|
|
|
Bookmark bookmark = new Bookmark(account, mConversation.getJid().toBareJid());
|
|
|
|
if (!mConversation.getJid().isBareJid()) {
|
|
|
|
bookmark.setNick(mConversation.getJid().getResourcepart());
|
2014-12-03 09:34:05 +00:00
|
|
|
}
|
|
|
|
bookmark.setAutojoin(true);
|
2014-11-23 20:36:44 +00:00
|
|
|
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-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() {
|
2014-11-17 19:02:46 +00:00
|
|
|
mAccountJid.setText(getString(R.string.using_account, mConversation
|
2014-12-21 20:43:58 +00:00
|
|
|
.getAccount().getJid().toBareJid()));
|
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());
|
2014-12-21 20:43:58 +00:00
|
|
|
mFullJid.setText(mConversation.getJid().toBareJid().toString());
|
2014-11-17 19:02:46 +00:00
|
|
|
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();
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
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);
|
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
|
|
|
}
|
|
|
|
Bitmap bm;
|
2014-10-21 12:57:16 +00:00
|
|
|
Contact contact = user.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
bm = avatarService().get(contact, getPixel(48));
|
2015-01-05 14:06:39 +00:00
|
|
|
tvDisplayName.setText(contact.getDisplayName());
|
|
|
|
tvStatus.setText(user.getName() + " \u2022 " + getStatus(user));
|
2014-07-29 12:42:17 +00:00
|
|
|
} else {
|
2014-10-21 12:57:16 +00:00
|
|
|
bm = avatarService().get(user.getName(), getPixel(48));
|
2015-01-05 14:06:39 +00:00
|
|
|
tvDisplayName.setText(user.getName());
|
|
|
|
tvStatus.setText(getStatus(user));
|
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
}
|
|
|
|
ImageView iv = (ImageView) view.findViewById(R.id.contact_photo);
|
|
|
|
iv.setImageBitmap(bm);
|
|
|
|
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-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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-07 14:03:29 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAffiliationChangedSuccessful(Jid jid) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAffiliationChangeFailed(Jid jid, int resId) {
|
|
|
|
|
|
|
|
}
|
2015-01-08 00:23:53 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRoleChangedSuccessful(String nick) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRoleChangeFailed(String nick, int resid) {
|
|
|
|
|
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|