muc invites in conference details
This commit is contained in:
parent
afe1244709
commit
841c6e04a9
|
@ -8,7 +8,6 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<TextView
|
||||
style="@style/sectionHeader"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -134,5 +133,13 @@
|
|||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
android:layout_marginTop="24dp"
|
||||
android:id="@+id/invite"
|
||||
style="?android:attr/buttonStyleSmall"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/invite_contacts"
|
||||
android:layout_gravity="center_horizontal"/>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
|
@ -11,4 +11,8 @@
|
|||
android:showAsAction="ifRoom"
|
||||
android:icon="@drawable/ic_action_chat"
|
||||
android:title="@string/start_conversation" />
|
||||
<item
|
||||
android:id="@+id/action_invite"
|
||||
android:showAsAction="ifRoom"
|
||||
android:title="@string/invite_contacts" />
|
||||
</menu>
|
||||
|
|
|
@ -30,4 +30,5 @@
|
|||
<string name="show_otr_key">OTR fingerprint</string>
|
||||
<string name="no_otr_fingerprint">No OTR Fingerprint generated. Just go ahead an start an encrypted conversation</string>
|
||||
<string name="start_conversation">Start Conversation</string>
|
||||
<string name="invite_contacts">Invite Contacts</string>
|
||||
</resources>
|
||||
|
|
|
@ -1271,6 +1271,7 @@ public class XmppConnectionService extends Service {
|
|||
invite.setAttribute("to", contact.getJid());
|
||||
x.addChild(invite);
|
||||
packet.addChild(x);
|
||||
Log.d(LOGTAG,packet.toString());
|
||||
conversation.getAccount().getXmppConnection().sendMessagePacket(packet);
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import eu.siacs.conversations.entities.MucOptions;
|
|||
import eu.siacs.conversations.entities.MucOptions.User;
|
||||
import eu.siacs.conversations.utils.UIHelper;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.preference.PreferenceManager;
|
||||
|
@ -20,6 +21,7 @@ import android.view.View;
|
|||
import android.view.View.OnClickListener;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ArrayAdapter;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ImageView;
|
||||
|
@ -35,6 +37,7 @@ public class MucDetailsActivity extends XmppActivity {
|
|||
private TextView mFullJid;
|
||||
private LinearLayout membersView;
|
||||
private LinearLayout mMoreDetails;
|
||||
private Button mInviteButton;
|
||||
private String uuid = null;
|
||||
private OnClickListener changeNickListener = new OnClickListener() {
|
||||
|
||||
|
@ -62,6 +65,18 @@ public class MucDetailsActivity extends XmppActivity {
|
|||
}
|
||||
};
|
||||
|
||||
private OnClickListener inviteListener = new OnClickListener() {
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Intent intent = new Intent(getApplicationContext(),
|
||||
NewConversationActivity.class);
|
||||
intent.setAction("invite");
|
||||
intent.putExtra("uuid",conversation.getUuid());
|
||||
startActivity(intent);
|
||||
}
|
||||
};
|
||||
|
||||
private List<User> users = new ArrayList<MucOptions.User>();
|
||||
|
||||
@Override
|
||||
|
@ -81,6 +96,8 @@ public class MucDetailsActivity extends XmppActivity {
|
|||
mMoreDetails = (LinearLayout) findViewById(R.id.muc_more_details);
|
||||
mMoreDetails.setVisibility(View.GONE);
|
||||
mSubject = (EditText) findViewById(R.id.muc_subject);
|
||||
mInviteButton = (Button) findViewById(R.id.invite);
|
||||
mInviteButton.setOnClickListener(inviteListener);
|
||||
getActionBar().setHomeButtonEnabled(true);
|
||||
getActionBar().setDisplayHomeAsUpEnabled(true);
|
||||
|
||||
|
|
|
@ -38,7 +38,6 @@ import android.widget.ProgressBar;
|
|||
import android.widget.TextView;
|
||||
import android.widget.ImageView;
|
||||
import android.annotation.SuppressLint;
|
||||
import android.app.Activity;
|
||||
import android.app.AlertDialog;
|
||||
import android.content.Context;
|
||||
import android.content.DialogInterface;
|
||||
|
@ -59,6 +58,7 @@ public class NewConversationActivity extends XmppActivity {
|
|||
private List<Contact> selectedContacts = new ArrayList<Contact>();
|
||||
|
||||
private boolean isActionMode = false;
|
||||
private boolean inviteIntent = false;
|
||||
private ActionMode actionMode = null;
|
||||
private AbsListView.MultiChoiceModeListener actionModeCallback = new AbsListView.MultiChoiceModeListener() {
|
||||
|
||||
|
@ -67,7 +67,8 @@ public class NewConversationActivity extends XmppActivity {
|
|||
menu.clear();
|
||||
MenuInflater inflater = mode.getMenuInflater();
|
||||
inflater.inflate(R.menu.newconversation_context, menu);
|
||||
SparseBooleanArray checkedItems = contactsView.getCheckedItemPositions();
|
||||
SparseBooleanArray checkedItems = contactsView
|
||||
.getCheckedItemPositions();
|
||||
selectedContacts.clear();
|
||||
for (int i = 0; i < aggregatedContacts.size(); ++i) {
|
||||
if (checkedItems.get(i, false)) {
|
||||
|
@ -77,12 +78,19 @@ public class NewConversationActivity extends XmppActivity {
|
|||
if (selectedContacts.size() == 0) {
|
||||
menu.findItem(R.id.action_start_conversation).setVisible(false);
|
||||
menu.findItem(R.id.action_contact_details).setVisible(false);
|
||||
} else if (selectedContacts.size() == 1) {
|
||||
menu.findItem(R.id.action_invite).setVisible(false);
|
||||
} else if ((selectedContacts.size() == 1)&&(!inviteIntent)) {
|
||||
menu.findItem(R.id.action_start_conversation).setVisible(true);
|
||||
menu.findItem(R.id.action_contact_details).setVisible(true);
|
||||
} else {
|
||||
menu.findItem(R.id.action_invite).setVisible(false);
|
||||
} else if (!inviteIntent){
|
||||
menu.findItem(R.id.action_start_conversation).setVisible(true);
|
||||
menu.findItem(R.id.action_contact_details).setVisible(false);
|
||||
menu.findItem(R.id.action_invite).setVisible(false);
|
||||
} else {
|
||||
menu.findItem(R.id.action_invite).setVisible(true);
|
||||
menu.findItem(R.id.action_start_conversation).setVisible(false);
|
||||
menu.findItem(R.id.action_contact_details).setVisible(false);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -109,11 +117,15 @@ public class NewConversationActivity extends XmppActivity {
|
|||
}
|
||||
break;
|
||||
case R.id.action_contact_details:
|
||||
Intent intent = new Intent(getApplicationContext(),ContactDetailsActivity.class);
|
||||
Intent intent = new Intent(getApplicationContext(),
|
||||
ContactDetailsActivity.class);
|
||||
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
||||
intent.putExtra("uuid", selectedContacts.get(0).getUuid());
|
||||
startActivity(intent);
|
||||
break;
|
||||
case R.id.action_invite:
|
||||
invite();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -127,6 +139,23 @@ public class NewConversationActivity extends XmppActivity {
|
|||
}
|
||||
};
|
||||
|
||||
private void invite() {
|
||||
List<Conversation> conversations = xmppConnectionService
|
||||
.getConversations();
|
||||
Conversation conversation = null;
|
||||
for (Conversation tmpConversation : conversations) {
|
||||
if (tmpConversation.getUuid().equals(
|
||||
getIntent().getStringExtra("uuid"))) {
|
||||
conversation = tmpConversation;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (conversation != null) {
|
||||
xmppConnectionService.inviteToConference(conversation, selectedContacts);
|
||||
}
|
||||
finish();
|
||||
}
|
||||
|
||||
private void startConference() {
|
||||
if (accounts.size() > 1) {
|
||||
getAccountChooser(new OnClickListener() {
|
||||
|
@ -147,7 +176,8 @@ public class NewConversationActivity extends XmppActivity {
|
|||
String mucName = new BigInteger(100, random).toString(32);
|
||||
String serverName = account.getXmppConnection().getMucServer();
|
||||
String jid = mucName + "@" + serverName;
|
||||
Conversation conversation = xmppConnectionService.findOrCreateConversation(account, jid , true);
|
||||
Conversation conversation = xmppConnectionService
|
||||
.findOrCreateConversation(account, jid, true);
|
||||
StringBuilder subject = new StringBuilder();
|
||||
for (int i = 0; i < selectedContacts.size(); ++i) {
|
||||
if (i + 1 != selectedContacts.size()) {
|
||||
|
@ -156,7 +186,8 @@ public class NewConversationActivity extends XmppActivity {
|
|||
subject.append(selectedContacts.get(i).getDisplayName());
|
||||
}
|
||||
}
|
||||
xmppConnectionService.sendConversationSubject(conversation, subject.toString());
|
||||
xmppConnectionService.sendConversationSubject(conversation,
|
||||
subject.toString());
|
||||
xmppConnectionService.inviteToConference(conversation, contacts);
|
||||
switchToConversation(conversation, null);
|
||||
}
|
||||
|
@ -212,6 +243,17 @@ public class NewConversationActivity extends XmppActivity {
|
|||
}
|
||||
};
|
||||
|
||||
@Override
|
||||
protected void onStart() {
|
||||
super.onStart();
|
||||
inviteIntent = "invite".equals(getIntent().getAction());
|
||||
if (inviteIntent) {
|
||||
contactsHeader.setVisibility(View.GONE);
|
||||
actionMode = contactsView.startActionMode(actionModeCallback);
|
||||
search.setVisibility(View.GONE);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
|
||||
|
@ -263,7 +305,8 @@ public class NewConversationActivity extends XmppActivity {
|
|||
contactJid.setText(contact.getJid());
|
||||
ImageView imageView = (ImageView) view
|
||||
.findViewById(R.id.contact_photo);
|
||||
imageView.setImageBitmap(UIHelper.getContactPicture(contact,null,90,this.getContext()));
|
||||
imageView.setImageBitmap(UIHelper.getContactPicture(contact,
|
||||
null, 90, this.getContext()));
|
||||
return view;
|
||||
}
|
||||
};
|
||||
|
@ -310,8 +353,7 @@ public class NewConversationActivity extends XmppActivity {
|
|||
accountList[i] = accounts.get(i).getJid();
|
||||
}
|
||||
|
||||
AlertDialog.Builder accountChooser = new AlertDialog.Builder(
|
||||
this);
|
||||
AlertDialog.Builder accountChooser = new AlertDialog.Builder(this);
|
||||
accountChooser.setTitle("Choose account");
|
||||
accountChooser.setItems(accountList, listener);
|
||||
return accountChooser.create();
|
||||
|
@ -326,19 +368,22 @@ public class NewConversationActivity extends XmppActivity {
|
|||
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
startConversation(clickedContact, clickedContact.getAccount(),true);
|
||||
startConversation(clickedContact,
|
||||
clickedContact.getAccount(), true);
|
||||
}
|
||||
});
|
||||
dialog.setNegativeButton("No", new OnClickListener() {
|
||||
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
startConversation(clickedContact, clickedContact.getAccount(),false);
|
||||
startConversation(clickedContact,
|
||||
clickedContact.getAccount(), false);
|
||||
}
|
||||
});
|
||||
dialog.create().show();
|
||||
} else {
|
||||
startConversation(clickedContact, clickedContact.getAccount(),false);
|
||||
startConversation(clickedContact, clickedContact.getAccount(),
|
||||
false);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -360,7 +405,8 @@ public class NewConversationActivity extends XmppActivity {
|
|||
getActionBar().setHomeButtonEnabled(false);
|
||||
String jid;
|
||||
try {
|
||||
jid = URLDecoder.decode(getIntent().getData().getEncodedPath(),"UTF-8").split("/")[1];
|
||||
jid = URLDecoder.decode(getIntent().getData().getEncodedPath(),
|
||||
"UTF-8").split("/")[1];
|
||||
} catch (UnsupportedEncodingException e) {
|
||||
jid = null;
|
||||
}
|
||||
|
@ -371,27 +417,32 @@ public class NewConversationActivity extends XmppActivity {
|
|||
|
||||
@Override
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
Conversation conversation = xmppConnectionService.findOrCreateConversation(accounts.get(which), finalJid, false);
|
||||
Conversation conversation = xmppConnectionService
|
||||
.findOrCreateConversation(
|
||||
accounts.get(which), finalJid,
|
||||
false);
|
||||
switchToConversation(conversation, null);
|
||||
finish();
|
||||
}
|
||||
}).show();
|
||||
} else {
|
||||
Conversation conversation = xmppConnectionService.findOrCreateConversation(this.accounts.get(0), jid, false);
|
||||
Conversation conversation = xmppConnectionService
|
||||
.findOrCreateConversation(this.accounts.get(0),
|
||||
jid, false);
|
||||
switchToConversation(conversation, null);
|
||||
finish();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (xmppConnectionService.getConversationCount() == 0) {
|
||||
getActionBar().setDisplayHomeAsUpEnabled(false);
|
||||
getActionBar().setHomeButtonEnabled(false);
|
||||
}
|
||||
this.rosterContacts.clear();
|
||||
for (int i = 0; i < accounts.size(); ++i) {
|
||||
rosterContacts.addAll(xmppConnectionService.getRoster(accounts.get(i)));
|
||||
rosterContacts.addAll(xmppConnectionService.getRoster(accounts
|
||||
.get(i)));
|
||||
}
|
||||
updateAggregatedContacts();
|
||||
}
|
||||
|
@ -462,6 +513,9 @@ public class NewConversationActivity extends XmppActivity {
|
|||
@Override
|
||||
public void onActionModeFinished(ActionMode mode) {
|
||||
super.onActionModeFinished(mode);
|
||||
if (inviteIntent) {
|
||||
finish();
|
||||
} else {
|
||||
this.isActionMode = false;
|
||||
contactsView.clearChoices();
|
||||
contactsView.requestLayout();
|
||||
|
@ -473,5 +527,6 @@ public class NewConversationActivity extends XmppActivity {
|
|||
});
|
||||
search.setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue