aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-04-10 14:12:08 +0200
committerDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-04-10 14:12:08 +0200
commit644473205ab261157f500470d496999db665d75f (patch)
treeca059f9b294bfaa79c6ed8dfb3d6fedddcaecf06 /src
parentba0bedc5facabc573023925660d7d49b27d5c68c (diff)
incomming jingle packets are routed to their connection. added presence chooser in gui
Diffstat (limited to 'src')
-rw-r--r--src/eu/siacs/conversations/entities/Conversation.java10
-rw-r--r--src/eu/siacs/conversations/entities/Message.java4
-rw-r--r--src/eu/siacs/conversations/services/XmppConnectionService.java5
-rw-r--r--src/eu/siacs/conversations/ui/ConversationActivity.java305
-rw-r--r--src/eu/siacs/conversations/ui/OnPresenceSelected.java5
-rw-r--r--src/eu/siacs/conversations/xmpp/jingle/JingleConnection.java27
-rw-r--r--src/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java112
-rw-r--r--src/eu/siacs/conversations/xmpp/jingle/stanzas/JinglePacket.java8
8 files changed, 316 insertions, 160 deletions
diff --git a/src/eu/siacs/conversations/entities/Conversation.java b/src/eu/siacs/conversations/entities/Conversation.java
index f8c6a2a6..6eb688ae 100644
--- a/src/eu/siacs/conversations/entities/Conversation.java
+++ b/src/eu/siacs/conversations/entities/Conversation.java
@@ -45,6 +45,8 @@ public class Conversation extends AbstractEntity {
private int status;
private long created;
private int mode;
+
+ private String nextPresence;
private transient List<Message> messages = null;
private transient Account account = null;
@@ -308,4 +310,12 @@ public class Conversation extends AbstractEntity {
public void setContactJid(String jid) {
this.contactJid = jid;
}
+
+ public void setNextPresence(String presence) {
+ this.nextPresence = presence;
+ }
+
+ public String getNextPresence() {
+ return this.nextPresence;
+ }
}
diff --git a/src/eu/siacs/conversations/entities/Message.java b/src/eu/siacs/conversations/entities/Message.java
index a81ff0d3..841edfff 100644
--- a/src/eu/siacs/conversations/entities/Message.java
+++ b/src/eu/siacs/conversations/entities/Message.java
@@ -166,4 +166,8 @@ public class Message extends AbstractEntity {
public int getType() {
return this.type;
}
+
+ public void setPresence(String presence) {
+ this.counterpart = this.counterpart.split("/")[0] + "/" + presence;
+ }
}
diff --git a/src/eu/siacs/conversations/services/XmppConnectionService.java b/src/eu/siacs/conversations/services/XmppConnectionService.java
index f5b19d53..1de6f6cc 100644
--- a/src/eu/siacs/conversations/services/XmppConnectionService.java
+++ b/src/eu/siacs/conversations/services/XmppConnectionService.java
@@ -372,7 +372,7 @@ public class XmppConnectionService extends Service {
@Override
public void onJinglePacketReceived(Account account, JinglePacket packet) {
- Log.d(LOGTAG,account.getJid()+": jingle packet received"+packet.toString());
+ mJingleConnectionManager.deliverPacket(account, packet);
}
};
@@ -401,8 +401,9 @@ public class XmppConnectionService extends Service {
return this.fileBackend;
}
- public Message attachImageToConversation(Conversation conversation, Uri uri) {
+ public Message attachImageToConversation(Conversation conversation, String presence, Uri uri) {
Message message = new Message(conversation, "", Message.ENCRYPTION_NONE);
+ message.setPresence(presence);
message.setType(Message.TYPE_IMAGE);
File file = this.fileBackend.copyImageToPrivateStorage(message, uri);
Log.d(LOGTAG,"new file"+file.getAbsolutePath());
diff --git a/src/eu/siacs/conversations/ui/ConversationActivity.java b/src/eu/siacs/conversations/ui/ConversationActivity.java
index 85186e9b..06a72689 100644
--- a/src/eu/siacs/conversations/ui/ConversationActivity.java
+++ b/src/eu/siacs/conversations/ui/ConversationActivity.java
@@ -1,9 +1,7 @@
package eu.siacs.conversations.ui;
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.InputStream;
import java.util.ArrayList;
+import java.util.Hashtable;
import java.util.List;
import eu.siacs.conversations.R;
@@ -11,11 +9,8 @@ import eu.siacs.conversations.entities.Account;
import eu.siacs.conversations.entities.Contact;
import eu.siacs.conversations.entities.Conversation;
import eu.siacs.conversations.entities.Message;
-import eu.siacs.conversations.persistance.FileBackend;
import eu.siacs.conversations.utils.ExceptionHelper;
-import eu.siacs.conversations.utils.PhoneHelper;
import eu.siacs.conversations.utils.UIHelper;
-import android.net.Uri;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.app.AlertDialog;
@@ -24,12 +19,10 @@ import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
-import android.graphics.Bitmap;
import android.graphics.Color;
import android.graphics.Typeface;
import android.support.v4.widget.SlidingPaneLayout;
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
-import android.util.Log;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.Menu;
@@ -50,7 +43,8 @@ public class ConversationActivity extends XmppActivity {
public static final String VIEW_CONVERSATION = "viewConversation";
public static final String CONVERSATION = "conversationUuid";
public static final String TEXT = "text";
-
+ public static final String PRESENCE = "eu.siacs.conversations.presence";
+
public static final int REQUEST_SEND_MESSAGE = 0x75441;
public static final int REQUEST_DECRYPT_PGP = 0x76783;
private static final int ATTACH_FILE = 0x48502;
@@ -60,30 +54,32 @@ public class ConversationActivity extends XmppActivity {
private List<Conversation> conversationList = new ArrayList<Conversation>();
private Conversation selectedConversation = null;
private ListView listView;
-
+
private boolean paneShouldBeOpen = true;
private boolean useSubject = true;
private ArrayAdapter<Conversation> listAdapter;
-
+
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
-
+
@Override
public void onConversationListChanged() {
runOnUiThread(new Runnable() {
-
+
@Override
- public void run() {
+ public void run() {
updateConversationList();
- if(paneShouldBeOpen) {
+ if (paneShouldBeOpen) {
if (conversationList.size() >= 1) {
swapConversationFragment();
} else {
- startActivity(new Intent(getApplicationContext(), ContactsActivity.class));
+ startActivity(new Intent(getApplicationContext(),
+ ContactsActivity.class));
finish();
}
}
- ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
- if (selectedFragment!=null) {
+ ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
+ .findFragmentByTag("conversation");
+ if (selectedFragment != null) {
selectedFragment.updateMessages();
}
}
@@ -91,19 +87,8 @@ public class ConversationActivity extends XmppActivity {
}
};
- private DialogInterface.OnClickListener addToRoster = new DialogInterface.OnClickListener() {
-
- @Override
- public void onClick(DialogInterface dialog, int which) {
- String jid = getSelectedConversation().getContactJid();
- Account account = getSelectedConversation().getAccount();
- String name = jid.split("@")[0];
- Contact contact = new Contact(account, name, jid, null);
- xmppConnectionService.createContact(contact);
- }
- };
protected ConversationActivity activity = this;
-
+
public List<Conversation> getConversationList() {
return this.conversationList;
}
@@ -111,19 +96,19 @@ public class ConversationActivity extends XmppActivity {
public Conversation getSelectedConversation() {
return this.selectedConversation;
}
-
+
public ListView getConversationListView() {
return this.listView;
}
-
+
public SlidingPaneLayout getSlidingPaneLayout() {
return this.spl;
}
-
+
public boolean shouldPaneBeOpen() {
return paneShouldBeOpen;
}
-
+
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -149,7 +134,7 @@ public class ConversationActivity extends XmppActivity {
return view;
}
if (!spl.isSlideable()) {
- if (conv==getSelectedConversation()) {
+ if (conv == getSelectedConversation()) {
view.setBackgroundColor(0xffdddddd);
} else {
view.setBackgroundColor(Color.TRANSPARENT);
@@ -157,29 +142,35 @@ public class ConversationActivity extends XmppActivity {
} else {
view.setBackgroundColor(Color.TRANSPARENT);
}
- TextView convName = (TextView) view.findViewById(R.id.conversation_name);
+ TextView convName = (TextView) view
+ .findViewById(R.id.conversation_name);
convName.setText(conv.getName(useSubject));
- TextView convLastMsg = (TextView) view.findViewById(R.id.conversation_lastmsg);
+ TextView convLastMsg = (TextView) view
+ .findViewById(R.id.conversation_lastmsg);
convLastMsg.setText(conv.getLatestMessage().getBody());
-
- if(!conv.isRead()) {
- convName.setTypeface(null,Typeface.BOLD);
- convLastMsg.setTypeface(null,Typeface.BOLD);
+
+ if (!conv.isRead()) {
+ convName.setTypeface(null, Typeface.BOLD);
+ convLastMsg.setTypeface(null, Typeface.BOLD);
} else {
- convName.setTypeface(null,Typeface.NORMAL);
- convLastMsg.setTypeface(null,Typeface.NORMAL);
+ convName.setTypeface(null, Typeface.NORMAL);
+ convLastMsg.setTypeface(null, Typeface.NORMAL);
}
-
+
((TextView) view.findViewById(R.id.conversation_lastupdate))
- .setText(UIHelper.readableTimeDifference(conv.getLatestMessage().getTimeSent()));
-
- ImageView imageView = (ImageView) view.findViewById(R.id.conversation_image);
- imageView.setImageBitmap(UIHelper.getContactPicture(conv.getContact(), conv.getName(useSubject),200, activity.getApplicationContext()));
+ .setText(UIHelper.readableTimeDifference(conv
+ .getLatestMessage().getTimeSent()));
+
+ ImageView imageView = (ImageView) view
+ .findViewById(R.id.conversation_image);
+ imageView.setImageBitmap(UIHelper.getContactPicture(
+ conv.getContact(), conv.getName(useSubject), 200,
+ activity.getApplicationContext()));
return view;
}
};
-
+
listView.setAdapter(this.listAdapter);
listView.setOnItemClickListener(new OnItemClickListener() {
@@ -190,7 +181,7 @@ public class ConversationActivity extends XmppActivity {
paneShouldBeOpen = false;
if (selectedConversation != conversationList.get(position)) {
selectedConversation = conversationList.get(position);
- swapConversationFragment(); //.onBackendConnected(conversationList.get(position));
+ swapConversationFragment(); // .onBackendConnected(conversationList.get(position));
} else {
spl.closePane();
}
@@ -214,13 +205,16 @@ public class ConversationActivity extends XmppActivity {
@Override
public void onPanelClosed(View arg0) {
paneShouldBeOpen = false;
- if ((conversationList.size() > 0)&&(getSelectedConversation()!=null)) {
+ if ((conversationList.size() > 0)
+ && (getSelectedConversation() != null)) {
getActionBar().setDisplayHomeAsUpEnabled(true);
- getActionBar().setTitle(getSelectedConversation().getName(useSubject));
+ getActionBar().setTitle(
+ getSelectedConversation().getName(useSubject));
invalidateOptionsMenu();
if (!getSelectedConversation().isRead()) {
getSelectedConversation().markRead();
- UIHelper.updateNotification(getApplicationContext(), getConversationList(), null, false);
+ UIHelper.updateNotification(getApplicationContext(),
+ getConversationList(), null, false);
listView.invalidateViews();
}
}
@@ -239,12 +233,15 @@ public class ConversationActivity extends XmppActivity {
getMenuInflater().inflate(R.menu.conversations, menu);
MenuItem menuSecure = (MenuItem) menu.findItem(R.id.action_security);
MenuItem menuArchive = (MenuItem) menu.findItem(R.id.action_archive);
- MenuItem menuMucDetails = (MenuItem) menu.findItem(R.id.action_muc_details);
- MenuItem menuContactDetails = (MenuItem) menu.findItem(R.id.action_contact_details);
- MenuItem menuInviteContacts = (MenuItem) menu.findItem(R.id.action_invite);
+ MenuItem menuMucDetails = (MenuItem) menu
+ .findItem(R.id.action_muc_details);
+ MenuItem menuContactDetails = (MenuItem) menu
+ .findItem(R.id.action_contact_details);
+ MenuItem menuInviteContacts = (MenuItem) menu
+ .findItem(R.id.action_invite);
MenuItem menuAttach = (MenuItem) menu.findItem(R.id.action_attach_file);
-
- if ((spl.isOpen()&&(spl.isSlideable()))) {
+
+ if ((spl.isOpen() && (spl.isSlideable()))) {
menuArchive.setVisible(false);
menuMucDetails.setVisible(false);
menuContactDetails.setVisible(false);
@@ -252,8 +249,9 @@ public class ConversationActivity extends XmppActivity {
menuInviteContacts.setVisible(false);
menuAttach.setVisible(false);
} else {
- ((MenuItem) menu.findItem(R.id.action_add)).setVisible(!spl.isSlideable());
- if (this.getSelectedConversation()!=null) {
+ ((MenuItem) menu.findItem(R.id.action_add)).setVisible(!spl
+ .isSlideable());
+ if (this.getSelectedConversation() != null) {
if (this.getSelectedConversation().getMode() == Conversation.MODE_MULTI) {
menuMucDetails.setVisible(true);
menuContactDetails.setVisible(false);
@@ -265,7 +263,8 @@ public class ConversationActivity extends XmppActivity {
menuMucDetails.setVisible(false);
menuInviteContacts.setVisible(false);
menuAttach.setVisible(true);
- if (this.getSelectedConversation().getLatestMessage().getEncryption() != Message.ENCRYPTION_NONE) {
+ if (this.getSelectedConversation().getLatestMessage()
+ .getEncryption() != Message.ENCRYPTION_NONE) {
menuSecure.setIcon(R.drawable.ic_action_secure);
}
}
@@ -281,11 +280,19 @@ public class ConversationActivity extends XmppActivity {
spl.openPane();
break;
case R.id.action_attach_file:
- Intent attachFileIntent = new Intent();
- attachFileIntent.setType("image/*");
- attachFileIntent.setAction(Intent.ACTION_GET_CONTENT);
- startActivityForResult(Intent.createChooser(attachFileIntent,
- "Attach File"), ATTACH_FILE);
+ selectPresence(getSelectedConversation(), new OnPresenceSelected() {
+
+ @Override
+ public void onPresenceSelected(boolean success, String presence) {
+ if (success) {
+ Intent attachFileIntent = new Intent();
+ attachFileIntent.setType("image/*");
+ attachFileIntent.setAction(Intent.ACTION_GET_CONTENT);
+ Intent chooser = Intent.createChooser(attachFileIntent, "Attach File");
+ startActivityForResult(chooser, ATTACH_FILE);
+ }
+ }
+ });
break;
case R.id.action_add:
startActivity(new Intent(this, ContactsActivity.class));
@@ -305,22 +312,16 @@ public class ConversationActivity extends XmppActivity {
case R.id.action_contact_details:
Contact contact = this.getSelectedConversation().getContact();
if (contact != null) {
- Intent intent = new Intent(this,ContactDetailsActivity.class);
+ Intent intent = new Intent(this, ContactDetailsActivity.class);
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
intent.putExtra("uuid", contact.getUuid());
startActivity(intent);
} else {
- String jid = getSelectedConversation().getContactJid();
- AlertDialog.Builder builder = new AlertDialog.Builder(this);
- builder.setTitle(jid);
- builder.setMessage("The contact is not in your roster. Would you like to add it.");
- builder.setNegativeButton("Cancel", null);
- builder.setPositiveButton("Add",addToRoster);
- builder.create().show();
+ showAddToRosterDialog(getSelectedConversation());
}
break;
case R.id.action_muc_details:
- Intent intent = new Intent(this,MucDetailsActivity.class);
+ Intent intent = new Intent(this, MucDetailsActivity.class);
intent.setAction(MucDetailsActivity.ACTION_VIEW_MUC);
intent.putExtra("uuid", getSelectedConversation().getUuid());
startActivity(intent);
@@ -329,17 +330,18 @@ public class ConversationActivity extends XmppActivity {
Intent inviteIntent = new Intent(getApplicationContext(),
ContactsActivity.class);
inviteIntent.setAction("invite");
- inviteIntent.putExtra("uuid",selectedConversation.getUuid());
+ inviteIntent.putExtra("uuid", selectedConversation.getUuid());
startActivity(inviteIntent);
break;
case R.id.action_security:
final Conversation selConv = getSelectedConversation();
View menuItemView = findViewById(R.id.action_security);
PopupMenu popup = new PopupMenu(this, menuItemView);
- final ConversationFragment fragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
- if (fragment!=null) {
+ final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
+ .findFragmentByTag("conversation");
+ if (fragment != null) {
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-
+
@Override
public boolean onMenuItemClick(MenuItem item) {
switch (item.getItemId()) {
@@ -363,26 +365,31 @@ public class ConversationActivity extends XmppActivity {
return true;
}
});
- popup.inflate(R.menu.encryption_choices);
- switch (selConv.nextMessageEncryption) {
+ popup.inflate(R.menu.encryption_choices);
+ switch (selConv.nextMessageEncryption) {
case Message.ENCRYPTION_NONE:
- popup.getMenu().findItem(R.id.encryption_choice_none).setChecked(true);
+ popup.getMenu().findItem(R.id.encryption_choice_none)
+ .setChecked(true);
break;
case Message.ENCRYPTION_OTR:
- popup.getMenu().findItem(R.id.encryption_choice_otr).setChecked(true);
+ popup.getMenu().findItem(R.id.encryption_choice_otr)
+ .setChecked(true);
break;
case Message.ENCRYPTION_PGP:
- popup.getMenu().findItem(R.id.encryption_choice_pgp).setChecked(true);
+ popup.getMenu().findItem(R.id.encryption_choice_pgp)
+ .setChecked(true);
break;
case Message.ENCRYPTION_DECRYPTED:
- popup.getMenu().findItem(R.id.encryption_choice_pgp).setChecked(true);
+ popup.getMenu().findItem(R.id.encryption_choice_pgp)
+ .setChecked(true);
break;
default:
- popup.getMenu().findItem(R.id.encryption_choice_none).setChecked(true);
+ popup.getMenu().findItem(R.id.encryption_choice_none)
+ .setChecked(true);
break;
}
- popup.show();
- }
+ popup.show();
+ }
break;
default:
@@ -393,10 +400,11 @@ public class ConversationActivity extends XmppActivity {
protected ConversationFragment swapConversationFragment() {
ConversationFragment selectedFragment = new ConversationFragment();
-
+
FragmentTransaction transaction = getFragmentManager()
.beginTransaction();
- transaction.replace(R.id.selected_conversation, selectedFragment,"conversation");
+ transaction.replace(R.id.selected_conversation, selectedFragment,
+ "conversation");
transaction.commit();
return selectedFragment;
}
@@ -411,24 +419,25 @@ public class ConversationActivity extends XmppActivity {
}
return super.onKeyDown(keyCode, event);
}
-
+
@Override
public void onStart() {
super.onStart();
- SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
+ SharedPreferences preferences = PreferenceManager
+ .getDefaultSharedPreferences(this);
this.useSubject = preferences.getBoolean("use_subject_in_muc", true);
if (this.xmppConnectionServiceBound) {
this.onBackendConnected();
}
- if (conversationList.size()>=1) {
+ if (conversationList.size() >= 1) {
onConvChanged.onConversationListChanged();
}
}
-
+
@Override
protected void onStop() {
if (xmppConnectionServiceBound) {
- xmppConnectionService.removeOnConversationListChangedListener();
+ xmppConnectionService.removeOnConversationListChangedListener();
}
super.onStop();
}
@@ -436,18 +445,20 @@ public class ConversationActivity extends XmppActivity {
@Override
void onBackendConnected() {
this.registerListener();
- if (conversationList.size()==0) {
+ if (conversationList.size() == 0) {
updateConversationList();
}
- if ((getIntent().getAction()!=null)&&(getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
+ if ((getIntent().getAction() != null)
+ && (getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
if (getIntent().getType().equals(
ConversationActivity.VIEW_CONVERSATION)) {
handledViewIntent = true;
- String convToView = (String) getIntent().getExtras().get(CONVERSATION);
+ String convToView = (String) getIntent().getExtras().get(
+ CONVERSATION);
- for(int i = 0; i < conversationList.size(); ++i) {
+ for (int i = 0; i < conversationList.size(); ++i) {
if (conversationList.get(i).getUuid().equals(convToView)) {
selectedConversation = conversationList.get(i);
}
@@ -461,48 +472,108 @@ public class ConversationActivity extends XmppActivity {
startActivity(new Intent(this, ManageAccountActivity.class));
finish();
} else if (conversationList.size() <= 0) {
- //add no history
+ // add no history
startActivity(new Intent(this, ContactsActivity.class));
finish();
} else {
spl.openPane();
- //find currently loaded fragment
- ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
- if (selectedFragment!=null) {
+ // find currently loaded fragment
+ ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
+ .findFragmentByTag("conversation");
+ if (selectedFragment != null) {
selectedFragment.onBackendConnected();
} else {
selectedConversation = conversationList.get(0);
swapConversationFragment();
}
- ExceptionHelper.checkForCrash(this,this.xmppConnectionService);
+ ExceptionHelper.checkForCrash(this, this.xmppConnectionService);
}
}
}
+
public void registerListener() {
- if (xmppConnectionServiceBound) {
- xmppConnectionService.setOnConversationListChangedListener(this.onConvChanged);
- }
+ if (xmppConnectionServiceBound) {
+ xmppConnectionService
+ .setOnConversationListChangedListener(this.onConvChanged);
+ }
}
@Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- super.onActivityResult(requestCode, resultCode, data);
- if (resultCode == RESULT_OK) {
+ protected void onActivityResult(int requestCode, int resultCode, final Intent data) {
+ super.onActivityResult(requestCode, resultCode, data);
+ if (resultCode == RESULT_OK) {
if (requestCode == REQUEST_DECRYPT_PGP) {
- ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
- if (selectedFragment!=null) {
+ ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
+ .findFragmentByTag("conversation");
+ if (selectedFragment != null) {
selectedFragment.hidePgpPassphraseBox();
}
} else if (requestCode == ATTACH_FILE) {
- xmppConnectionService.attachImageToConversation(getSelectedConversation(), data.getData());
+ Conversation conversation = getSelectedConversation();
+ String presence = conversation.getNextPresence();
+ xmppConnectionService.attachImageToConversation(conversation, presence, data.getData());
+
}
- }
- }
+ }
+ }
public void updateConversationList() {
conversationList.clear();
- conversationList.addAll(xmppConnectionService
- .getConversations());
+ conversationList.addAll(xmppConnectionService.getConversations());
listView.invalidateViews();
}
+
+ public void selectPresence(final Conversation conversation, final OnPresenceSelected listener) {
+ Contact contact = conversation.getContact();
+ if (contact==null) {
+ showAddToRosterDialog(conversation);
+ listener.onPresenceSelected(false,null);
+ } else {
+ Hashtable<String, Integer> presences = contact.getPresences();
+ if (presences.size() == 0) {
+ listener.onPresenceSelected(false, null);
+ } else if (presences.size() == 1) {
+ String presence = (String) presences.keySet().toArray()[0];
+ conversation.setNextPresence(presence);
+ listener.onPresenceSelected(true, presence);
+ } else {
+ AlertDialog.Builder builder = new AlertDialog.Builder(this);
+ builder.setTitle("Choose Presence");
+ final String[] presencesArray = new String[presences.size()];
+ presences.keySet().toArray(presencesArray);
+ builder.setItems(presencesArray,
+ new DialogInterface.OnClickListener() {
+
+ @Override
+ public void onClick(DialogInterface dialog,
+ int which) {
+ String presence = presencesArray[which];
+ conversation.setNextPresence(presence);
+ listener.onPresenceSelected(true,presence);
+ }
+ });
+ builder.create().show();
+ }
+ }
+ }
+
+ private void showAddToRosterDialog(final Conversation conversation) {
+ String jid = conversation.getContactJid();
+ AlertDialog.Builder builder = new AlertDialog.Builder(this);
+ builder.setTitle(jid);
+ builder.setMessage(getString(R.string.not_in_roster));
+ builder.setNegativeButton(getString(R.string.cancel), null);
+ builder.setPositiveButton(getString(R.string.add_contact), new DialogInterface.OnClickListener() {
+
+ @Override
+ public void onClick(DialogInterface dialog, int which) {
+ String jid = conversation.getContactJid();
+ Account account = getSelectedConversation().getAccount();
+ String name = jid.split("@")[0];
+ Contact contact = new Contact(account, name, jid, null);
+ xmppConnectionService.createContact(contact);
+ }
+ });
+ builder.create().show();
+ }
}
diff --git a/src/eu/siacs/conversations/ui/OnPresenceSelected.java b/src/eu/siacs/conversations/ui/OnPresenceSelected.java
new file mode 100644
index 00000000..7e424b2e
--- /dev/null
+++ b/src/eu/siacs/conversations/ui/OnPresenceSelected.java
@@ -0,0 +1,5 @@
+package eu.siacs.conversations.ui;
+
+public interface OnPresenceSelected {
+ public void onPresenceSelected(boolean success, String presence);
+}
diff --git a/src/eu/siacs/conversations/xmpp/jingle/JingleConnection.java b/src/eu/siacs/conversations/xmpp/jingle/JingleConnection.java
index 60ba0291..e8f5aa22 100644
--- a/src/eu/siacs/conversations/xmpp/jingle/JingleConnection.java
+++ b/src/eu/siacs/conversations/xmpp/jingle/JingleConnection.java
@@ -19,6 +19,11 @@ public class JingleConnection {
private JingleConnectionManager mJingleConnectionManager;
private XmppConnectionService mXmppConnectionService;
+ public static final int STATUS_INITIATED = 0;
+ public static final int STATUS_ACCEPTED = 1;
+ public static final int STATUS_FAILED = 99;
+
+ private int status = -1;
private Message message;
private String sessionId;
private Account account;
@@ -30,7 +35,9 @@ public class JingleConnection {
@Override
public void onIqPacketReceived(Account account, IqPacket packet) {
- Log.d("xmppService",packet.toString());
+ if (packet.getType() == IqPacket.TYPE_ERROR) {
+ status = STATUS_FAILED;
+ }
}
};
@@ -44,6 +51,21 @@ public class JingleConnection {
return this.sessionId;
}
+ public String getAccountJid() {
+ return this.account.getJid();
+ }
+
+ public String getCounterPart() {
+ return this.message.getCounterpart();
+ }
+
+ public void deliverPacket(JinglePacket packet) {
+ Log.d("xmppService","packet arrived in connection");
+ if (packet.isAction("")) {
+
+ }
+ }
+
public void init(Message message) {
this.message = message;
this.account = message.getConversation().getAccount();
@@ -78,13 +100,14 @@ public class JingleConnection {
packet.setContent(content);
Log.d("xmppService",packet.toString());
account.getXmppConnection().sendIqPacket(packet, this.responseListener);
+ this.status = STATUS_INITIATED;
}
}
private JinglePacket bootstrapPacket() {
JinglePacket packet = new JinglePacket();
packet.setFrom(account.getFullJid());
- packet.setTo(this.message.getCounterpart()+"/Gajim"); //fixme, not right in all cases;
+ packet.setTo(this.message.getCounterpart()); //fixme, not right in all cases;
packet.setSessionId(this.sessionId);
return packet;
}
diff --git a/src/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java b/src/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java
index 784d90d4..b28f692a 100644
--- a/src/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java
+++ b/src/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java
@@ -17,76 +17,110 @@ import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
public class JingleConnectionManager {
-
+
private XmppConnectionService xmppConnectionService;
-
- private List<JingleConnection> connections = new ArrayList<JingleConnection>(); //make concurrent
-
+
+ private List<JingleConnection> connections = new ArrayList<JingleConnection>(); // make
+ // concurrent
+
private ConcurrentHashMap<String, Element> primaryCanditates = new ConcurrentHashMap<String, Element>();
-
+
private SecureRandom random = new SecureRandom();
-
+
public JingleConnectionManager(XmppConnectionService service) {
this.xmppConnectionService = service;
}
-
+
public void deliverPacket(Account account, JinglePacket packet) {
- String id = generateInternalId(account.getJid(), packet.getFrom(), packet.getSessionId());
+ for (JingleConnection connection : connections) {
+ if (connection.getAccountJid().equals(account.getJid()) && connection
+ .getSessionId().equals(packet.getSessionId()) && connection
+ .getCounterPart().equals(packet.getFrom())) {
+ connection.deliverPacket(packet);
+ return;
+ }
+ }
+ Log.d("xmppService","delivering packet failed "+packet.toString());
}
-
+
public JingleConnection createNewConnection(Message message) {
Account account = message.getConversation().getAccount();
JingleConnection connection = new JingleConnection(this);
- String id = generateInternalId(account.getJid(), message.getCounterpart(), connection.getSessionId());
connection.init(message);
+ connections.add(connection);
return connection;
}
-
- private String generateInternalId(String account, String counterpart, String sid) {
- return account+"#"+counterpart+"#"+sid;
-
+
+ public JingleConnection createNewConnection(JinglePacket packet) {
+ JingleConnection connection = new JingleConnection(this);
+ connections.add(connection);
+ return connection;
+ }
+
+ private String generateInternalId(String account, String counterpart,
+ String sid) {
+ return account + "#" + counterpart + "#" + sid;
+
}
public XmppConnectionService getXmppConnectionService() {
return this.xmppConnectionService;
}
- public void getPrimaryCanditate(Account account, final OnPrimaryCanditateFound listener) {
+ public void getPrimaryCanditate(Account account,
+ final OnPrimaryCanditateFound listener) {
if (!this.primaryCanditates.containsKey(account.getJid())) {
String xmlns = "http://jabber.org/protocol/bytestreams";
- String proxy = account.getXmppConnection().findDiscoItemByFeature(xmlns);
- if (proxy!=null) {
+ final String proxy = account.getXmppConnection()
+ .findDiscoItemByFeature(xmlns);
+ if (proxy != null) {
IqPacket iq = new IqPacket(IqPacket.TYPE_GET);
iq.setTo(proxy);
iq.query(xmlns);
- account.getXmppConnection().sendIqPacket(iq, new OnIqPacketReceived() {
-
- @Override
- public void onIqPacketReceived(Account account, IqPacket packet) {
- Element streamhost = packet.query().findChild("streamhost","http://jabber.org/protocol/bytestreams");
- if (streamhost!=null) {
- Log.d("xmppService","streamhost found "+streamhost.toString());
- Element canditate = new Element("canditate");
- canditate.setAttribute("cid",nextRandomId());
- canditate.setAttribute("host", streamhost.getAttribute("host"));
- canditate.setAttribute("port",streamhost.getAttribute("port"));
- canditate.setAttribute("type", "proxy");
- primaryCanditates.put(account.getJid(), canditate);
- listener.onPrimaryCanditateFound(true, canditate);
- } else {
- listener.onPrimaryCanditateFound(false, null);
- }
- }
- });
+ account.getXmppConnection().sendIqPacket(iq,
+ new OnIqPacketReceived() {
+
+ @Override
+ public void onIqPacketReceived(Account account,
+ IqPacket packet) {
+ Element streamhost = packet
+ .query()
+ .findChild("streamhost",
+ "http://jabber.org/protocol/bytestreams");
+ if (streamhost != null) {
+ Log.d("xmppService", "streamhost found "
+ + streamhost.toString());
+ Element canditate = new Element("canditate");
+ canditate.setAttribute("cid",
+ nextRandomId());
+ canditate.setAttribute("host",
+ streamhost.getAttribute("host"));
+ canditate.setAttribute("port",
+ streamhost.getAttribute("port"));
+ canditate.setAttribute("type", "proxy");
+ canditate.setAttribute("jid", proxy);
+ canditate
+ .setAttribute("priority", "655360");
+ primaryCanditates.put(account.getJid(),
+ canditate);
+ listener.onPrimaryCanditateFound(true,
+ canditate);
+ } else {
+ listener.onPrimaryCanditateFound(false,
+ null);
+ }
+ }
+ });
} else {
listener.onPrimaryCanditateFound(false, null);
}
-
+
} else {
- listener.onPrimaryCanditateFound(true, this.primaryCanditates.get(account.getJid()));
+ listener.onPrimaryCanditateFound(true,
+ this.primaryCanditates.get(account.getJid()));
}
}
-
+
public String nextRandomId() {
return new BigInteger(50, random).toString(32);
}
diff --git a/src/eu/siacs/conversations/xmpp/jingle/stanzas/JinglePacket.java b/src/eu/siacs/conversations/xmpp/jingle/stanzas/JinglePacket.java
index 9cb2b448..bd912ea3 100644
--- a/src/eu/siacs/conversations/xmpp/jingle/stanzas/JinglePacket.java
+++ b/src/eu/siacs/conversations/xmpp/jingle/stanzas/JinglePacket.java
@@ -70,7 +70,15 @@ public class JinglePacket extends IqPacket {
this.jingle.setAttribute("action", action);
}
+ public String getAction() {
+ return this.jingle.getAttribute("action");
+ }
+
public void setInitiator(String initiator) {
this.jingle.setAttribute("initiator", initiator);
}
+
+ public boolean isAction(String action) {
+ return action.equalsIgnoreCase(this.getAction());
+ }
}