2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
2015-01-03 15:06:59 +00:00
|
|
|
import java.io.UnsupportedEncodingException;
|
2014-12-16 03:31:55 +00:00
|
|
|
import java.net.URLConnection;
|
2015-01-03 15:06:59 +00:00
|
|
|
import java.net.URLDecoder;
|
|
|
|
import java.nio.charset.UnsupportedCharsetException;
|
2014-12-16 03:31:55 +00:00
|
|
|
import java.util.ArrayList;
|
2015-04-11 12:53:10 +00:00
|
|
|
import java.util.Iterator;
|
2014-12-16 03:31:55 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.ui.adapter.ConversationAdapter;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public class ShareWithActivity extends XmppActivity {
|
|
|
|
|
|
|
|
private class Share {
|
2015-04-11 12:53:10 +00:00
|
|
|
public List<Uri> uris = new ArrayList<>();
|
2014-12-17 06:12:38 +00:00
|
|
|
public boolean image;
|
2014-10-22 16:38:44 +00:00
|
|
|
public String account;
|
|
|
|
public String contact;
|
|
|
|
public String text;
|
|
|
|
}
|
|
|
|
|
|
|
|
private Share share;
|
|
|
|
|
|
|
|
private static final int REQUEST_START_NEW_CONVERSATION = 0x0501;
|
|
|
|
private ListView mListView;
|
2014-12-16 03:31:55 +00:00
|
|
|
private List<Conversation> mConversations = new ArrayList<>();
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-12-16 03:31:55 +00:00
|
|
|
private UiCallback<Message> attachFileCallback = new UiCallback<Message>() {
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Message object) {
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void success(Message message) {
|
|
|
|
xmppConnectionService.sendMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int errorCode, Message object) {
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode,
|
|
|
|
final Intent data) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
if (requestCode == REQUEST_START_NEW_CONVERSATION
|
|
|
|
&& resultCode == RESULT_OK) {
|
|
|
|
share.contact = data.getStringExtra("contact");
|
|
|
|
share.account = data.getStringExtra("account");
|
|
|
|
Log.d(Config.LOGTAG, "contact: " + share.contact + " account:"
|
|
|
|
+ share.account);
|
|
|
|
}
|
|
|
|
if (xmppConnectionServiceBound && share != null
|
|
|
|
&& share.contact != null && share.account != null) {
|
|
|
|
share();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
2014-12-16 03:31:55 +00:00
|
|
|
if (getActionBar() != null) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
getActionBar().setHomeButtonEnabled(false);
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
setContentView(R.layout.share_with);
|
|
|
|
setTitle(getString(R.string.title_activity_sharewith));
|
|
|
|
|
|
|
|
mListView = (ListView) findViewById(R.id.choose_conversation_list);
|
|
|
|
ConversationAdapter mAdapter = new ConversationAdapter(this,
|
|
|
|
this.mConversations);
|
|
|
|
mListView.setAdapter(mAdapter);
|
|
|
|
mListView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> arg0, View arg1,
|
|
|
|
int position, long arg3) {
|
|
|
|
Conversation conversation = mConversations.get(position);
|
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE
|
2015-04-11 12:53:10 +00:00
|
|
|
|| share.uris.size() == 0) {
|
2014-10-22 16:38:44 +00:00
|
|
|
share(mConversations.get(position));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.share = new Share();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.share_with, menu);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-12-21 20:43:58 +00:00
|
|
|
public boolean onOptionsItemSelected(final MenuItem item) {
|
2014-10-22 16:38:44 +00:00
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.action_add:
|
2014-12-21 20:43:58 +00:00
|
|
|
final Intent intent = new Intent(getApplicationContext(),
|
2014-10-22 16:38:44 +00:00
|
|
|
ChooseContactActivity.class);
|
|
|
|
startActivityForResult(intent, REQUEST_START_NEW_CONVERSATION);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onStart() {
|
2015-04-11 12:53:10 +00:00
|
|
|
super.onStart();
|
|
|
|
Intent intent = getIntent();
|
|
|
|
if (intent == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final String type = intent.getType();
|
|
|
|
if (Intent.ACTION_SEND.equals(intent.getAction())) {
|
|
|
|
final Uri uri = getIntent().getParcelableExtra(Intent.EXTRA_STREAM);
|
|
|
|
if (type != null && uri != null && !type.equalsIgnoreCase("text/plain")) {
|
|
|
|
this.share.uris.add(uri);
|
|
|
|
this.share.image = type.startsWith("image/") || isImage(uri);
|
|
|
|
} else {
|
|
|
|
this.share.text = getIntent().getStringExtra(Intent.EXTRA_TEXT);
|
|
|
|
}
|
|
|
|
} else if (Intent.ACTION_SEND_MULTIPLE.equals(intent.getAction())) {
|
|
|
|
this.share.image = type != null && type.startsWith("image/");
|
|
|
|
if (!this.share.image) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.share.uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
if (xmppConnectionServiceBound) {
|
2015-04-11 12:53:10 +00:00
|
|
|
xmppConnectionService.populateWithOrderedConversations(mConversations, this.share.image);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2015-04-11 12:53:10 +00:00
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 19:27:16 +00:00
|
|
|
protected boolean isImage(Uri uri) {
|
|
|
|
try {
|
|
|
|
String guess = URLConnection.guessContentTypeFromName(uri.toString());
|
|
|
|
return (guess != null && guess.startsWith("image/"));
|
|
|
|
} catch (final StringIndexOutOfBoundsException ignored) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
@Override
|
|
|
|
void onBackendConnected() {
|
|
|
|
if (xmppConnectionServiceBound && share != null
|
|
|
|
&& share.contact != null && share.account != null) {
|
|
|
|
share();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
xmppConnectionService.populateWithOrderedConversations(mConversations,
|
2015-04-11 12:53:10 +00:00
|
|
|
this.share != null && this.share.uris.size() == 0);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void share() {
|
2014-11-06 19:45:38 +00:00
|
|
|
Account account;
|
|
|
|
try {
|
|
|
|
account = xmppConnectionService.findAccountByJid(Jid.fromString(share.account));
|
|
|
|
} catch (final InvalidJidException e) {
|
|
|
|
account = null;
|
|
|
|
}
|
|
|
|
if (account == null) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-11-06 19:45:38 +00:00
|
|
|
final Conversation conversation;
|
|
|
|
try {
|
|
|
|
conversation = xmppConnectionService
|
|
|
|
.findOrCreateConversation(account, Jid.fromString(share.contact), false);
|
|
|
|
} catch (final InvalidJidException e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
share(conversation);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void share(final Conversation conversation) {
|
2015-04-11 12:53:10 +00:00
|
|
|
if (share.uris.size() != 0) {
|
2014-10-22 16:38:44 +00:00
|
|
|
selectPresence(conversation, new OnPresenceSelected() {
|
|
|
|
@Override
|
|
|
|
public void onPresenceSelected() {
|
2014-12-17 06:12:38 +00:00
|
|
|
if (share.image) {
|
2014-12-16 03:31:55 +00:00
|
|
|
Toast.makeText(getApplicationContext(),
|
|
|
|
getText(R.string.preparing_image),
|
|
|
|
Toast.LENGTH_LONG).show();
|
2015-04-11 12:53:10 +00:00
|
|
|
for (Iterator<Uri> i = share.uris.iterator(); i.hasNext(); i.remove()) {
|
|
|
|
ShareWithActivity.this.xmppConnectionService
|
|
|
|
.attachImageToConversation(conversation, i.next(),
|
|
|
|
attachFileCallback);
|
|
|
|
}
|
2014-12-16 03:31:55 +00:00
|
|
|
} else {
|
|
|
|
Toast.makeText(getApplicationContext(),
|
|
|
|
getText(R.string.preparing_file),
|
|
|
|
Toast.LENGTH_LONG).show();
|
|
|
|
ShareWithActivity.this.xmppConnectionService
|
2015-04-11 12:53:10 +00:00
|
|
|
.attachFileToConversation(conversation, share.uris.get(0),
|
|
|
|
attachFileCallback);
|
2014-12-16 03:31:55 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
switchToConversation(conversation, null, true);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
switchToConversation(conversation, this.share.text, true);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-12-16 03:31:55 +00:00
|
|
|
}
|