make contact chooser (direct sharing) smart about sharing text in groups when http is not available
This commit is contained in:
parent
8124b24479
commit
6ecf6f1149
|
@ -190,6 +190,16 @@
|
||||||
android:name=".ui.ShareWithActivity"
|
android:name=".ui.ShareWithActivity"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:launchMode="singleTop">
|
android:launchMode="singleTop">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND"/>
|
||||||
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
|
||||||
|
<data android:mimeType="text/plain"/>
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.SEND"/>
|
<action android:name="android.intent.action.SEND"/>
|
||||||
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
||||||
|
|
|
@ -12,78 +12,84 @@ import android.os.Bundle;
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.service.chooser.ChooserTarget;
|
import android.service.chooser.ChooserTarget;
|
||||||
import android.service.chooser.ChooserTargetService;
|
import android.service.chooser.ChooserTargetService;
|
||||||
import android.support.v4.content.ContextCompat;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import eu.siacs.conversations.entities.Conversation;
|
import eu.siacs.conversations.entities.Conversation;
|
||||||
import eu.siacs.conversations.ui.ConversationsActivity;
|
import eu.siacs.conversations.ui.ConversationsActivity;
|
||||||
import eu.siacs.conversations.ui.ShareWithActivity;
|
|
||||||
|
|
||||||
@TargetApi(Build.VERSION_CODES.M)
|
@TargetApi(Build.VERSION_CODES.M)
|
||||||
public class ContactChooserTargetService extends ChooserTargetService implements ServiceConnection {
|
public class ContactChooserTargetService extends ChooserTargetService implements ServiceConnection {
|
||||||
|
|
||||||
private final Object lock = new Object();
|
private final Object lock = new Object();
|
||||||
|
private final int MAX_TARGETS = 5;
|
||||||
|
private XmppConnectionService mXmppConnectionService;
|
||||||
|
|
||||||
private XmppConnectionService mXmppConnectionService;
|
private static boolean textOnly(IntentFilter filter) {
|
||||||
|
for (int i = 0; i < filter.countDataTypes(); ++i) {
|
||||||
|
if (!"text/plain".equals(filter.getDataType(i))) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private final int MAX_TARGETS = 5;
|
@Override
|
||||||
|
public List<ChooserTarget> onGetChooserTargets(ComponentName targetActivityName, IntentFilter matchedFilter) {
|
||||||
|
Intent intent = new Intent(this, XmppConnectionService.class);
|
||||||
|
intent.setAction("contact_chooser");
|
||||||
|
bindService(intent, this, Context.BIND_AUTO_CREATE);
|
||||||
|
ArrayList<ChooserTarget> chooserTargets = new ArrayList<>();
|
||||||
|
try {
|
||||||
|
waitForService();
|
||||||
|
final ArrayList<Conversation> conversations = new ArrayList<>();
|
||||||
|
if (!mXmppConnectionService.areMessagesInitialized()) {
|
||||||
|
return chooserTargets;
|
||||||
|
}
|
||||||
|
|
||||||
|
mXmppConnectionService.populateWithOrderedConversations(conversations, textOnly(matchedFilter));
|
||||||
|
final ComponentName componentName = new ComponentName(this, ConversationsActivity.class);
|
||||||
|
final int pixel = AvatarService.getSystemUiAvatarSize(this);
|
||||||
|
for (Conversation conversation : conversations) {
|
||||||
|
if (conversation.sentMessagesCount() == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
final String name = conversation.getName().toString();
|
||||||
|
final Icon icon = Icon.createWithBitmap(mXmppConnectionService.getAvatarService().get(conversation, pixel));
|
||||||
|
final float score = 1 - (1.0f / MAX_TARGETS) * chooserTargets.size();
|
||||||
|
final Bundle extras = new Bundle();
|
||||||
|
extras.putString(ConversationsActivity.EXTRA_CONVERSATION, conversation.getUuid());
|
||||||
|
chooserTargets.add(new ChooserTarget(name, icon, score, componentName, extras));
|
||||||
|
if (chooserTargets.size() >= MAX_TARGETS) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
}
|
||||||
|
unbindService(this);
|
||||||
|
return chooserTargets;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<ChooserTarget> onGetChooserTargets(ComponentName targetActivityName, IntentFilter matchedFilter) {
|
public void onServiceConnected(ComponentName name, IBinder service) {
|
||||||
Intent intent = new Intent(this, XmppConnectionService.class);
|
XmppConnectionService.XmppConnectionBinder binder = (XmppConnectionService.XmppConnectionBinder) service;
|
||||||
intent.setAction("contact_chooser");
|
mXmppConnectionService = binder.getService();
|
||||||
bindService(intent, this, Context.BIND_AUTO_CREATE);
|
synchronized (this.lock) {
|
||||||
ArrayList<ChooserTarget> chooserTargets = new ArrayList<>();
|
lock.notifyAll();
|
||||||
try {
|
}
|
||||||
waitForService();
|
}
|
||||||
final ArrayList<Conversation> conversations = new ArrayList<>();
|
|
||||||
if (!mXmppConnectionService.areMessagesInitialized()) {
|
|
||||||
return chooserTargets;
|
|
||||||
}
|
|
||||||
mXmppConnectionService.populateWithOrderedConversations(conversations, false);
|
|
||||||
final ComponentName componentName = new ComponentName(this, ConversationsActivity.class);
|
|
||||||
final int pixel = AvatarService.getSystemUiAvatarSize(this);
|
|
||||||
for(Conversation conversation : conversations) {
|
|
||||||
if (conversation.sentMessagesCount() == 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
final String name = conversation.getName().toString();
|
|
||||||
final Icon icon = Icon.createWithBitmap(mXmppConnectionService.getAvatarService().get(conversation, pixel));
|
|
||||||
final float score = 1 - (1.0f / MAX_TARGETS) * chooserTargets.size();
|
|
||||||
final Bundle extras = new Bundle();
|
|
||||||
extras.putString(ConversationsActivity.EXTRA_CONVERSATION, conversation.getUuid());
|
|
||||||
chooserTargets.add(new ChooserTarget(name, icon, score, componentName, extras));
|
|
||||||
if (chooserTargets.size() >= MAX_TARGETS) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
}
|
|
||||||
unbindService(this);
|
|
||||||
return chooserTargets;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onServiceConnected(ComponentName name, IBinder service) {
|
public void onServiceDisconnected(ComponentName name) {
|
||||||
XmppConnectionService.XmppConnectionBinder binder = (XmppConnectionService.XmppConnectionBinder) service;
|
mXmppConnectionService = null;
|
||||||
mXmppConnectionService = binder.getService();
|
}
|
||||||
synchronized (this.lock) {
|
|
||||||
lock.notifyAll();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
private void waitForService() throws InterruptedException {
|
||||||
public void onServiceDisconnected(ComponentName name) {
|
if (mXmppConnectionService == null) {
|
||||||
mXmppConnectionService = null;
|
synchronized (this.lock) {
|
||||||
}
|
lock.wait();
|
||||||
|
}
|
||||||
private void waitForService() throws InterruptedException {
|
}
|
||||||
if (mXmppConnectionService == null) {
|
}
|
||||||
synchronized (this.lock) {
|
|
||||||
lock.wait();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue