2014-03-04 01:51:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2014-05-22 18:54:54 +00:00
|
|
|
import org.openintents.openpgp.util.OpenPgpUtils;
|
|
|
|
|
2014-03-04 01:51:01 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-06-01 08:22:42 +00:00
|
|
|
import eu.siacs.conversations.crypto.PgpEngine;
|
2014-03-04 01:51:01 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
2014-07-16 10:34:09 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions.OnRenameListener;
|
2014-03-04 01:51:01 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions.User;
|
2014-07-16 10:34:09 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnConversationUpdate;
|
2014-03-04 01:51:01 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-07-12 01:44:23 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
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-03-04 01:51:01 +00:00
|
|
|
import android.os.Bundle;
|
|
|
|
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-03-05 14:41:14 +00:00
|
|
|
public class MucDetailsActivity extends XmppActivity {
|
2014-03-04 01:51:01 +00:00
|
|
|
public static final String ACTION_VIEW_MUC = "view_muc";
|
|
|
|
private Conversation conversation;
|
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;
|
|
|
|
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-07-16 10:34:09 +00:00
|
|
|
private OnClickListener inviteListener = new OnClickListener() {
|
2014-03-14 22:32:48 +00:00
|
|
|
|
|
|
|
@Override
|
2014-07-16 10:34:09 +00:00
|
|
|
public void onClick(View v) {
|
|
|
|
/*
|
|
|
|
* Intent intent = new Intent(getApplicationContext(),
|
|
|
|
* ContactsActivity.class); intent.setAction("invite");
|
|
|
|
* intent.putExtra("uuid",conversation.getUuid());
|
|
|
|
* startActivity(intent);
|
|
|
|
*/
|
2014-03-14 22:32:48 +00:00
|
|
|
}
|
|
|
|
};
|
2014-07-16 10:34:09 +00:00
|
|
|
|
|
|
|
private List<User> users = new ArrayList<MucOptions.User>();
|
|
|
|
private OnConversationUpdate onConvChanged = new OnConversationUpdate() {
|
2014-03-15 05:20:59 +00:00
|
|
|
|
|
|
|
@Override
|
2014-07-16 10:34:09 +00:00
|
|
|
public void onConversationUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
populateView();
|
|
|
|
}
|
|
|
|
});
|
2014-03-15 05:20:59 +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);
|
|
|
|
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-03-05 14:41:14 +00:00
|
|
|
getActionBar().setHomeButtonEnabled(true);
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-07-16 10:34:09 +00:00
|
|
|
mEditNickButton.setOnClickListener(new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
quickEdit(conversation.getMucOptions().getActualNick(),
|
|
|
|
new OnValueEdited() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onValueEdited(String value) {
|
|
|
|
xmppConnectionService.renameInMuc(conversation,
|
|
|
|
value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
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()) {
|
|
|
|
case android.R.id.home:
|
|
|
|
finish();
|
|
|
|
break;
|
|
|
|
case R.id.action_edit_subject:
|
|
|
|
if (conversation != null) {
|
|
|
|
quickEdit(conversation.getName(true), new OnValueEdited() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onValueEdited(String value) {
|
|
|
|
MessagePacket packet = xmppConnectionService
|
|
|
|
.getMessageGenerator().conferenceSubject(
|
|
|
|
conversation, value);
|
|
|
|
xmppConnectionService.sendMessagePacket(
|
|
|
|
conversation.getAccount(), packet);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(menuItem);
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 "";
|
|
|
|
}
|
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
2014-07-16 10:34:09 +00:00
|
|
|
registerListener();
|
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) {
|
|
|
|
for (Conversation mConv : xmppConnectionService.getConversations()) {
|
|
|
|
if (mConv.getUuid().equals(uuid)) {
|
|
|
|
this.conversation = mConv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.conversation != null) {
|
2014-07-16 10:34:09 +00:00
|
|
|
populateView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService.removeOnConversationListChangedListener();
|
|
|
|
}
|
|
|
|
super.onStop();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void registerListener() {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService
|
|
|
|
.setOnConversationListChangedListener(this.onConvChanged);
|
|
|
|
xmppConnectionService.setOnRenameListener(new OnRenameListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRename(final boolean success) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
populateView();
|
|
|
|
if (success) {
|
|
|
|
Toast.makeText(MucDetailsActivity.this,
|
|
|
|
getString(R.string.your_nick_has_been_changed),
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
} else {
|
|
|
|
Toast.makeText(MucDetailsActivity.this,
|
|
|
|
getString(R.string.nick_in_use),
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void populateView() {
|
|
|
|
mYourPhoto.setImageBitmap(UIHelper.getContactPicture(conversation
|
|
|
|
.getMucOptions().getActualNick(), 48, this, false));
|
|
|
|
setTitle(conversation.getName(true));
|
|
|
|
mFullJid.setText(conversation.getContactJid().split("/")[0]);
|
|
|
|
mYourNick.setText(conversation.getMucOptions().getActualNick());
|
|
|
|
mRoleAffiliaton = (TextView) findViewById(R.id.muc_role);
|
|
|
|
if (conversation.getMucOptions().online()) {
|
|
|
|
mMoreDetails.setVisibility(View.VISIBLE);
|
|
|
|
User self = conversation.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(conversation.getMucOptions().getUsers());
|
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
membersView.removeAllViews();
|
|
|
|
for (final User contact : conversation.getMucOptions().getUsers()) {
|
|
|
|
View view = (View) inflater.inflate(R.layout.contact, null);
|
|
|
|
TextView displayName = (TextView) view
|
|
|
|
.findViewById(R.id.contact_display_name);
|
|
|
|
TextView key = (TextView) view.findViewById(R.id.key);
|
|
|
|
displayName.setText(contact.getName());
|
|
|
|
TextView role = (TextView) view.findViewById(R.id.contact_jid);
|
|
|
|
role.setText(getReadableRole(contact.getRole()));
|
|
|
|
if (contact.getPgpKeyId() != 0) {
|
|
|
|
key.setVisibility(View.VISIBLE);
|
|
|
|
key.setOnClickListener(new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
viewPgpKey(contact);
|
2014-05-22 18:54:54 +00:00
|
|
|
}
|
2014-07-16 10:34:09 +00:00
|
|
|
});
|
|
|
|
key.setText(OpenPgpUtils.convertKeyIdToHex(contact
|
|
|
|
.getPgpKeyId()));
|
|
|
|
}
|
|
|
|
Bitmap bm = UIHelper.getContactPicture(contact.getName(), 48, this,
|
|
|
|
false);
|
|
|
|
ImageView iv = (ImageView) view.findViewById(R.id.contact_photo);
|
|
|
|
iv.setImageBitmap(bm);
|
|
|
|
membersView.addView(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void viewPgpKey(User user) {
|
|
|
|
PgpEngine pgp = xmppConnectionService.getPgpEngine();
|
|
|
|
if (pgp != null) {
|
|
|
|
PendingIntent intent = pgp.getIntentForKey(
|
|
|
|
conversation.getAccount(), user.getPgpKeyId());
|
|
|
|
if (intent != null) {
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(intent.getIntentSender(), 0,
|
|
|
|
null, 0, 0, 0);
|
|
|
|
} catch (SendIntentException e) {
|
|
|
|
|
2014-03-04 01:51:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|