ExternalLinksProvider.java 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /**
  2. * Nextcloud Android client application
  3. * <p>
  4. * Copyright (C) 2017 Tobias Kaminsky
  5. * Copyright (C) 2017 Nextcloud.
  6. * <p>
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  9. * License as published by the Free Software Foundation; either
  10. * version 3 of the License, or any later version.
  11. * <p>
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  16. * <p>
  17. * You should have received a copy of the GNU Affero General Public
  18. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.owncloud.android.datamodel;
  21. import android.content.ContentResolver;
  22. import android.content.ContentValues;
  23. import android.content.Context;
  24. import android.database.Cursor;
  25. import android.graphics.drawable.PictureDrawable;
  26. import android.net.Uri;
  27. import android.support.annotation.NonNull;
  28. import com.bumptech.glide.GenericRequestBuilder;
  29. import com.bumptech.glide.Glide;
  30. import com.bumptech.glide.load.engine.DiskCacheStrategy;
  31. import com.bumptech.glide.load.model.StreamEncoder;
  32. import com.bumptech.glide.load.resource.file.FileToStreamDecoder;
  33. import com.bumptech.glide.request.target.SimpleTarget;
  34. import com.caverock.androidsvg.SVG;
  35. import com.owncloud.android.db.ProviderMeta;
  36. import com.owncloud.android.lib.common.ExternalLink;
  37. import com.owncloud.android.lib.common.ExternalLinkType;
  38. import com.owncloud.android.lib.common.utils.Log_OC;
  39. import com.owncloud.android.utils.svg.SvgDecoder;
  40. import com.owncloud.android.utils.svg.SvgDrawableTranscoder;
  41. import java.io.InputStream;
  42. import java.util.ArrayList;
  43. /**
  44. * Database provider for handling the persistence aspects of {@link com.owncloud.android.lib.common.ExternalLink}s.
  45. */
  46. public class ExternalLinksProvider {
  47. static private final String TAG = ExternalLinksProvider.class.getSimpleName();
  48. private ContentResolver mContentResolver;
  49. public ExternalLinksProvider(ContentResolver contentResolver) {
  50. if (contentResolver == null) {
  51. throw new IllegalArgumentException("Cannot create an instance with a NULL contentResolver");
  52. }
  53. mContentResolver = contentResolver;
  54. }
  55. /**
  56. * Stores an external link in database.
  57. *
  58. * @param externalLink object to store
  59. * @return external link id, -1 if the insert process fails.
  60. */
  61. public long storeExternalLink(ExternalLink externalLink) {
  62. Log_OC.v(TAG, "Adding " + externalLink.name);
  63. ContentValues cv = createContentValuesFromExternalLink(externalLink);
  64. Uri result = mContentResolver.insert(ProviderMeta.ProviderTableMeta.CONTENT_URI_EXTERNAL_LINKS, cv);
  65. if (result != null) {
  66. return Long.parseLong(result.getPathSegments().get(1));
  67. } else {
  68. Log_OC.e(TAG, "Failed to insert item " + externalLink.name + " into external link db.");
  69. return -1;
  70. }
  71. }
  72. /**
  73. * Delete all external links from the db
  74. * @return numbers of rows deleted
  75. */
  76. public int deleteAllExternalLinks() {
  77. return mContentResolver.delete(ProviderMeta.ProviderTableMeta.CONTENT_URI_EXTERNAL_LINKS, " 1 = 1 ", null);
  78. }
  79. /**
  80. * get by type external links.
  81. *
  82. * @return external links, empty if none exists
  83. */
  84. public ArrayList<ExternalLink> getExternalLink(ExternalLinkType type) {
  85. Cursor cursor = mContentResolver.query(
  86. ProviderMeta.ProviderTableMeta.CONTENT_URI_EXTERNAL_LINKS,
  87. null,
  88. "type = ?",
  89. new String[]{type.toString()},
  90. null
  91. );
  92. if (cursor != null) {
  93. ArrayList<ExternalLink> list = new ArrayList<>();
  94. if (cursor.moveToFirst()) {
  95. do {
  96. ExternalLink externalLink = createExternalLinkFromCursor(cursor);
  97. if (externalLink == null) {
  98. Log_OC.e(TAG, "ExternalLink could not be created from cursor");
  99. } else {
  100. list.add(externalLink);
  101. }
  102. } while (cursor.moveToNext());
  103. }
  104. cursor.close();
  105. return list;
  106. } else {
  107. Log_OC.e(TAG, "DB error restoring externalLinks.");
  108. }
  109. return new ArrayList<>();
  110. }
  111. /**
  112. * create ContentValues object based on given externalLink.
  113. *
  114. * @param externalLink the external Link
  115. * @return the corresponding ContentValues object
  116. */
  117. @NonNull
  118. private ContentValues createContentValuesFromExternalLink(ExternalLink externalLink) {
  119. ContentValues cv = new ContentValues();
  120. cv.put(ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_ICON_URL, externalLink.iconUrl);
  121. cv.put(ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_LANGUAGE, externalLink.language);
  122. cv.put(ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_TYPE, externalLink.type.toString());
  123. cv.put(ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_NAME, externalLink.name);
  124. cv.put(ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_URL, externalLink.url);
  125. return cv;
  126. }
  127. /**
  128. * cursor to externalLink
  129. *
  130. * @param cursor db cursor
  131. * @return externalLink, null if cursor is null
  132. */
  133. private ExternalLink createExternalLinkFromCursor(Cursor cursor) {
  134. ExternalLink externalLink = null;
  135. if (cursor != null) {
  136. int id = cursor.getInt(cursor.getColumnIndex(ProviderMeta.ProviderTableMeta._ID));
  137. String iconUrl = cursor.getString(cursor.getColumnIndex(
  138. ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_ICON_URL));
  139. String language = cursor.getString(cursor.getColumnIndex(
  140. ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_LANGUAGE));
  141. ExternalLinkType type;
  142. switch (cursor.getString(cursor.getColumnIndex(
  143. ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_TYPE))) {
  144. case "link":
  145. type = ExternalLinkType.LINK;
  146. break;
  147. case "settings":
  148. type = ExternalLinkType.SETTINGS;
  149. break;
  150. case "quota":
  151. type = ExternalLinkType.QUOTA;
  152. break;
  153. default:
  154. type = ExternalLinkType.UNKNOWN;
  155. break;
  156. }
  157. String name = cursor.getString(cursor.getColumnIndex(
  158. ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_NAME));
  159. String url = cursor.getString(cursor.getColumnIndex(
  160. ProviderMeta.ProviderTableMeta.EXTERNAL_LINKS_URL));
  161. externalLink = new ExternalLink(id, iconUrl, language, type, name, url);
  162. }
  163. return externalLink;
  164. }
  165. private void downloadPNGIcon(Context context, String iconUrl, SimpleTarget imageView, int placeholder) {
  166. Glide
  167. .with(context)
  168. .load(iconUrl)
  169. .centerCrop()
  170. .placeholder(placeholder)
  171. .error(placeholder)
  172. .crossFade()
  173. .into(imageView);
  174. }
  175. private void downloadSVGIcon(Context context, String iconUrl, SimpleTarget imageView, int placeholder) {
  176. GenericRequestBuilder<Uri, InputStream, SVG, PictureDrawable> requestBuilder = Glide.with(context)
  177. .using(Glide.buildStreamModelLoader(Uri.class, context), InputStream.class)
  178. .from(Uri.class)
  179. .as(SVG.class)
  180. .transcode(new SvgDrawableTranscoder(), PictureDrawable.class)
  181. .sourceEncoder(new StreamEncoder())
  182. .cacheDecoder(new FileToStreamDecoder<>(new SvgDecoder()))
  183. .decoder(new SvgDecoder())
  184. .placeholder(placeholder)
  185. .error(placeholder)
  186. .animate(android.R.anim.fade_in);
  187. Uri uri = Uri.parse(iconUrl);
  188. requestBuilder
  189. .diskCacheStrategy(DiskCacheStrategy.SOURCE)
  190. .load(uri)
  191. .into(imageView);
  192. }
  193. public void downloadIcon(Context context, String iconUrl, SimpleTarget imageView, int placeholder){
  194. if (iconUrl.endsWith(".svg")){
  195. downloadSVGIcon(context, iconUrl, imageView, placeholder);
  196. } else {
  197. downloadPNGIcon(context, iconUrl, imageView, placeholder);
  198. }
  199. }
  200. }