Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XEP-0084: User Avatars #332

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

vanitasvitae
Copy link
Member

Rebased #107 on current master.

Copy link
Member Author

@vanitasvitae vanitasvitae left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are some things that I do not fully understand about the code so far.

@JackBekket
Copy link

Any updates?

@vanitasvitae
Copy link
Member Author

I haven't had time to further work on this yet. You are truly welcome to contribute though if you have the resources ;)

Co-authored-by: Paul Schaub <vanitasvitae@fsfe.org>
Copy link
Member

@Flowdalic Flowdalic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let us try to get this over the finish line. I think this mostly needs work regarding the AvatarStore interface.

Also please squash and rebase on the current master. Feel free to add a Co-authored-by git pseudo header.

availabilityMap.put(new Tuple<>(jid, itemId), Boolean.TRUE);
}

private static class Tuple<A, B> {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This class should be deleted and o.j.smack.util.Pair should be used instead.

* whether the client already has a local copy of a published avatar or if the user needs to be informed about the
* update in order to download the image.
*/
public interface AvatarMetadataStore {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am confused by this "store", which does not actually seem to store avatars, just their availability.

Why not make it a real store-interface, e.g.

interface AvatarMetadataStore {
   Avatar getAvatar(EntityBareJid jid, String itemId);
   putAvatar(EntityBareJid jid, String itemId, Avatar avatar);

where Avatar is a meta class that encapsulates the MIME type and the avatar bytes.

@Flowdalic Flowdalic added Needs rebasing All or some commits need to be squashed Needs squashing and removed Needs feedback labels Feb 17, 2021
@Neustradamus
Copy link
Contributor

@vanitasvitae: Have you progressed on it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs rebasing All or some commits need to be squashed Needs squashing
Projects
None yet
5 participants