ArbitraryDataProvider.java 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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.accounts.Account;
  22. import android.content.ContentResolver;
  23. import android.content.ContentValues;
  24. import android.database.Cursor;
  25. import android.net.Uri;
  26. import com.owncloud.android.db.ProviderMeta;
  27. import com.owncloud.android.lib.common.utils.Log_OC;
  28. import java.util.ArrayList;
  29. /**
  30. * Database provider for handling the persistence aspects of arbitrary data table.
  31. */
  32. public class ArbitraryDataProvider {
  33. static private final String TAG = ArbitraryDataProvider.class.getSimpleName();
  34. private ContentResolver contentResolver;
  35. public ArbitraryDataProvider(ContentResolver contentResolver) {
  36. if (contentResolver == null) {
  37. throw new IllegalArgumentException("Cannot create an instance with a NULL contentResolver");
  38. }
  39. this.contentResolver = contentResolver;
  40. }
  41. public void storeOrUpdateKeyValue(Account account, String key, String newValue) {
  42. Log_OC.v(TAG, "Adding arbitrary data with cloud id: " + account.name + " key: " + key + " value: " + newValue);
  43. ArbitraryDataSet data = getArbitraryDataSet(account, key);
  44. if (data == null) {
  45. ContentValues cv = new ContentValues();
  46. cv.put(ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID, account.name);
  47. cv.put(ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_KEY, key);
  48. cv.put(ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_VALUE, newValue);
  49. Uri result = contentResolver.insert(ProviderMeta.ProviderTableMeta.CONTENT_URI_ARBITRARY_DATA, cv);
  50. if (result == null) {
  51. Log_OC.v(TAG, "Failed to store arbitrary data with cloud id: " + account.name + " key: " + key
  52. + " value: " + newValue);
  53. }
  54. } else {
  55. ContentValues cv = new ContentValues();
  56. cv.put(ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID, data.getCloudId());
  57. cv.put(ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_KEY, data.getKey());
  58. cv.put(ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_VALUE, newValue);
  59. int result = contentResolver.update(
  60. ProviderMeta.ProviderTableMeta.CONTENT_URI_ARBITRARY_DATA,
  61. cv,
  62. ProviderMeta.ProviderTableMeta._ID + "=?",
  63. new String[]{String.valueOf(data.getId())}
  64. );
  65. if (result == 0) {
  66. Log_OC.v(TAG, "Failed to update arbitrary data with cloud id: " + account.name + " key: " + key
  67. + " value: " + newValue);
  68. }
  69. }
  70. }
  71. public Long getLongValue(Account account, String key) {
  72. String value = getValue(account, key);
  73. if (value.isEmpty()) {
  74. return -1l;
  75. } else {
  76. return Long.valueOf(value);
  77. }
  78. }
  79. private ArrayList<String> getValues(Account account, String key) {
  80. Cursor cursor = contentResolver.query(
  81. ProviderMeta.ProviderTableMeta.CONTENT_URI_ARBITRARY_DATA,
  82. null,
  83. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID + " = ? and " +
  84. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_KEY + " = ?",
  85. new String[]{account.name, key},
  86. null
  87. );
  88. if (cursor != null) {
  89. ArrayList<String> list = new ArrayList<>();
  90. if (cursor.moveToFirst()) {
  91. do {
  92. String value = cursor.getString(cursor.getColumnIndex(
  93. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_VALUE));
  94. if (value == null) {
  95. Log_OC.e(TAG, "Arbitrary value could not be created from cursor");
  96. } else {
  97. list.add(value);
  98. }
  99. } while (cursor.moveToNext());
  100. }
  101. cursor.close();
  102. return list;
  103. } else {
  104. Log_OC.e(TAG, "DB error restoring arbitrary values.");
  105. }
  106. return new ArrayList<>();
  107. }
  108. public String getValue(Account account, String key) {
  109. Cursor cursor = contentResolver.query(
  110. ProviderMeta.ProviderTableMeta.CONTENT_URI_ARBITRARY_DATA,
  111. null,
  112. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID + " = ? and " +
  113. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_KEY + " = ?",
  114. new String[]{account.name, key},
  115. null
  116. );
  117. if (cursor != null) {
  118. if (cursor.moveToFirst()) {
  119. String value = cursor.getString(cursor.getColumnIndex(
  120. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_VALUE));
  121. if (value == null) {
  122. Log_OC.e(TAG, "Arbitrary value could not be created from cursor");
  123. } else {
  124. return value;
  125. }
  126. }
  127. cursor.close();
  128. return "";
  129. } else {
  130. Log_OC.e(TAG, "DB error restoring arbitrary values.");
  131. }
  132. return "";
  133. }
  134. private ArbitraryDataSet getArbitraryDataSet(Account account, String key) {
  135. Cursor cursor = contentResolver.query(
  136. ProviderMeta.ProviderTableMeta.CONTENT_URI_ARBITRARY_DATA,
  137. null,
  138. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID + " = ? and " +
  139. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_KEY + " = ?",
  140. new String[]{account.name, key},
  141. null
  142. );
  143. ArbitraryDataSet dataSet = null;
  144. if (cursor != null) {
  145. if (cursor.moveToFirst()) {
  146. int id = cursor.getInt(cursor.getColumnIndex(ProviderMeta.ProviderTableMeta._ID));
  147. String dbAccount = cursor.getString(cursor.getColumnIndex(
  148. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_CLOUD_ID));
  149. String dbKey = cursor.getString(cursor.getColumnIndex(
  150. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_KEY));
  151. String dbValue = cursor.getString(cursor.getColumnIndex(
  152. ProviderMeta.ProviderTableMeta.ARBITRARY_DATA_VALUE));
  153. if (id == -1) {
  154. Log_OC.e(TAG, "Arbitrary value could not be created from cursor");
  155. } else {
  156. dataSet = new ArbitraryDataSet(id, dbAccount, dbKey, dbValue);
  157. }
  158. }
  159. cursor.close();
  160. } else {
  161. Log_OC.e(TAG, "DB error restoring arbitrary values.");
  162. }
  163. return dataSet;
  164. }
  165. public class ArbitraryDataSet {
  166. private int id;
  167. private String cloudId;
  168. private String key;
  169. private String value;
  170. public ArbitraryDataSet(int id, String cloudId, String key, String value) {
  171. this.id = id;
  172. this.cloudId = cloudId;
  173. this.key = key;
  174. this.value = value;
  175. }
  176. public int getId() {
  177. return id;
  178. }
  179. public String getCloudId() {
  180. return cloudId;
  181. }
  182. public String getKey() {
  183. return key;
  184. }
  185. public String getValue() {
  186. return value;
  187. }
  188. }
  189. }