
Fixes #791 Squash of commits: 534f25d7dae3ce6852243e28fdd0a69ac01e9463 808fdf5147f27a912a60bee39aa4bf1ddd4f43b4 1eaf8a8330710ad35ba7c368e04f909af623ae4c 31585242c2359efdcd0eeddb9745077f54dbc9eb 2e69bd0bd0286ed1e98a42f4c3421ba4d8cf524b e904fb5015bf3a1904ab941a1957edf3b1e7abd2 eebbadf3b3816bbf8fcccb763e419fed252d266f 7c5b87724ce494e5a6e8026557ed50a8fd9f23e8 b0eaaf446937794fe19cbdb4f8309c3ff83d4e42 8c652f9e8bb3512958d9ad8c6f1326505f2d98c8 ad0ea1ad948ff6f8fde7b0b10f5163dc8852032f f5d49897e0dba691ef53a0eddb9ed34d129ad442 a08fa64c505bd895b7c626cfad182380373be20b de67079113e08394a276048c31f6b21baa300829 9069f342173ba30c2b20c67529c7ff497a6a257d 0169fa79d161ee898c4b6762e207087682a952d8 8585a5bd75a5d56927fed8317729bd15fffe4dcc 0053528a078369e0b65dcf71bda251072a1299c7 e901a9c3554bd7cca193e92919b463991eadfea7 c5c78257434813c69ab9b7558bcc8f7cbe858433 e905af348d46d77bc46b5f7211527684acc02fab 13a0f9a10c7892b0f90f5fabd2f2615701b0fd66 2cfba1e24b0139839e4453b92be7e20634d150cf 58e074fb5bb44b05a8104250fccd7c024c808c1a 0d6cf98fc8eab212d798ac79b336f9b70a14f06d e23620f56b85bcab9f3b5d9ce1c01524cd9674dc d72cd2fcc8d54176c3ff53411a69b9bb4642eff3 195143dff8836623a37094a6b8fa6aa01ef31580 5f5f3caf3a1e480a99d27ee5c34ba516419c52e4 1dee3d5861c9f9c710da4cbda3688d94c622ca93 23949b8aa32c78b27bab49bb3c4f3ff588925ce1 9bf97f8ae522796e0dacb7f6fe7a7f90f86a93a1
400 lines
12 KiB
Java
400 lines
12 KiB
Java
package eu.siacs.conversations.ui;
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.app.PendingIntent;
|
|
import android.content.Context;
|
|
import android.content.IntentSender.SendIntentException;
|
|
import android.graphics.Bitmap;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.view.ContextMenu;
|
|
import android.view.LayoutInflater;
|
|
import android.view.Menu;
|
|
import android.view.MenuItem;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.widget.Button;
|
|
import android.widget.ImageButton;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
import android.widget.Toast;
|
|
|
|
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;
|
|
import eu.siacs.conversations.entities.Account;
|
|
import eu.siacs.conversations.entities.Bookmark;
|
|
import eu.siacs.conversations.entities.Contact;
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
import eu.siacs.conversations.entities.MucOptions.User;
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnMucRosterUpdate;
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnConversationUpdate;
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
|
|
|
public class ConferenceDetailsActivity extends XmppActivity implements OnConversationUpdate, OnMucRosterUpdate {
|
|
public static final String ACTION_VIEW_MUC = "view_muc";
|
|
private Conversation mConversation;
|
|
private OnClickListener inviteListener = new OnClickListener() {
|
|
|
|
@Override
|
|
public void onClick(View v) {
|
|
inviteToConversation(mConversation);
|
|
}
|
|
};
|
|
private TextView mYourNick;
|
|
private ImageView mYourPhoto;
|
|
private ImageButton mEditNickButton;
|
|
private TextView mRoleAffiliaton;
|
|
private TextView mFullJid;
|
|
private TextView mAccountJid;
|
|
private LinearLayout membersView;
|
|
private LinearLayout mMoreDetails;
|
|
private Button mInviteButton;
|
|
private String uuid = null;
|
|
private List<User> users = new ArrayList<>();
|
|
private User mSelectedUser = null;
|
|
|
|
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();
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
@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();
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public void userInputRequried(PendingIntent pi, Conversation object) {
|
|
|
|
}
|
|
};
|
|
|
|
@Override
|
|
public void onConversationUpdate() {
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
public void run() {
|
|
populateView();
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public void onMucRosterUpdate() {
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
public void run() {
|
|
populateView();
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_muc_details);
|
|
mYourNick = (TextView) findViewById(R.id.muc_your_nick);
|
|
mYourPhoto = (ImageView) findViewById(R.id.your_photo);
|
|
mEditNickButton = (ImageButton) findViewById(R.id.edit_nick_button);
|
|
mFullJid = (TextView) findViewById(R.id.muc_jabberid);
|
|
membersView = (LinearLayout) findViewById(R.id.muc_members);
|
|
mAccountJid = (TextView) findViewById(R.id.details_account);
|
|
mMoreDetails = (LinearLayout) findViewById(R.id.muc_more_details);
|
|
mMoreDetails.setVisibility(View.GONE);
|
|
mInviteButton = (Button) findViewById(R.id.invite);
|
|
mInviteButton.setOnClickListener(inviteListener);
|
|
if (getActionBar() != null) {
|
|
getActionBar().setHomeButtonEnabled(true);
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
}
|
|
mEditNickButton.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
public void onClick(View v) {
|
|
quickEdit(mConversation.getMucOptions().getActualNick(),
|
|
new OnValueEdited() {
|
|
|
|
@Override
|
|
public void onValueEdited(String value) {
|
|
xmppConnectionService.renameInMuc(mConversation,value,renameCallback);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public boolean onOptionsItemSelected(MenuItem menuItem) {
|
|
switch (menuItem.getItemId()) {
|
|
case android.R.id.home:
|
|
finish();
|
|
break;
|
|
case R.id.action_edit_subject:
|
|
if (mConversation != null) {
|
|
quickEdit(mConversation.getName(), new OnValueEdited() {
|
|
|
|
@Override
|
|
public void onValueEdited(String value) {
|
|
MessagePacket packet = xmppConnectionService
|
|
.getMessageGenerator().conferenceSubject(
|
|
mConversation, value);
|
|
xmppConnectionService.sendMessagePacket(
|
|
mConversation.getAccount(), packet);
|
|
}
|
|
});
|
|
}
|
|
break;
|
|
case R.id.action_save_as_bookmark:
|
|
saveAsBookmark();
|
|
break;
|
|
case R.id.action_delete_bookmark:
|
|
deleteBookmark();
|
|
break;
|
|
}
|
|
return super.onOptionsItemSelected(menuItem);
|
|
}
|
|
|
|
public String getReadableRole(int role) {
|
|
switch (role) {
|
|
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 "";
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected String getShareableUri() {
|
|
if (mConversation != null) {
|
|
return "xmpp:" + mConversation.getJid().toBareJid().toString() + "?join";
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
@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.getJid().toBareJid())) {
|
|
menuItemSaveBookmark.setVisible(false);
|
|
menuItemDeleteBookmark.setVisible(true);
|
|
} else {
|
|
menuItemDeleteBookmark.setVisible(false);
|
|
menuItemSaveBookmark.setVisible(true);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
getMenuInflater().inflate(R.menu.muc_details, menu);
|
|
return true;
|
|
}
|
|
|
|
@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) {
|
|
Conversation conversation = xmppConnectionService.findOrCreateConversation(this.mConversation.getAccount(),user.getJid().toBareJid(),false);
|
|
switchToConversation(conversation);
|
|
}
|
|
}
|
|
|
|
protected void saveAsBookmark() {
|
|
Account account = mConversation.getAccount();
|
|
Bookmark bookmark = new Bookmark(account, mConversation.getJid().toBareJid());
|
|
if (!mConversation.getJid().isBareJid()) {
|
|
bookmark.setNick(mConversation.getJid().getResourcepart());
|
|
}
|
|
bookmark.setAutojoin(true);
|
|
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);
|
|
}
|
|
|
|
@Override
|
|
void onBackendConnected() {
|
|
if (getIntent().getAction().equals(ACTION_VIEW_MUC)) {
|
|
this.uuid = getIntent().getExtras().getString("uuid");
|
|
}
|
|
if (uuid != null) {
|
|
this.mConversation = xmppConnectionService
|
|
.findConversationByUuid(uuid);
|
|
if (this.mConversation != null) {
|
|
populateView();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void populateView() {
|
|
mAccountJid.setText(getString(R.string.using_account, mConversation
|
|
.getAccount().getJid().toBareJid()));
|
|
mYourPhoto.setImageBitmap(avatarService().get(
|
|
mConversation.getAccount(), getPixel(48)));
|
|
setTitle(mConversation.getName());
|
|
mFullJid.setText(mConversation.getJid().toBareJid().toString());
|
|
mYourNick.setText(mConversation.getMucOptions().getActualNick());
|
|
mRoleAffiliaton = (TextView) findViewById(R.id.muc_role);
|
|
if (mConversation.getMucOptions().online()) {
|
|
mMoreDetails.setVisibility(View.VISIBLE);
|
|
User self = mConversation.getMucOptions().getSelf();
|
|
switch (self.getAffiliation()) {
|
|
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;
|
|
}
|
|
}
|
|
this.users.clear();
|
|
this.users.addAll(mConversation.getMucOptions().getUsers());
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
membersView.removeAllViews();
|
|
for (final User user : mConversation.getMucOptions().getUsers()) {
|
|
View view = inflater.inflate(R.layout.contact, membersView,
|
|
false);
|
|
this.setListItemBackgroundOnView(view);
|
|
view.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
highlightInMuc(mConversation, user.getName());
|
|
}
|
|
});
|
|
registerForContextMenu(view);
|
|
view.setTag(user);
|
|
TextView name = (TextView) view
|
|
.findViewById(R.id.contact_display_name);
|
|
TextView key = (TextView) view.findViewById(R.id.key);
|
|
TextView role = (TextView) view.findViewById(R.id.contact_jid);
|
|
if (user.getPgpKeyId() != 0) {
|
|
key.setVisibility(View.VISIBLE);
|
|
key.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
public void onClick(View v) {
|
|
viewPgpKey(user);
|
|
}
|
|
});
|
|
key.setText(OpenPgpUtils.convertKeyIdToHex(user.getPgpKeyId()));
|
|
}
|
|
Bitmap bm;
|
|
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()));
|
|
} else {
|
|
bm = avatarService().get(user.getName(), getPixel(48));
|
|
name.setText(user.getName());
|
|
role.setText(getReadableRole(user.getRole()));
|
|
}
|
|
ImageView iv = (ImageView) view.findViewById(R.id.contact_photo);
|
|
iv.setImageBitmap(bm);
|
|
membersView.addView(view);
|
|
}
|
|
}
|
|
|
|
@SuppressWarnings("deprecation")
|
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
|
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));
|
|
}
|
|
}
|
|
|
|
private void viewPgpKey(User user) {
|
|
PgpEngine pgp = xmppConnectionService.getPgpEngine();
|
|
if (pgp != null) {
|
|
PendingIntent intent = pgp.getIntentForKey(
|
|
mConversation.getAccount(), user.getPgpKeyId());
|
|
if (intent != null) {
|
|
try {
|
|
startIntentSenderForResult(intent.getIntentSender(), 0,
|
|
null, 0, 0, 0);
|
|
} catch (SendIntentException ignored) {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|