mirror of
https://github.com/oxen-io/session-android.git
synced 2025-01-13 08:33:40 +00:00
87 lines
2.2 KiB
Java
87 lines
2.2 KiB
Java
package org.thoughtcrime.securesms.mms;
|
|
|
|
import android.content.Context;
|
|
import android.net.Uri;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
|
|
import com.bumptech.glide.load.Key;
|
|
import com.bumptech.glide.load.Options;
|
|
import com.bumptech.glide.load.model.ModelLoader;
|
|
import com.bumptech.glide.load.model.ModelLoaderFactory;
|
|
import com.bumptech.glide.load.model.MultiModelLoaderFactory;
|
|
|
|
import org.thoughtcrime.securesms.mms.DecryptableStreamUriLoader.DecryptableUri;
|
|
|
|
import java.io.InputStream;
|
|
import java.security.MessageDigest;
|
|
|
|
public class DecryptableStreamUriLoader implements ModelLoader<DecryptableUri, InputStream> {
|
|
|
|
private final Context context;
|
|
|
|
private DecryptableStreamUriLoader(Context context) {
|
|
this.context = context;
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public LoadData<InputStream> buildLoadData(@NonNull DecryptableUri decryptableUri, int width, int height, @NonNull Options options) {
|
|
return new LoadData<>(decryptableUri, new DecryptableStreamLocalUriFetcher(context, decryptableUri.uri));
|
|
}
|
|
|
|
@Override
|
|
public boolean handles(@NonNull DecryptableUri decryptableUri) {
|
|
return true;
|
|
}
|
|
|
|
static class Factory implements ModelLoaderFactory<DecryptableUri, InputStream> {
|
|
|
|
private final Context context;
|
|
|
|
Factory(Context context) {
|
|
this.context = context.getApplicationContext();
|
|
}
|
|
|
|
@Override
|
|
public @NonNull ModelLoader<DecryptableUri, InputStream> build(@NonNull MultiModelLoaderFactory multiFactory) {
|
|
return new DecryptableStreamUriLoader(context);
|
|
}
|
|
|
|
@Override
|
|
public void teardown() {
|
|
// Do nothing.
|
|
}
|
|
}
|
|
|
|
public static class DecryptableUri implements Key {
|
|
public @NonNull Uri uri;
|
|
|
|
public DecryptableUri(@NonNull Uri uri) {
|
|
this.uri = uri;
|
|
}
|
|
|
|
@Override
|
|
public void updateDiskCacheKey(@NonNull MessageDigest messageDigest) {
|
|
messageDigest.update(uri.toString().getBytes());
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) return true;
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
|
|
DecryptableUri that = (DecryptableUri)o;
|
|
|
|
return uri.equals(that.uri);
|
|
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return uri.hashCode();
|
|
}
|
|
}
|
|
}
|
|
|