2017-05-31 14:45:51 +00:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
import android.annotation.TargetApi;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.pm.ShortcutInfo;
|
|
|
|
import android.content.pm.ShortcutManager;
|
2018-04-04 07:33:07 +00:00
|
|
|
import android.graphics.Bitmap;
|
2017-05-31 14:45:51 +00:00
|
|
|
import android.graphics.drawable.Icon;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2021-01-23 08:25:34 +00:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
|
2017-05-31 14:45:51 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.ui.StartConversationActivity;
|
|
|
|
import eu.siacs.conversations.utils.ReplacingSerialSingleThreadExecutor;
|
2020-05-15 15:06:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.Jid;
|
2017-05-31 14:45:51 +00:00
|
|
|
|
|
|
|
public class ShortcutService {
|
|
|
|
|
|
|
|
private final XmppConnectionService xmppConnectionService;
|
2018-10-26 22:32:09 +00:00
|
|
|
private final ReplacingSerialSingleThreadExecutor replacingSerialSingleThreadExecutor = new ReplacingSerialSingleThreadExecutor(ShortcutService.class.getSimpleName());
|
2017-05-31 14:45:51 +00:00
|
|
|
|
|
|
|
public ShortcutService(XmppConnectionService xmppConnectionService) {
|
|
|
|
this.xmppConnectionService = xmppConnectionService;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh() {
|
|
|
|
refresh(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh(final boolean forceUpdate) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
|
|
|
|
final Runnable r = new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
refreshImpl(forceUpdate);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
replacingSerialSingleThreadExecutor.execute(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@TargetApi(25)
|
|
|
|
public void report(Contact contact) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
|
|
|
|
ShortcutManager shortcutManager = xmppConnectionService.getSystemService(ShortcutManager.class);
|
|
|
|
shortcutManager.reportShortcutUsed(getShortcutId(contact));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@TargetApi(25)
|
|
|
|
private void refreshImpl(boolean forceUpdate) {
|
|
|
|
List<FrequentContact> frequentContacts = xmppConnectionService.databaseBackend.getFrequentContacts(30);
|
|
|
|
HashMap<String,Account> accounts = new HashMap<>();
|
|
|
|
for(Account account : xmppConnectionService.getAccounts()) {
|
|
|
|
accounts.put(account.getUuid(),account);
|
|
|
|
}
|
|
|
|
List<Contact> contacts = new ArrayList<>();
|
|
|
|
for(FrequentContact frequentContact : frequentContacts) {
|
|
|
|
Account account = accounts.get(frequentContact.account);
|
|
|
|
if (account != null) {
|
|
|
|
contacts.add(account.getRoster().getContact(frequentContact.contact));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ShortcutManager shortcutManager = xmppConnectionService.getSystemService(ShortcutManager.class);
|
|
|
|
boolean needsUpdate = forceUpdate || contactsChanged(contacts,shortcutManager.getDynamicShortcuts());
|
|
|
|
if (!needsUpdate) {
|
|
|
|
Log.d(Config.LOGTAG,"skipping shortcut update");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
List<ShortcutInfo> newDynamicShortCuts = new ArrayList<>();
|
|
|
|
for (Contact contact : contacts) {
|
2018-04-04 07:33:07 +00:00
|
|
|
ShortcutInfo shortcut = getShortcutInfo(contact);
|
2017-05-31 14:45:51 +00:00
|
|
|
newDynamicShortCuts.add(shortcut);
|
|
|
|
}
|
|
|
|
if (shortcutManager.setDynamicShortcuts(newDynamicShortCuts)) {
|
|
|
|
Log.d(Config.LOGTAG,"updated dynamic shortcuts");
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, "unable to update dynamic shortcuts");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-04 07:33:07 +00:00
|
|
|
@TargetApi(Build.VERSION_CODES.N_MR1)
|
|
|
|
private ShortcutInfo getShortcutInfo(Contact contact) {
|
|
|
|
return new ShortcutInfo.Builder(xmppConnectionService, getShortcutId(contact))
|
|
|
|
.setShortLabel(contact.getDisplayName())
|
|
|
|
.setIntent(getShortcutIntent(contact))
|
|
|
|
.setIcon(Icon.createWithBitmap(xmppConnectionService.getAvatarService().getRoundedShortcut(contact)))
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
2017-05-31 14:45:51 +00:00
|
|
|
private static boolean contactsChanged(List<Contact> needles, List<ShortcutInfo> haystack) {
|
|
|
|
for(Contact needle : needles) {
|
|
|
|
if(!contactExists(needle,haystack)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return needles.size() != haystack.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
@TargetApi(25)
|
|
|
|
private static boolean contactExists(Contact needle, List<ShortcutInfo> haystack) {
|
|
|
|
for(ShortcutInfo shortcutInfo : haystack) {
|
|
|
|
if (getShortcutId(needle).equals(shortcutInfo.getId()) && needle.getDisplayName().equals(shortcutInfo.getShortLabel())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String getShortcutId(Contact contact) {
|
2020-05-15 16:21:45 +00:00
|
|
|
return contact.getAccount().getJid().asBareJid().toEscapedString()+"#"+contact.getJid().asBareJid().toEscapedString();
|
2017-05-31 14:45:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private Intent getShortcutIntent(Contact contact) {
|
|
|
|
Intent intent = new Intent(xmppConnectionService, StartConversationActivity.class);
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
2020-05-15 16:21:45 +00:00
|
|
|
intent.setData(Uri.parse("xmpp:"+contact.getJid().asBareJid().toEscapedString()));
|
2018-03-05 17:30:40 +00:00
|
|
|
intent.putExtra("account",contact.getAccount().getJid().asBareJid().toString());
|
2019-01-18 11:28:35 +00:00
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
2017-05-31 14:45:51 +00:00
|
|
|
return intent;
|
|
|
|
}
|
|
|
|
|
2018-04-04 07:33:07 +00:00
|
|
|
@NonNull
|
2019-01-05 09:31:06 +00:00
|
|
|
public Intent createShortcut(Contact contact, boolean legacy) {
|
2018-04-04 07:33:07 +00:00
|
|
|
Intent intent;
|
2019-01-05 09:31:06 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !legacy) {
|
2018-04-04 07:33:07 +00:00
|
|
|
ShortcutInfo shortcut = getShortcutInfo(contact);
|
|
|
|
ShortcutManager shortcutManager = xmppConnectionService.getSystemService(ShortcutManager.class);
|
|
|
|
intent = shortcutManager.createShortcutResultIntent(shortcut);
|
|
|
|
} else {
|
|
|
|
intent = createShortcutResultIntent(contact);
|
|
|
|
}
|
|
|
|
return intent;
|
|
|
|
}
|
|
|
|
|
|
|
|
@NonNull
|
|
|
|
private Intent createShortcutResultIntent(Contact contact) {
|
2019-01-05 09:31:06 +00:00
|
|
|
AvatarService avatarService = xmppConnectionService.getAvatarService();
|
2018-04-04 07:33:07 +00:00
|
|
|
Bitmap icon = avatarService.getRoundedShortcutWithIcon(contact);
|
2019-01-05 09:31:06 +00:00
|
|
|
Intent intent = new Intent();
|
2018-04-04 07:33:07 +00:00
|
|
|
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, contact.getDisplayName());
|
|
|
|
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, icon);
|
|
|
|
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, getShortcutIntent(contact));
|
|
|
|
return intent;
|
|
|
|
}
|
|
|
|
|
2017-05-31 14:45:51 +00:00
|
|
|
public static class FrequentContact {
|
|
|
|
private final String account;
|
|
|
|
private final Jid contact;
|
|
|
|
|
|
|
|
public FrequentContact(String account, Jid contact) {
|
|
|
|
this.account = account;
|
|
|
|
this.contact = contact;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|