display avatar in groups
This commit is contained in:
parent
32a105fa1c
commit
afb7c0592b
|
@ -390,6 +390,10 @@ public class MucOptions {
|
|||
this.features.addAll(features);
|
||||
}
|
||||
|
||||
public String getAvatar() {
|
||||
return account.getRoster().getContact(conversation.getJid()).getAvatar();
|
||||
}
|
||||
|
||||
private void updateFormData(Data form) {
|
||||
this.form = form;
|
||||
}
|
||||
|
|
|
@ -48,6 +48,7 @@ import java.util.Arrays;
|
|||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.UUID;
|
||||
|
||||
import eu.siacs.conversations.Config;
|
||||
import eu.siacs.conversations.R;
|
||||
|
@ -649,9 +650,7 @@ public class FileBackend {
|
|||
avatar.width = options.outWidth;
|
||||
avatar.type = options.outMimeType;
|
||||
return avatar;
|
||||
} catch (IOException e) {
|
||||
return null;
|
||||
} catch (NoSuchAlgorithmException e) {
|
||||
} catch (NoSuchAlgorithmException | IOException e) {
|
||||
return null;
|
||||
} finally {
|
||||
close(is);
|
||||
|
@ -663,14 +662,13 @@ public class FileBackend {
|
|||
return file.exists();
|
||||
}
|
||||
|
||||
public boolean save(Avatar avatar) {
|
||||
public boolean save(final Avatar avatar) {
|
||||
File file;
|
||||
if (isAvatarCached(avatar)) {
|
||||
file = new File(getAvatarPath(avatar.getFilename()));
|
||||
avatar.size = file.length();
|
||||
} else {
|
||||
String filename = getAvatarPath(avatar.getFilename());
|
||||
file = new File(filename + ".tmp");
|
||||
file = new File(mXmppConnectionService.getCacheDir().getAbsolutePath()+"/"+ UUID.randomUUID().toString());
|
||||
file.getParentFile().mkdirs();
|
||||
OutputStream os = null;
|
||||
try {
|
||||
|
@ -685,6 +683,7 @@ public class FileBackend {
|
|||
mDigestOutputStream.close();
|
||||
String sha1sum = CryptoHelper.bytesToHex(digest.digest());
|
||||
if (sha1sum.equals(avatar.sha1sum)) {
|
||||
String filename = getAvatarPath(avatar.getFilename());
|
||||
file.renameTo(new File(filename));
|
||||
} else {
|
||||
Log.d(Config.LOGTAG, "sha1sum mismatch for " + avatar.owner);
|
||||
|
@ -701,7 +700,7 @@ public class FileBackend {
|
|||
return true;
|
||||
}
|
||||
|
||||
public String getAvatarPath(String avatar) {
|
||||
private String getAvatarPath(String avatar) {
|
||||
return mXmppConnectionService.getFilesDir().getAbsolutePath() + "/avatars/" + avatar;
|
||||
}
|
||||
|
||||
|
|
|
@ -258,6 +258,10 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
|
|||
if (bitmap != null || cachedOnly) {
|
||||
return bitmap;
|
||||
}
|
||||
|
||||
bitmap = mXmppConnectionService.getFileBackend().getAvatar(mucOptions.getAvatar(), size);
|
||||
|
||||
if (bitmap == null) {
|
||||
final List<MucOptions.User> users = mucOptions.getUsersRelevantForNameAndAvatar();
|
||||
if (users.size() == 0) {
|
||||
Conversation c = mucOptions.getConversation();
|
||||
|
@ -265,7 +269,10 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
|
|||
} else {
|
||||
bitmap = getImpl(users, size);
|
||||
}
|
||||
}
|
||||
|
||||
this.mXmppConnectionService.getBitmapCache().put(KEY, bitmap);
|
||||
|
||||
return bitmap;
|
||||
}
|
||||
|
||||
|
|
|
@ -1574,10 +1574,10 @@ public class XmppConnectionService extends Service {
|
|||
|
||||
public List<Conversation> findAllConferencesWith(Contact contact) {
|
||||
ArrayList<Conversation> results = new ArrayList<>();
|
||||
for (Conversation conversation : conversations) {
|
||||
if (conversation.getMode() == Conversation.MODE_MULTI
|
||||
&& conversation.getMucOptions().isContactInRoom(contact)) {
|
||||
results.add(conversation);
|
||||
for (final Conversation c : conversations) {
|
||||
if (c.getMode() == Conversation.MODE_MULTI
|
||||
&& (c.getJid().asBareJid().equals(c.getJid().asBareJid()) || c.getMucOptions().isContactInRoom(contact))) {
|
||||
results.add(c);
|
||||
}
|
||||
}
|
||||
return results;
|
||||
|
@ -2851,29 +2851,24 @@ public class XmppConnectionService extends Service {
|
|||
|
||||
private void fetchAvatarPep(Account account, final Avatar avatar, final UiCallback<Avatar> callback) {
|
||||
IqPacket packet = this.mIqGenerator.retrievePepAvatar(avatar);
|
||||
sendIqPacket(account, packet, new OnIqPacketReceived() {
|
||||
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket result) {
|
||||
sendIqPacket(account, packet, (a, result) -> {
|
||||
synchronized (mInProgressAvatarFetches) {
|
||||
mInProgressAvatarFetches.remove(generateFetchKey(account, avatar));
|
||||
mInProgressAvatarFetches.remove(generateFetchKey(a, avatar));
|
||||
}
|
||||
final String ERROR = account.getJid().asBareJid()
|
||||
+ ": fetching avatar for " + avatar.owner + " failed ";
|
||||
final String ERROR = a.getJid().asBareJid() + ": fetching avatar for " + avatar.owner + " failed ";
|
||||
if (result.getType() == IqPacket.TYPE.RESULT) {
|
||||
avatar.image = mIqParser.avatarData(result);
|
||||
if (avatar.image != null) {
|
||||
if (getFileBackend().save(avatar)) {
|
||||
if (account.getJid().asBareJid().equals(avatar.owner)) {
|
||||
if (account.setAvatar(avatar.getFilename())) {
|
||||
databaseBackend.updateAccount(account);
|
||||
if (a.getJid().asBareJid().equals(avatar.owner)) {
|
||||
if (a.setAvatar(avatar.getFilename())) {
|
||||
databaseBackend.updateAccount(a);
|
||||
}
|
||||
getAvatarService().clear(account);
|
||||
getAvatarService().clear(a);
|
||||
updateConversationUi();
|
||||
updateAccountUi();
|
||||
} else {
|
||||
Contact contact = account.getRoster()
|
||||
.getContact(avatar.owner);
|
||||
Contact contact = a.getRoster().getContact(avatar.owner);
|
||||
contact.setAvatar(avatar);
|
||||
getAvatarService().clear(contact);
|
||||
updateConversationUi();
|
||||
|
@ -2882,7 +2877,7 @@ public class XmppConnectionService extends Service {
|
|||
if (callback != null) {
|
||||
callback.success(avatar);
|
||||
}
|
||||
Log.d(Config.LOGTAG, account.getJid().asBareJid()
|
||||
Log.d(Config.LOGTAG, a.getJid().asBareJid()
|
||||
+ ": successfully fetched pep avatar for " + avatar.owner);
|
||||
return;
|
||||
}
|
||||
|
@ -2902,7 +2897,6 @@ public class XmppConnectionService extends Service {
|
|||
callback.error(0, null);
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,6 @@ import eu.siacs.conversations.http.AesGcmURLStreamHandler;
|
|||
import rocks.xmpp.addr.Jid;
|
||||
|
||||
public final class CryptoHelper {
|
||||
public static final String FILETRANSFER = "?FILETRANSFERv1:";
|
||||
private final static char[] hexArray = "0123456789abcdef".toCharArray();
|
||||
|
||||
public static final Pattern UUID_PATTERN = Pattern.compile("[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}");
|
||||
|
|
Loading…
Reference in a new issue