|
@@ -56,6 +56,7 @@ import org.apache.commons.httpclient.methods.GetMethod;
|
|
|
import java.io.File;
|
|
|
import java.io.InputStream;
|
|
|
import java.lang.ref.WeakReference;
|
|
|
+import java.util.ArrayList;
|
|
|
|
|
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
|
|
|
|
@@ -183,13 +184,20 @@ public class ThumbnailsCacheManager {
|
|
|
public static class ThumbnailGenerationTask extends AsyncTask<Object, Void, Bitmap> {
|
|
|
private final WeakReference<ImageView> mImageViewReference;
|
|
|
private static Account mAccount;
|
|
|
+ private ArrayList<ThumbnailGenerationTask> mAsyncTasks = null;
|
|
|
private Object mFile;
|
|
|
private String mImageKey = null;
|
|
|
private FileDataStorageManager mStorageManager;
|
|
|
+ private GetMethod getMethod;
|
|
|
|
|
|
+ public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager, Account account)
|
|
|
+ throws IllegalArgumentException {
|
|
|
+ this(imageView, storageManager, account, null);
|
|
|
+ }
|
|
|
|
|
|
public ThumbnailGenerationTask(ImageView imageView, FileDataStorageManager storageManager,
|
|
|
- Account account) throws IllegalArgumentException {
|
|
|
+ Account account, ArrayList<ThumbnailGenerationTask> asyncTasks)
|
|
|
+ throws IllegalArgumentException {
|
|
|
// Use a WeakReference to ensure the ImageView can be garbage collected
|
|
|
mImageViewReference = new WeakReference<ImageView>(imageView);
|
|
|
if (storageManager == null) {
|
|
@@ -197,6 +205,11 @@ public class ThumbnailsCacheManager {
|
|
|
}
|
|
|
mStorageManager = storageManager;
|
|
|
mAccount = account;
|
|
|
+ mAsyncTasks = asyncTasks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public GetMethod getGetMethod() {
|
|
|
+ return getMethod;
|
|
|
}
|
|
|
|
|
|
public ThumbnailGenerationTask(FileDataStorageManager storageManager, Account account){
|
|
@@ -277,6 +290,10 @@ public class ThumbnailsCacheManager {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if (mAsyncTasks != null) {
|
|
|
+ mAsyncTasks.remove(this);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -325,18 +342,18 @@ public class ThumbnailsCacheManager {
|
|
|
OwnCloudVersion serverOCVersion = AccountUtils.getServerVersion(mAccount);
|
|
|
if (mClient != null && serverOCVersion != null) {
|
|
|
if (serverOCVersion.supportsRemoteThumbnails()) {
|
|
|
- GetMethod get = null;
|
|
|
+ getMethod = null;
|
|
|
try {
|
|
|
String uri = mClient.getBaseUri() + "" +
|
|
|
"/index.php/apps/files/api/v1/thumbnail/" +
|
|
|
px + "/" + px + Uri.encode(file.getRemotePath(), "/");
|
|
|
Log_OC.d("Thumbnail", "URI: " + uri);
|
|
|
- get = new GetMethod(uri);
|
|
|
- get.setRequestHeader("Cookie",
|
|
|
+ getMethod = new GetMethod(uri);
|
|
|
+ getMethod.setRequestHeader("Cookie",
|
|
|
"nc_sameSiteCookielax=true;nc_sameSiteCookiestrict=true");
|
|
|
- int status = mClient.executeMethod(get);
|
|
|
+ int status = mClient.executeMethod(getMethod);
|
|
|
if (status == HttpStatus.SC_OK) {
|
|
|
- InputStream inputStream = get.getResponseBodyAsStream();
|
|
|
+ InputStream inputStream = getMethod.getResponseBodyAsStream();
|
|
|
Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
|
|
|
thumbnail = ThumbnailUtils.extractThumbnail(bitmap, px, px);
|
|
|
|
|
@@ -350,13 +367,13 @@ public class ThumbnailsCacheManager {
|
|
|
addBitmapToCache(imageKey, thumbnail);
|
|
|
}
|
|
|
} else {
|
|
|
- mClient.exhaustResponse(get.getResponseBodyAsStream());
|
|
|
+ mClient.exhaustResponse(getMethod.getResponseBodyAsStream());
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
Log_OC.d(TAG, e.getMessage(), e);
|
|
|
} finally {
|
|
|
- if (get != null) {
|
|
|
- get.releaseConnection();
|
|
|
+ if (getMethod != null) {
|
|
|
+ getMethod.releaseConnection();
|
|
|
}
|
|
|
}
|
|
|
} else {
|