session-android/src/org/thoughtcrime/securesms/recipients/RecipientFactory.java

142 lines
4.9 KiB
Java
Raw Normal View History

/**
2011-12-20 18:20:44 +00:00
* Copyright (C) 2011 Whisper Systems
*
2011-12-20 18:20:44 +00:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
2011-12-20 18:20:44 +00:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms.recipients;
import android.content.Context;
import android.util.Log;
import org.thoughtcrime.securesms.contacts.ContactPhotoFactory;
import org.thoughtcrime.securesms.database.CanonicalAddressDatabase;
import org.thoughtcrime.securesms.database.DatabaseFactory;
import org.thoughtcrime.securesms.util.NumberUtil;
import org.whispersystems.textsecure.push.IncomingPushMessage;
import org.whispersystems.textsecure.util.Util;
2012-12-01 03:48:48 +00:00
import java.util.LinkedList;
import java.util.List;
2011-12-20 18:20:44 +00:00
import java.util.StringTokenizer;
public class RecipientFactory {
private static final RecipientProvider provider = new RecipientProvider();
public static Recipients getRecipientsForIds(Context context, String recipientIds, boolean asynchronous) {
2014-01-14 08:26:43 +00:00
if (Util.isEmpty(recipientIds))
2012-12-01 03:48:48 +00:00
return new Recipients(new LinkedList<Recipient>());
List<Recipient> results = new LinkedList<Recipient>();
StringTokenizer tokenizer = new StringTokenizer(recipientIds.trim(), " ");
2011-12-20 18:20:44 +00:00
while (tokenizer.hasMoreTokens()) {
String recipientId = tokenizer.nextToken();
Recipient recipient = getRecipientFromProviderId(context, recipientId, asynchronous);
2011-12-20 18:20:44 +00:00
results.add(recipient);
}
2011-12-20 18:20:44 +00:00
return new Recipients(results);
}
public static Recipient getRecipientForNumber(Context context, String number, boolean asynchronous) {
long recipientId = CanonicalAddressDatabase.getInstance(context).getCanonicalAddress(number);
return provider.getRecipient(context, recipientId, asynchronous);
2011-12-20 18:20:44 +00:00
}
public static Recipients getRecipientsFromString(Context context, String rawText, boolean asynchronous)
throws RecipientFormattingException
{
2013-05-16 20:18:06 +00:00
if (rawText == null) {
throw new RecipientFormattingException("Null recipient string specified");
}
2012-12-01 03:48:48 +00:00
List<Recipient> results = new LinkedList<Recipient>();
StringTokenizer tokenizer = new StringTokenizer(rawText, ",");
2011-12-20 18:20:44 +00:00
while (tokenizer.hasMoreTokens()) {
Recipient recipient = parseRecipient(context, tokenizer.nextToken(), asynchronous);
if( recipient != null )
results.add(recipient);
2011-12-20 18:20:44 +00:00
}
return new Recipients(results);
}
public static Recipients getRecipientsFromMessage(Context context,
IncomingPushMessage message,
boolean asynchronous)
{
try {
2014-01-14 08:26:43 +00:00
return getRecipientsFromString(context, message.getSource(), asynchronous);
} catch (RecipientFormattingException e) {
Log.w("RecipientFactory", e);
return new Recipients(Recipient.getUnknownRecipient(context));
}
}
private static Recipient getRecipientFromProviderId(Context context, String recipientId, boolean asynchronous) {
try {
return provider.getRecipient(context, Long.parseLong(recipientId), asynchronous);
} catch (NumberFormatException e) {
Log.w("RecipientFactory", e);
return Recipient.getUnknownRecipient(context);
2014-01-14 08:26:43 +00:00
}
2011-12-20 18:20:44 +00:00
}
2012-12-01 03:42:30 +00:00
private static boolean hasBracketedNumber(String recipient) {
int openBracketIndex = recipient.indexOf('<');
return (openBracketIndex != -1) &&
(recipient.indexOf('>', openBracketIndex) != -1);
}
private static String parseBracketedNumber(String recipient)
throws RecipientFormattingException
{
2011-12-20 18:20:44 +00:00
int begin = recipient.indexOf('<');
2012-12-01 03:42:30 +00:00
int end = recipient.indexOf('>', begin);
2011-12-20 18:20:44 +00:00
String value = recipient.substring(begin + 1, end);
if (NumberUtil.isValidSmsOrEmail(value))
2011-12-20 18:20:44 +00:00
return value;
else
throw new RecipientFormattingException("Bracketed value: " + value + " is not valid.");
}
private static Recipient parseRecipient(Context context, String recipient, boolean asynchronous)
throws RecipientFormattingException
{
2011-12-20 18:20:44 +00:00
recipient = recipient.trim();
if( recipient.length() == 0 )
2011-12-20 18:20:44 +00:00
return null;
2012-12-01 03:42:30 +00:00
if (hasBracketedNumber(recipient))
return getRecipientForNumber(context, parseBracketedNumber(recipient), asynchronous);
2011-12-20 18:20:44 +00:00
if (NumberUtil.isValidSmsOrEmailOrGroup(recipient))
return getRecipientForNumber(context, recipient, asynchronous);
2011-12-20 18:20:44 +00:00
throw new RecipientFormattingException("Recipient: " + recipient + " is badly formatted.");
}
public static void clearCache() {
ContactPhotoFactory.clearCache();
provider.clearCache();
2011-12-20 18:20:44 +00:00
}
2011-12-20 18:20:44 +00:00
}