|
@@ -1,35 +1,47 @@
|
|
|
/**
|
|
|
- * Nextcloud Android client application
|
|
|
- *
|
|
|
- * Copyright (C) 2017 Tobias Kaminsky
|
|
|
- * Copyright (C) 2017 Nextcloud.
|
|
|
- *
|
|
|
- * This program is free software; you can redistribute it and/or
|
|
|
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
- * License as published by the Free Software Foundation; either
|
|
|
- * version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
- *
|
|
|
- * You should have received a copy of the GNU Affero General Public
|
|
|
- * License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ * Nextcloud Android client application
|
|
|
+ * <p>
|
|
|
+ * Copyright (C) 2017 Tobias Kaminsky
|
|
|
+ * Copyright (C) 2017 Nextcloud.
|
|
|
+ * <p>
|
|
|
+ * This program is free software; you can redistribute it and/or
|
|
|
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
+ * License as published by the Free Software Foundation; either
|
|
|
+ * version 3 of the License, or any later version.
|
|
|
+ * <p>
|
|
|
+ * 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
+ * <p>
|
|
|
+ * You should have received a copy of the GNU Affero General Public
|
|
|
+ * License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
*/
|
|
|
package com.owncloud.android.datamodel;
|
|
|
|
|
|
import android.content.ContentResolver;
|
|
|
import android.content.ContentValues;
|
|
|
+import android.content.Context;
|
|
|
import android.database.Cursor;
|
|
|
+import android.graphics.drawable.PictureDrawable;
|
|
|
import android.net.Uri;
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
|
|
+import com.bumptech.glide.GenericRequestBuilder;
|
|
|
+import com.bumptech.glide.Glide;
|
|
|
+import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
|
|
+import com.bumptech.glide.load.model.StreamEncoder;
|
|
|
+import com.bumptech.glide.load.resource.file.FileToStreamDecoder;
|
|
|
+import com.bumptech.glide.request.target.SimpleTarget;
|
|
|
+import com.caverock.androidsvg.SVG;
|
|
|
import com.owncloud.android.db.ProviderMeta;
|
|
|
import com.owncloud.android.lib.common.ExternalLink;
|
|
|
import com.owncloud.android.lib.common.ExternalLinkType;
|
|
|
import com.owncloud.android.lib.common.utils.Log_OC;
|
|
|
+import com.owncloud.android.utils.svg.SvgDecoder;
|
|
|
+import com.owncloud.android.utils.svg.SvgDrawableTranscoder;
|
|
|
|
|
|
+import java.io.InputStream;
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
/**
|
|
@@ -169,4 +181,45 @@ public class ExternalLinksProvider {
|
|
|
}
|
|
|
return externalLink;
|
|
|
}
|
|
|
+
|
|
|
+ private void downloadPNGIcon(Context context, String iconUrl, SimpleTarget imageView, int placeholder) {
|
|
|
+ Glide
|
|
|
+ .with(context)
|
|
|
+ .load(iconUrl)
|
|
|
+ .centerCrop()
|
|
|
+ .placeholder(placeholder)
|
|
|
+ .error(placeholder)
|
|
|
+ .crossFade()
|
|
|
+ .into(imageView);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void downloadSVGIcon(Context context, String iconUrl, SimpleTarget imageView, int placeholder) {
|
|
|
+ GenericRequestBuilder<Uri, InputStream, SVG, PictureDrawable> requestBuilder = Glide.with(context)
|
|
|
+ .using(Glide.buildStreamModelLoader(Uri.class, context), InputStream.class)
|
|
|
+ .from(Uri.class)
|
|
|
+ .as(SVG.class)
|
|
|
+ .transcode(new SvgDrawableTranscoder(), PictureDrawable.class)
|
|
|
+ .sourceEncoder(new StreamEncoder())
|
|
|
+ .cacheDecoder(new FileToStreamDecoder<>(new SvgDecoder()))
|
|
|
+ .decoder(new SvgDecoder())
|
|
|
+ .placeholder(placeholder)
|
|
|
+ .error(placeholder)
|
|
|
+ .animate(android.R.anim.fade_in);
|
|
|
+
|
|
|
+
|
|
|
+ Uri uri = Uri.parse(iconUrl);
|
|
|
+ requestBuilder
|
|
|
+ .diskCacheStrategy(DiskCacheStrategy.SOURCE)
|
|
|
+ .load(uri)
|
|
|
+ .into(imageView);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void downloadIcon(Context context, String iconUrl, SimpleTarget imageView, int placeholder){
|
|
|
+ if (iconUrl.endsWith(".svg")){
|
|
|
+ downloadSVGIcon(context, iconUrl, imageView, placeholder);
|
|
|
+ } else {
|
|
|
+ downloadPNGIcon(context, iconUrl, imageView, placeholder);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|