FileDataStorageManager.java 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * Copyright (C) 2012 Bartek Przybylski
  5. * Copyright (C) 2015 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package com.owncloud.android.datamodel;
  21. import android.accounts.Account;
  22. import android.content.ContentProviderClient;
  23. import android.content.ContentProviderOperation;
  24. import android.content.ContentProviderResult;
  25. import android.content.ContentResolver;
  26. import android.content.ContentUris;
  27. import android.content.ContentValues;
  28. import android.content.Context;
  29. import android.content.Intent;
  30. import android.content.OperationApplicationException;
  31. import android.database.Cursor;
  32. import android.net.Uri;
  33. import android.os.RemoteException;
  34. import android.provider.MediaStore;
  35. import com.owncloud.android.MainApp;
  36. import com.owncloud.android.db.ProviderMeta.ProviderTableMeta;
  37. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  38. import com.owncloud.android.lib.common.utils.Log_OC;
  39. import com.owncloud.android.lib.resources.files.ReadRemoteFileOperation;
  40. import com.owncloud.android.lib.resources.files.RemoteFile;
  41. import com.owncloud.android.lib.resources.shares.OCShare;
  42. import com.owncloud.android.lib.resources.shares.ShareType;
  43. import com.owncloud.android.lib.resources.status.CapabilityBooleanType;
  44. import com.owncloud.android.lib.resources.status.OCCapability;
  45. import com.owncloud.android.utils.FileStorageUtils;
  46. import com.owncloud.android.utils.MimeType;
  47. import com.owncloud.android.utils.MimeTypeUtil;
  48. import java.io.File;
  49. import java.util.ArrayList;
  50. import java.util.Collection;
  51. import java.util.Collections;
  52. import java.util.HashSet;
  53. import java.util.Iterator;
  54. import java.util.List;
  55. import java.util.Locale;
  56. import java.util.Set;
  57. import java.util.Vector;
  58. public class FileDataStorageManager {
  59. public static final int ROOT_PARENT_ID = 0;
  60. private ContentResolver mContentResolver;
  61. private ContentProviderClient mContentProviderClient;
  62. private Account mAccount;
  63. private static final String AND = "=? AND ";
  64. private static final String FAILED_TO_INSERT_MSG = "Fail to insert insert file to database ";
  65. private static final String SENDING_TO_FILECONTENTPROVIDER_MSG = "Sending %d operations to FileContentProvider";
  66. private static final String EXCEPTION_MSG = "Exception in batch of operations ";
  67. private static final String TAG = FileDataStorageManager.class.getSimpleName();
  68. public FileDataStorageManager(Account account, ContentResolver cr) {
  69. mContentProviderClient = null;
  70. mContentResolver = cr;
  71. mAccount = account;
  72. }
  73. public FileDataStorageManager(Account account, ContentProviderClient cp) {
  74. mContentProviderClient = cp;
  75. mContentResolver = null;
  76. mAccount = account;
  77. }
  78. public void setAccount(Account account) {
  79. mAccount = account;
  80. }
  81. public Account getAccount() {
  82. return mAccount;
  83. }
  84. public ContentResolver getContentResolver() {
  85. return mContentResolver;
  86. }
  87. public ContentProviderClient getContentProviderClient() {
  88. return mContentProviderClient;
  89. }
  90. public OCFile getFileByPath(String path) {
  91. Cursor c = getFileCursorForValue(ProviderTableMeta.FILE_PATH, path);
  92. OCFile file = null;
  93. if (c.moveToFirst()) {
  94. file = createFileInstance(c);
  95. }
  96. c.close();
  97. if (file == null && OCFile.ROOT_PATH.equals(path)) {
  98. return createRootDir(); // root should always exist
  99. }
  100. return file;
  101. }
  102. public OCFile getFileById(long id) {
  103. Cursor c = getFileCursorForValue(ProviderTableMeta._ID, String.valueOf(id));
  104. OCFile file = null;
  105. if (c.moveToFirst()) {
  106. file = createFileInstance(c);
  107. }
  108. c.close();
  109. return file;
  110. }
  111. public OCFile getFileByLocalPath(String path) {
  112. Cursor c = getFileCursorForValue(ProviderTableMeta.FILE_STORAGE_PATH, path);
  113. OCFile file = null;
  114. if (c.moveToFirst()) {
  115. file = createFileInstance(c);
  116. }
  117. c.close();
  118. return file;
  119. }
  120. public boolean fileExists(long id) {
  121. return fileExists(ProviderTableMeta._ID, String.valueOf(id));
  122. }
  123. public boolean fileExists(String path) {
  124. return fileExists(ProviderTableMeta.FILE_PATH, path);
  125. }
  126. public Vector<OCFile> getFolderContent(OCFile f, boolean onlyOnDevice) {
  127. if (f != null && f.isFolder() && f.getFileId() != -1) {
  128. return getFolderContent(f.getFileId(), onlyOnDevice);
  129. } else {
  130. return new Vector<OCFile>();
  131. }
  132. }
  133. public Vector<OCFile> getFolderImages(OCFile folder, boolean onlyOnDevice) {
  134. Vector<OCFile> ret = new Vector<OCFile>();
  135. if (folder != null) {
  136. // TODO better implementation, filtering in the access to database instead of here
  137. Vector<OCFile> tmp = getFolderContent(folder, onlyOnDevice);
  138. OCFile current = null;
  139. for (int i=0; i<tmp.size(); i++) {
  140. current = tmp.get(i);
  141. if (MimeTypeUtil.isImage(current)) {
  142. ret.add(current);
  143. }
  144. }
  145. }
  146. return ret;
  147. }
  148. public boolean saveFile(OCFile file) {
  149. boolean overriden = false;
  150. ContentValues cv = new ContentValues();
  151. cv.put(ProviderTableMeta.FILE_MODIFIED, file.getModificationTimestamp());
  152. cv.put(
  153. ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
  154. file.getModificationTimestampAtLastSyncForData()
  155. );
  156. cv.put(ProviderTableMeta.FILE_CREATION, file.getCreationTimestamp());
  157. cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, file.getFileLength());
  158. cv.put(ProviderTableMeta.FILE_CONTENT_TYPE, file.getMimetype());
  159. cv.put(ProviderTableMeta.FILE_NAME, file.getFileName());
  160. cv.put(ProviderTableMeta.FILE_PARENT, file.getParentId());
  161. cv.put(ProviderTableMeta.FILE_PATH, file.getRemotePath());
  162. if (!file.isFolder()) {
  163. cv.put(ProviderTableMeta.FILE_STORAGE_PATH, file.getStoragePath());
  164. }
  165. cv.put(ProviderTableMeta.FILE_ACCOUNT_OWNER, mAccount.name);
  166. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE, file.getLastSyncDateForProperties());
  167. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA, file.getLastSyncDateForData());
  168. cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, file.isAvailableOffline() ? 1 : 0);
  169. cv.put(ProviderTableMeta.FILE_ETAG, file.getEtag());
  170. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, file.isSharedViaLink() ? 1 : 0);
  171. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, file.isSharedWithSharee() ? 1 : 0);
  172. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, file.getPublicLink());
  173. cv.put(ProviderTableMeta.FILE_PERMISSIONS, file.getPermissions());
  174. cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
  175. cv.put(ProviderTableMeta.FILE_UPDATE_THUMBNAIL, file.needsUpdateThumbnail());
  176. cv.put(ProviderTableMeta.FILE_IS_DOWNLOADING, file.isDownloading());
  177. cv.put(ProviderTableMeta.FILE_ETAG_IN_CONFLICT, file.getEtagInConflict());
  178. boolean sameRemotePath = fileExists(file.getRemotePath());
  179. if (sameRemotePath ||
  180. fileExists(file.getFileId())) { // for renamed files; no more delete and create
  181. OCFile oldFile;
  182. if (sameRemotePath) {
  183. oldFile = getFileByPath(file.getRemotePath());
  184. file.setFileId(oldFile.getFileId());
  185. } else {
  186. oldFile = getFileById(file.getFileId());
  187. }
  188. overriden = true;
  189. if (getContentResolver() != null) {
  190. getContentResolver().update(ProviderTableMeta.CONTENT_URI, cv,
  191. ProviderTableMeta._ID + "=?",
  192. new String[]{String.valueOf(file.getFileId())});
  193. } else {
  194. try {
  195. getContentProviderClient().update(ProviderTableMeta.CONTENT_URI,
  196. cv, ProviderTableMeta._ID + "=?",
  197. new String[]{String.valueOf(file.getFileId())});
  198. } catch (RemoteException e) {
  199. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  200. }
  201. }
  202. } else {
  203. Uri result_uri = null;
  204. if (getContentResolver() != null) {
  205. result_uri = getContentResolver().insert(ProviderTableMeta.CONTENT_URI_FILE, cv);
  206. } else {
  207. try {
  208. result_uri = getContentProviderClient().insert(ProviderTableMeta.CONTENT_URI_FILE, cv);
  209. } catch (RemoteException e) {
  210. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  211. }
  212. }
  213. if (result_uri != null) {
  214. long new_id = Long.parseLong(result_uri.getPathSegments().get(1));
  215. file.setFileId(new_id);
  216. }
  217. }
  218. return overriden;
  219. }
  220. public long saveFileWithParent(OCFile file, Context context) {
  221. if (file.getParentId() != 0 || file.getRemotePath().equals("/")) {
  222. saveFile(file);
  223. } else {
  224. String remotePath = file.getRemotePath();
  225. String parentPath = remotePath.substring(0, remotePath.lastIndexOf(file.getFileName()));
  226. OCFile parentFile = getFileByPath(parentPath);
  227. long fileId;
  228. if (parentFile == null) {
  229. // remote request
  230. ReadRemoteFileOperation operation = new ReadRemoteFileOperation(parentPath);
  231. RemoteOperationResult result = operation.execute(getAccount(), context);
  232. if (result.isSuccess()) {
  233. OCFile remoteFolder = FileStorageUtils.fillOCFile((RemoteFile) result.getData().get(0));
  234. fileId = saveFileWithParent(remoteFolder, context);
  235. } else {
  236. fileId = -1;
  237. Log_OC.e(TAG, "Error during saving file with parents: " + file.getRemotePath());
  238. }
  239. } else {
  240. fileId = saveFileWithParent(parentFile, context);
  241. }
  242. file.setParentId(fileId);
  243. saveFile(file);
  244. }
  245. return getFileByPath(file.getRemotePath()).getFileId();
  246. }
  247. public void saveNewFile(OCFile newFile) {
  248. String remoteParentPath = new File(newFile.getRemotePath()).getParent();
  249. remoteParentPath = remoteParentPath.endsWith(OCFile.PATH_SEPARATOR) ?
  250. remoteParentPath : remoteParentPath + OCFile.PATH_SEPARATOR;
  251. OCFile parent = getFileByPath(remoteParentPath);
  252. if (parent != null) {
  253. newFile.setParentId(parent.getFileId());
  254. saveFile(newFile);
  255. } else {
  256. throw new IllegalArgumentException("Saving a new file in an unexisting folder");
  257. }
  258. }
  259. /**
  260. * Inserts or updates the list of files contained in a given folder.
  261. * <p/>
  262. * CALLER IS THE RESPONSIBLE FOR GRANTING RIGHT UPDATE OF INFORMATION, NOT THIS METHOD.
  263. * HERE ONLY DATA CONSISTENCY SHOULD BE GRANTED
  264. *
  265. * @param folder
  266. * @param updatedFiles
  267. * @param filesToRemove
  268. */
  269. public void saveFolder(
  270. OCFile folder, Collection<OCFile> updatedFiles, Collection<OCFile> filesToRemove
  271. ) {
  272. Log_OC.d(TAG, "Saving folder " + folder.getRemotePath() + " with " + updatedFiles.size()
  273. + " children and " + filesToRemove.size() + " files to remove");
  274. ArrayList<ContentProviderOperation> operations =
  275. new ArrayList<ContentProviderOperation>(updatedFiles.size());
  276. // prepare operations to insert or update files to save in the given folder
  277. for (OCFile file : updatedFiles) {
  278. ContentValues cv = new ContentValues();
  279. cv.put(ProviderTableMeta.FILE_MODIFIED, file.getModificationTimestamp());
  280. cv.put(
  281. ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
  282. file.getModificationTimestampAtLastSyncForData()
  283. );
  284. cv.put(ProviderTableMeta.FILE_CREATION, file.getCreationTimestamp());
  285. cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, file.getFileLength());
  286. cv.put(ProviderTableMeta.FILE_CONTENT_TYPE, file.getMimetype());
  287. cv.put(ProviderTableMeta.FILE_NAME, file.getFileName());
  288. //cv.put(ProviderTableMeta.FILE_PARENT, file.getParentId());
  289. cv.put(ProviderTableMeta.FILE_PARENT, folder.getFileId());
  290. cv.put(ProviderTableMeta.FILE_PATH, file.getRemotePath());
  291. if (!file.isFolder()) {
  292. cv.put(ProviderTableMeta.FILE_STORAGE_PATH, file.getStoragePath());
  293. }
  294. cv.put(ProviderTableMeta.FILE_ACCOUNT_OWNER, mAccount.name);
  295. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE, file.getLastSyncDateForProperties());
  296. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA, file.getLastSyncDateForData());
  297. cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, file.isAvailableOffline() ? 1 : 0);
  298. cv.put(ProviderTableMeta.FILE_ETAG, file.getEtag());
  299. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, file.isSharedViaLink() ? 1 : 0);
  300. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, file.isSharedWithSharee() ? 1 : 0);
  301. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, file.getPublicLink());
  302. cv.put(ProviderTableMeta.FILE_PERMISSIONS, file.getPermissions());
  303. cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
  304. cv.put(ProviderTableMeta.FILE_UPDATE_THUMBNAIL, file.needsUpdateThumbnail());
  305. cv.put(ProviderTableMeta.FILE_IS_DOWNLOADING, file.isDownloading());
  306. cv.put(ProviderTableMeta.FILE_ETAG_IN_CONFLICT, file.getEtagInConflict());
  307. cv.put(ProviderTableMeta.FILE_FAVORITE, file.getIsFavorite());
  308. boolean existsByPath = fileExists(file.getRemotePath());
  309. if (existsByPath || fileExists(file.getFileId())) {
  310. // updating an existing file
  311. operations.add(ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI).
  312. withValues(cv).
  313. withSelection(ProviderTableMeta._ID + "=?",
  314. new String[]{String.valueOf(file.getFileId())})
  315. .build());
  316. } else {
  317. // adding a new file
  318. operations.add(ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI).
  319. withValues(cv).build());
  320. }
  321. }
  322. // prepare operations to remove files in the given folder
  323. String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + AND +
  324. ProviderTableMeta.FILE_PATH + "=?";
  325. String [] whereArgs = null;
  326. for (OCFile file : filesToRemove) {
  327. if (file.getParentId() == folder.getFileId()) {
  328. whereArgs = new String[]{mAccount.name, file.getRemotePath()};
  329. if (file.isFolder()) {
  330. operations.add(ContentProviderOperation.newDelete(
  331. ContentUris.withAppendedId(
  332. ProviderTableMeta.CONTENT_URI_DIR, file.getFileId()
  333. )
  334. ).withSelection(where, whereArgs).build());
  335. File localFolder = new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
  336. if (localFolder.exists()) {
  337. removeLocalFolder(localFolder);
  338. }
  339. } else {
  340. operations.add(ContentProviderOperation.newDelete(
  341. ContentUris.withAppendedId(
  342. ProviderTableMeta.CONTENT_URI_FILE, file.getFileId()
  343. )
  344. ).withSelection(where, whereArgs).build());
  345. if (file.isDown()) {
  346. String path = file.getStoragePath();
  347. new File(path).delete();
  348. triggerMediaScan(path); // notify MediaScanner about removed file
  349. }
  350. }
  351. }
  352. }
  353. // update metadata of folder
  354. ContentValues cv = new ContentValues();
  355. cv.put(ProviderTableMeta.FILE_MODIFIED, folder.getModificationTimestamp());
  356. cv.put(
  357. ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
  358. folder.getModificationTimestampAtLastSyncForData()
  359. );
  360. cv.put(ProviderTableMeta.FILE_CREATION, folder.getCreationTimestamp());
  361. cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, 0);
  362. cv.put(ProviderTableMeta.FILE_CONTENT_TYPE, folder.getMimetype());
  363. cv.put(ProviderTableMeta.FILE_NAME, folder.getFileName());
  364. cv.put(ProviderTableMeta.FILE_PARENT, folder.getParentId());
  365. cv.put(ProviderTableMeta.FILE_PATH, folder.getRemotePath());
  366. cv.put(ProviderTableMeta.FILE_ACCOUNT_OWNER, mAccount.name);
  367. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE, folder.getLastSyncDateForProperties());
  368. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA, folder.getLastSyncDateForData());
  369. cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, folder.isAvailableOffline() ? 1 : 0);
  370. cv.put(ProviderTableMeta.FILE_ETAG, folder.getEtag());
  371. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, folder.isSharedViaLink() ? 1 : 0);
  372. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, folder.isSharedWithSharee() ? 1 : 0);
  373. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, folder.getPublicLink());
  374. cv.put(ProviderTableMeta.FILE_PERMISSIONS, folder.getPermissions());
  375. cv.put(ProviderTableMeta.FILE_REMOTE_ID, folder.getRemoteId());
  376. cv.put(ProviderTableMeta.FILE_FAVORITE, folder.getIsFavorite());
  377. operations.add(ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI).
  378. withValues(cv).
  379. withSelection(ProviderTableMeta._ID + "=?",
  380. new String[]{String.valueOf(folder.getFileId())})
  381. .build());
  382. // apply operations in batch
  383. ContentProviderResult[] results = null;
  384. Log_OC.d(TAG, String.format(Locale.ENGLISH, SENDING_TO_FILECONTENTPROVIDER_MSG, operations.size()));
  385. try {
  386. if (getContentResolver() != null) {
  387. results = getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  388. } else {
  389. results = getContentProviderClient().applyBatch(operations);
  390. }
  391. } catch (OperationApplicationException | RemoteException e) {
  392. Log_OC.e(TAG, EXCEPTION_MSG + e.getMessage(), e);
  393. }
  394. // update new id in file objects for insertions
  395. if (results != null) {
  396. long newId;
  397. Iterator<OCFile> filesIt = updatedFiles.iterator();
  398. OCFile file = null;
  399. for (ContentProviderResult result : results) {
  400. if (filesIt.hasNext()) {
  401. file = filesIt.next();
  402. } else {
  403. file = null;
  404. }
  405. if (result.uri != null) {
  406. newId = Long.parseLong(result.uri.getPathSegments().get(1));
  407. //updatedFiles.get(i).setFileId(newId);
  408. if (file != null) {
  409. file.setFileId(newId);
  410. }
  411. }
  412. }
  413. }
  414. }
  415. public boolean removeFile(OCFile file, boolean removeDBData, boolean removeLocalCopy) {
  416. boolean success = true;
  417. if (file != null) {
  418. if (file.isFolder()) {
  419. success = removeFolder(file, removeDBData, removeLocalCopy);
  420. } else {
  421. if (removeDBData) {
  422. //Uri file_uri = Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_FILE,
  423. // ""+file.getFileId());
  424. Uri file_uri = ContentUris.withAppendedId(ProviderTableMeta.CONTENT_URI_FILE, file.getFileId());
  425. String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PATH + "=?";
  426. String[] whereArgs = new String[]{mAccount.name, file.getRemotePath()};
  427. int deleted = 0;
  428. if (getContentProviderClient() != null) {
  429. try {
  430. deleted = getContentProviderClient().delete(file_uri, where, whereArgs);
  431. } catch (RemoteException e) {
  432. Log_OC.d(TAG, e.getMessage(), e);
  433. }
  434. } else {
  435. deleted = getContentResolver().delete(file_uri, where, whereArgs);
  436. }
  437. success = deleted > 0;
  438. }
  439. String localPath = file.getStoragePath();
  440. if (removeLocalCopy && file.isDown() && localPath != null && success) {
  441. success = new File(localPath).delete();
  442. if (success) {
  443. deleteFileInMediaScan(localPath);
  444. }
  445. if (!removeDBData && success) {
  446. // maybe unnecessary, but should be checked TODO remove if unnecessary
  447. file.setStoragePath(null);
  448. saveFile(file);
  449. saveConflict(file, null);
  450. }
  451. }
  452. }
  453. } else {
  454. return false;
  455. }
  456. return success;
  457. }
  458. public boolean removeFolder(OCFile folder, boolean removeDBData, boolean removeLocalContent) {
  459. boolean success = false;
  460. if (folder != null && folder.isFolder()) {
  461. if (removeDBData && folder.getFileId() != -1) {
  462. success = removeFolderInDb(folder);
  463. }
  464. if (removeLocalContent && success) {
  465. success = removeLocalFolder(folder);
  466. }
  467. }
  468. return success;
  469. }
  470. private boolean removeFolderInDb(OCFile folder) {
  471. Uri folder_uri = Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, "" + folder.getFileId()); // URI
  472. // for recursive deletion
  473. String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PATH + "=?";
  474. String [] whereArgs = new String[]{mAccount.name, folder.getRemotePath()};
  475. int deleted = 0;
  476. if (getContentProviderClient() != null) {
  477. try {
  478. deleted = getContentProviderClient().delete(folder_uri, where, whereArgs);
  479. } catch (RemoteException e) {
  480. Log_OC.d(TAG, e.getMessage(), e);
  481. }
  482. } else {
  483. deleted = getContentResolver().delete(folder_uri, where, whereArgs);
  484. }
  485. return deleted > 0;
  486. }
  487. private boolean removeLocalFolder(OCFile folder) {
  488. boolean success = true;
  489. String localFolderPath = FileStorageUtils.getDefaultSavePathFor(mAccount.name, folder);
  490. File localFolder = new File(localFolderPath);
  491. if (localFolder.exists()) {
  492. // stage 1: remove the local files already registered in the files database
  493. Vector<OCFile> files = getFolderContent(folder.getFileId(), false);
  494. if (files != null) {
  495. for (OCFile file : files) {
  496. if (file.isFolder()) {
  497. success &= removeLocalFolder(file);
  498. } else {
  499. if (file.isDown()) {
  500. File localFile = new File(file.getStoragePath());
  501. success &= localFile.delete();
  502. if (success) {
  503. // notify MediaScanner about removed file
  504. deleteFileInMediaScan(file.getStoragePath());
  505. file.setStoragePath(null);
  506. saveFile(file);
  507. }
  508. }
  509. }
  510. }
  511. }
  512. // stage 2: remove the folder itself and any local file inside out of sync;
  513. // for instance, after clearing the app cache or reinstalling
  514. success &= removeLocalFolder(localFolder);
  515. }
  516. return success;
  517. }
  518. private boolean removeLocalFolder(File localFolder) {
  519. boolean success = true;
  520. File[] localFiles = localFolder.listFiles();
  521. if (localFiles != null) {
  522. for (File localFile : localFiles) {
  523. if (localFile.isDirectory()) {
  524. success &= removeLocalFolder(localFile);
  525. } else {
  526. String path = localFile.getAbsolutePath();
  527. success &= localFile.delete();
  528. }
  529. }
  530. }
  531. success &= localFolder.delete();
  532. return success;
  533. }
  534. /**
  535. * Updates database and file system for a file or folder that was moved to a different location.
  536. *
  537. * TODO explore better (faster) implementations
  538. * TODO throw exceptions up !
  539. */
  540. public void moveLocalFile(OCFile file, String targetPath, String targetParentPath) {
  541. if (file != null && file.fileExists() && !OCFile.ROOT_PATH.equals(file.getFileName())) {
  542. OCFile targetParent = getFileByPath(targetParentPath);
  543. if (targetParent == null) {
  544. throw new IllegalStateException("Parent folder of the target path does not exist!!");
  545. }
  546. /// 1. get all the descendants of the moved element in a single QUERY
  547. Cursor c = null;
  548. if (getContentProviderClient() != null) {
  549. try {
  550. c = getContentProviderClient().query(
  551. ProviderTableMeta.CONTENT_URI,
  552. null,
  553. ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PATH + " LIKE ? ",
  554. new String[]{mAccount.name, file.getRemotePath() + "%"},
  555. ProviderTableMeta.FILE_PATH + " ASC "
  556. );
  557. } catch (RemoteException e) {
  558. Log_OC.e(TAG, e.getMessage(), e);
  559. }
  560. } else {
  561. c = getContentResolver().query(
  562. ProviderTableMeta.CONTENT_URI,
  563. null,
  564. ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PATH + " LIKE ? ",
  565. new String[]{mAccount.name, file.getRemotePath() + "%"},
  566. ProviderTableMeta.FILE_PATH + " ASC "
  567. );
  568. }
  569. /// 2. prepare a batch of update operations to change all the descendants
  570. ArrayList<ContentProviderOperation> operations = new ArrayList<>(c.getCount());
  571. String defaultSavePath = FileStorageUtils.getSavePath(mAccount.name);
  572. List<String> originalPathsToTriggerMediaScan = new ArrayList<String>();
  573. List<String> newPathsToTriggerMediaScan = new ArrayList<String>();
  574. if (c.moveToFirst()) {
  575. int lengthOfOldPath = file.getRemotePath().length();
  576. int lengthOfOldStoragePath = defaultSavePath.length() + lengthOfOldPath;
  577. do {
  578. ContentValues cv = new ContentValues(); // keep construction in the loop
  579. OCFile child = createFileInstance(c);
  580. cv.put(
  581. ProviderTableMeta.FILE_PATH,
  582. targetPath + child.getRemotePath().substring(lengthOfOldPath)
  583. );
  584. if (child.getStoragePath() != null && child.getStoragePath().startsWith(defaultSavePath)) {
  585. // update link to downloaded content - but local move is not done here!
  586. String targetLocalPath = defaultSavePath + targetPath +
  587. child.getStoragePath().substring(lengthOfOldStoragePath);
  588. cv.put(ProviderTableMeta.FILE_STORAGE_PATH, targetLocalPath);
  589. originalPathsToTriggerMediaScan.add(child.getStoragePath());
  590. newPathsToTriggerMediaScan.add(targetLocalPath);
  591. }
  592. if (child.getRemotePath().equals(file.getRemotePath())) {
  593. cv.put(ProviderTableMeta.FILE_PARENT, targetParent.getFileId());
  594. }
  595. operations.add(
  596. ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI).
  597. withValues(cv).
  598. withSelection(
  599. ProviderTableMeta._ID + "=?",
  600. new String[]{String.valueOf(child.getFileId())}
  601. )
  602. .build());
  603. } while (c.moveToNext());
  604. }
  605. c.close();
  606. /// 3. apply updates in batch
  607. try {
  608. if (getContentResolver() != null) {
  609. getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  610. } else {
  611. getContentProviderClient().applyBatch(operations);
  612. }
  613. } catch (Exception e) {
  614. Log_OC.e(TAG, "Fail to update " + file.getFileId() + " and descendants in database", e);
  615. }
  616. /// 4. move in local file system
  617. String originalLocalPath = FileStorageUtils.getDefaultSavePathFor(mAccount.name, file);
  618. String targetLocalPath = defaultSavePath + targetPath;
  619. File localFile = new File(originalLocalPath);
  620. boolean renamed = false;
  621. if (localFile.exists()) {
  622. File targetFile = new File(targetLocalPath);
  623. File targetFolder = targetFile.getParentFile();
  624. if (!targetFolder.exists()) {
  625. targetFolder.mkdirs();
  626. }
  627. renamed = localFile.renameTo(targetFile);
  628. }
  629. if (renamed) {
  630. Iterator<String> it = originalPathsToTriggerMediaScan.iterator();
  631. while (it.hasNext()) {
  632. // Notify MediaScanner about removed file
  633. deleteFileInMediaScan(it.next());
  634. }
  635. it = newPathsToTriggerMediaScan.iterator();
  636. while (it.hasNext()) {
  637. // Notify MediaScanner about new file/folder
  638. triggerMediaScan(it.next());
  639. }
  640. }
  641. }
  642. }
  643. public void copyLocalFile(OCFile file, String targetPath) {
  644. if (file != null && file.fileExists() && !OCFile.ROOT_PATH.equals(file.getFileName())) {
  645. String localPath = FileStorageUtils.getDefaultSavePathFor(mAccount.name, file);
  646. File localFile = new File(localPath);
  647. boolean copied = false;
  648. String defaultSavePath = FileStorageUtils.getSavePath(mAccount.name);
  649. if (localFile.exists()) {
  650. File targetFile = new File(defaultSavePath + targetPath);
  651. File targetFolder = targetFile.getParentFile();
  652. if (!targetFolder.exists()) {
  653. targetFolder.mkdirs();
  654. }
  655. copied = FileStorageUtils.copyFile(localFile, targetFile);
  656. }
  657. Log_OC.d(TAG, "Local file COPIED : " + copied);
  658. }
  659. }
  660. public void migrateStoredFiles(String srcPath, String dstPath) throws Exception {
  661. Cursor cursor;
  662. try {
  663. if (getContentResolver() != null) {
  664. cursor = getContentResolver().query(ProviderTableMeta.CONTENT_URI_FILE,
  665. null,
  666. ProviderTableMeta.FILE_STORAGE_PATH + " IS NOT NULL",
  667. null,
  668. null);
  669. } else {
  670. cursor = getContentProviderClient().query(ProviderTableMeta.CONTENT_URI_FILE,
  671. new String[]{ProviderTableMeta._ID, ProviderTableMeta.FILE_STORAGE_PATH},
  672. ProviderTableMeta.FILE_STORAGE_PATH + " IS NOT NULL",
  673. null,
  674. null);
  675. }
  676. } catch (RemoteException e) {
  677. Log_OC.e(TAG, e.getMessage(), e);
  678. throw e;
  679. }
  680. ArrayList<ContentProviderOperation> operations = new ArrayList<>(cursor.getCount());
  681. if (cursor.moveToFirst()) {
  682. do {
  683. ContentValues cv = new ContentValues();
  684. long fileId = cursor.getLong(cursor.getColumnIndex(ProviderTableMeta._ID));
  685. String oldFileStoragePath =
  686. cursor.getString(cursor.getColumnIndex(ProviderTableMeta.FILE_STORAGE_PATH));
  687. if (oldFileStoragePath.startsWith(srcPath)) {
  688. cv.put(ProviderTableMeta.FILE_STORAGE_PATH, oldFileStoragePath.replaceFirst(srcPath, dstPath));
  689. operations.add(
  690. ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI).
  691. withValues(cv).
  692. withSelection(ProviderTableMeta._ID + "=?", new String[]{String.valueOf(fileId)})
  693. .build());
  694. }
  695. } while (cursor.moveToNext());
  696. }
  697. cursor.close();
  698. /// 3. apply updates in batch
  699. if (getContentResolver() != null) {
  700. getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  701. } else {
  702. getContentProviderClient().applyBatch(operations);
  703. }
  704. }
  705. private Vector<OCFile> getFolderContent(long parentId, boolean onlyOnDevice) {
  706. Vector<OCFile> ret = new Vector<>();
  707. Uri req_uri = Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, String.valueOf(parentId));
  708. Cursor c = null;
  709. if (getContentProviderClient() != null) {
  710. try {
  711. c = getContentProviderClient().query(
  712. req_uri,
  713. null,
  714. ProviderTableMeta.FILE_PARENT + "=?",
  715. new String[]{String.valueOf(parentId)},
  716. null
  717. );
  718. } catch (RemoteException e) {
  719. Log_OC.e(TAG, e.getMessage(), e);
  720. return ret;
  721. }
  722. } else {
  723. c = getContentResolver().query(
  724. req_uri,
  725. null,
  726. ProviderTableMeta.FILE_PARENT + "=?",
  727. new String[]{String.valueOf(parentId)},
  728. null
  729. );
  730. }
  731. if (c != null && c.moveToFirst()) {
  732. do {
  733. OCFile child = createFileInstance(c);
  734. if (child.isFolder() || !onlyOnDevice || child.isDown()) {
  735. ret.add(child);
  736. }
  737. } while (c.moveToNext());
  738. c.close();
  739. }
  740. Collections.sort(ret);
  741. return ret;
  742. }
  743. private OCFile createRootDir() {
  744. OCFile file = new OCFile(OCFile.ROOT_PATH);
  745. file.setMimetype(MimeType.DIRECTORY);
  746. file.setParentId(FileDataStorageManager.ROOT_PARENT_ID);
  747. saveFile(file);
  748. return file;
  749. }
  750. private boolean fileExists(String cmp_key, String value) {
  751. Cursor c;
  752. if (getContentResolver() != null) {
  753. c = getContentResolver()
  754. .query(ProviderTableMeta.CONTENT_URI,
  755. null,
  756. cmp_key + AND
  757. + ProviderTableMeta.FILE_ACCOUNT_OWNER
  758. + "=?",
  759. new String[]{value, mAccount.name}, null);
  760. } else {
  761. try {
  762. c = getContentProviderClient().query(
  763. ProviderTableMeta.CONTENT_URI,
  764. null,
  765. cmp_key + AND
  766. + ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?",
  767. new String[]{value, mAccount.name}, null);
  768. } catch (RemoteException e) {
  769. Log_OC.e(TAG, "Couldn't determine file existance, assuming non existance: " + e.getMessage(), e);
  770. return false;
  771. }
  772. }
  773. boolean retval = c.moveToFirst();
  774. c.close();
  775. return retval;
  776. }
  777. private Cursor getFileCursorForValue(String key, String value) {
  778. Cursor c = null;
  779. if (getContentResolver() != null) {
  780. c = getContentResolver()
  781. .query(ProviderTableMeta.CONTENT_URI,
  782. null,
  783. key + AND
  784. + ProviderTableMeta.FILE_ACCOUNT_OWNER
  785. + "=?",
  786. new String[]{value, mAccount.name}, null);
  787. } else {
  788. try {
  789. c = getContentProviderClient().query(
  790. ProviderTableMeta.CONTENT_URI,
  791. null,
  792. key + AND + ProviderTableMeta.FILE_ACCOUNT_OWNER
  793. + "=?", new String[]{value, mAccount.name},
  794. null);
  795. } catch (RemoteException e) {
  796. Log_OC.e(TAG, "Could not get file details: " + e.getMessage(), e);
  797. c = null;
  798. }
  799. }
  800. return c;
  801. }
  802. private OCFile createFileInstanceFromVirtual(Cursor c) {
  803. OCFile file = null;
  804. if (c != null) {
  805. long fileId = c.getLong(c.getColumnIndex(ProviderTableMeta.VIRTUAL_OCFILE_ID));
  806. file = getFileById(fileId);
  807. }
  808. return file;
  809. }
  810. private OCFile createFileInstance(Cursor c) {
  811. OCFile file = null;
  812. if (c != null) {
  813. file = new OCFile(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_PATH)));
  814. file.setFileId(c.getLong(c.getColumnIndex(ProviderTableMeta._ID)));
  815. file.setParentId(c.getLong(c.getColumnIndex(ProviderTableMeta.FILE_PARENT)));
  816. file.setMimetype(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_CONTENT_TYPE)));
  817. if (!file.isFolder()) {
  818. file.setStoragePath(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_STORAGE_PATH)));
  819. if (file.getStoragePath() == null) {
  820. // try to find existing file and bind it with current account;
  821. // with the current update of SynchronizeFolderOperation, this won't be
  822. // necessary anymore after a full synchronization of the account
  823. File f = new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
  824. if (f.exists()) {
  825. file.setStoragePath(f.getAbsolutePath());
  826. file.setLastSyncDateForData(f.lastModified());
  827. }
  828. }
  829. }
  830. file.setFileLength(c.getLong(c
  831. .getColumnIndex(ProviderTableMeta.FILE_CONTENT_LENGTH)));
  832. file.setCreationTimestamp(c.getLong(c.getColumnIndex(ProviderTableMeta.FILE_CREATION)));
  833. file.setModificationTimestamp(c.getLong(c.getColumnIndex(ProviderTableMeta.FILE_MODIFIED)));
  834. file.setModificationTimestampAtLastSyncForData(c.getLong(
  835. c.getColumnIndex(ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA)));
  836. file.setLastSyncDateForProperties(c.getLong(c.getColumnIndex(ProviderTableMeta.FILE_LAST_SYNC_DATE)));
  837. file.setLastSyncDateForData(c.getLong(c.getColumnIndex(ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA)));
  838. file.setAvailableOffline(c.getInt(c.getColumnIndex(ProviderTableMeta.FILE_KEEP_IN_SYNC)) == 1);
  839. file.setEtag(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_ETAG)));
  840. file.setShareViaLink(c.getInt(
  841. c.getColumnIndex(ProviderTableMeta.FILE_SHARED_VIA_LINK)) == 1);
  842. file.setShareWithSharee(c.getInt(
  843. c.getColumnIndex(ProviderTableMeta.FILE_SHARED_WITH_SHAREE)) == 1);
  844. file.setPublicLink(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_PUBLIC_LINK)));
  845. file.setPermissions(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_PERMISSIONS)));
  846. file.setRemoteId(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_REMOTE_ID)));
  847. file.setNeedsUpdateThumbnail(c.getInt(
  848. c.getColumnIndex(ProviderTableMeta.FILE_UPDATE_THUMBNAIL)) == 1);
  849. file.setDownloading(c.getInt(
  850. c.getColumnIndex(ProviderTableMeta.FILE_IS_DOWNLOADING)) == 1);
  851. file.setEtagInConflict(c.getString(c.getColumnIndex(ProviderTableMeta.FILE_ETAG_IN_CONFLICT)));
  852. file.setFavorite(c.getInt(c.getColumnIndex(ProviderTableMeta.FILE_FAVORITE)) == 1);
  853. }
  854. return file;
  855. }
  856. // Methods for Shares
  857. public boolean saveShare(OCShare share) {
  858. boolean overriden = false;
  859. ContentValues cv = new ContentValues();
  860. cv.put(ProviderTableMeta.OCSHARES_FILE_SOURCE, share.getFileSource());
  861. cv.put(ProviderTableMeta.OCSHARES_ITEM_SOURCE, share.getItemSource());
  862. cv.put(ProviderTableMeta.OCSHARES_SHARE_TYPE, share.getShareType().getValue());
  863. cv.put(ProviderTableMeta.OCSHARES_SHARE_WITH, share.getShareWith());
  864. cv.put(ProviderTableMeta.OCSHARES_PATH, share.getPath());
  865. cv.put(ProviderTableMeta.OCSHARES_PERMISSIONS, share.getPermissions());
  866. cv.put(ProviderTableMeta.OCSHARES_SHARED_DATE, share.getSharedDate());
  867. cv.put(ProviderTableMeta.OCSHARES_EXPIRATION_DATE, share.getExpirationDate());
  868. cv.put(ProviderTableMeta.OCSHARES_TOKEN, share.getToken());
  869. cv.put(
  870. ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
  871. share.getSharedWithDisplayName()
  872. );
  873. cv.put(ProviderTableMeta.OCSHARES_IS_DIRECTORY, share.isFolder() ? 1 : 0);
  874. cv.put(ProviderTableMeta.OCSHARES_USER_ID, share.getUserId());
  875. cv.put(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, share.getRemoteId());
  876. cv.put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, mAccount.name);
  877. if (shareExistsForRemoteId(share.getRemoteId())) {// for renamed files; no more delete and create
  878. overriden = true;
  879. if (getContentResolver() != null) {
  880. getContentResolver().update(ProviderTableMeta.CONTENT_URI_SHARE, cv,
  881. ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + "=?",
  882. new String[]{String.valueOf(share.getRemoteId())});
  883. } else {
  884. try {
  885. getContentProviderClient().update(ProviderTableMeta.CONTENT_URI_SHARE,
  886. cv, ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + "=?",
  887. new String[]{String.valueOf(share.getRemoteId())});
  888. } catch (RemoteException e) {
  889. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  890. }
  891. }
  892. } else {
  893. Uri result_uri = null;
  894. if (getContentResolver() != null) {
  895. result_uri = getContentResolver().insert(ProviderTableMeta.CONTENT_URI_SHARE, cv);
  896. } else {
  897. try {
  898. result_uri = getContentProviderClient().insert(ProviderTableMeta.CONTENT_URI_SHARE, cv);
  899. } catch (RemoteException e) {
  900. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  901. }
  902. }
  903. if (result_uri != null) {
  904. long new_id = Long.parseLong(result_uri.getPathSegments().get(1));
  905. share.setId(new_id);
  906. }
  907. }
  908. return overriden;
  909. }
  910. /**
  911. * Retrieves an stored {@link OCShare} given its id.
  912. *
  913. * @param id Identifier.
  914. * @return Stored {@link OCShare} given its id.
  915. */
  916. public OCShare getShareById(long id) {
  917. OCShare share = null;
  918. Cursor c = getShareCursorForValue(ProviderTableMeta._ID, String.valueOf(id));
  919. if (c != null) {
  920. if (c.moveToFirst()) {
  921. share = createShareInstance(c);
  922. }
  923. c.close();
  924. }
  925. return share;
  926. }
  927. /**
  928. * Checks the existance of an stored {@link OCShare} matching the given remote id (not to be confused with
  929. * the local id) in the current account.
  930. *
  931. * @param remoteId Remote of the share in the server.
  932. * @return 'True' if a matching {@link OCShare} is stored in the current account.
  933. */
  934. private boolean shareExistsForRemoteId(long remoteId) {
  935. return shareExistsForValue(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, String.valueOf(remoteId));
  936. }
  937. /**
  938. * Checks the existance of an stored {@link OCShare} in the current account
  939. * matching a given column and a value for that column
  940. *
  941. * @param key Name of the column to match.
  942. * @param value Value of the column to match.
  943. * @return 'True' if a matching {@link OCShare} is stored in the current account.
  944. */
  945. private boolean shareExistsForValue(String key, String value) {
  946. Cursor c = getShareCursorForValue(key, value);
  947. boolean retval = c.moveToFirst();
  948. c.close();
  949. return retval;
  950. }
  951. /**
  952. * Gets a {@link Cursor} for an stored {@link OCShare} in the current account
  953. * matching a given column and a value for that column
  954. *
  955. * @param key Name of the column to match.
  956. * @param value Value of the column to match.
  957. * @return 'True' if a matching {@link OCShare} is stored in the current account.
  958. */
  959. private Cursor getShareCursorForValue(String key, String value) {
  960. Cursor c;
  961. if (getContentResolver() != null) {
  962. c = getContentResolver()
  963. .query(ProviderTableMeta.CONTENT_URI_SHARE,
  964. null,
  965. key + AND
  966. + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?",
  967. new String[]{value, mAccount.name},
  968. null
  969. );
  970. } else {
  971. try {
  972. c = getContentProviderClient().query(
  973. ProviderTableMeta.CONTENT_URI_SHARE,
  974. null,
  975. key + AND + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?",
  976. new String[]{value, mAccount.name},
  977. null
  978. );
  979. } catch (RemoteException e) {
  980. Log_OC.w(TAG, "Could not get details, assuming share does not exist: "+ e.getMessage());
  981. c = null;
  982. }
  983. }
  984. return c;
  985. }
  986. /**
  987. * Get first share bound to a file with a known path and given {@link ShareType}.
  988. *
  989. * @param path Path of the file.
  990. * @param type Type of the share to get
  991. * @param shareWith Target of the share. Ignored in type is {@link ShareType#PUBLIC_LINK}
  992. * @return First {@link OCShare} instance found in DB bound to the file in 'path'
  993. */
  994. public OCShare getFirstShareByPathAndType(String path, ShareType type, String shareWith) {
  995. Cursor cursor = null;
  996. if (shareWith == null) {
  997. shareWith = "";
  998. }
  999. String selection = ProviderTableMeta.OCSHARES_PATH + AND
  1000. + ProviderTableMeta.OCSHARES_SHARE_TYPE + AND
  1001. + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?" ;
  1002. if (!ShareType.PUBLIC_LINK.equals(type)) {
  1003. selection += " AND " + ProviderTableMeta.OCSHARES_SHARE_WITH + "=?";
  1004. }
  1005. String [] selectionArgs;
  1006. if (ShareType.PUBLIC_LINK.equals(type)) {
  1007. selectionArgs = new String[]{
  1008. path,
  1009. Integer.toString(type.getValue()),
  1010. mAccount.name
  1011. };
  1012. } else {
  1013. selectionArgs = new String[]{
  1014. path,
  1015. Integer.toString(type.getValue()),
  1016. mAccount.name,
  1017. shareWith
  1018. };
  1019. }
  1020. if (getContentResolver() != null) {
  1021. cursor = getContentResolver().query(
  1022. ProviderTableMeta.CONTENT_URI_SHARE,
  1023. null,
  1024. selection, selectionArgs,
  1025. null);
  1026. } else {
  1027. try {
  1028. cursor = getContentProviderClient().query(
  1029. ProviderTableMeta.CONTENT_URI_SHARE,
  1030. null,
  1031. selection, selectionArgs,
  1032. null);
  1033. } catch (RemoteException e) {
  1034. Log_OC.e(TAG, "Could not get file details: " + e.getMessage(), e);
  1035. cursor = null;
  1036. }
  1037. }
  1038. OCShare share = null;
  1039. if (cursor != null) {
  1040. if (cursor.moveToFirst()) {
  1041. share = createShareInstance(cursor);
  1042. }
  1043. cursor.close();
  1044. }
  1045. return share;
  1046. }
  1047. private OCShare createShareInstance(Cursor c) {
  1048. OCShare share = null;
  1049. if (c != null) {
  1050. share = new OCShare(c.getString(c.getColumnIndex(ProviderTableMeta.OCSHARES_PATH)));
  1051. share.setId(c.getLong(c.getColumnIndex(ProviderTableMeta._ID)));
  1052. share.setFileSource(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_ITEM_SOURCE)));
  1053. share.setShareType(ShareType.fromValue(c.getInt(c.getColumnIndex(ProviderTableMeta.OCSHARES_SHARE_TYPE))));
  1054. share.setShareWith(c.getString(c.getColumnIndex(ProviderTableMeta.OCSHARES_SHARE_WITH)));
  1055. share.setPermissions(c.getInt(c.getColumnIndex(ProviderTableMeta.OCSHARES_PERMISSIONS)));
  1056. share.setSharedDate(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_SHARED_DATE)));
  1057. share.setExpirationDate(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_EXPIRATION_DATE)));
  1058. share.setToken(c.getString(c.getColumnIndex(ProviderTableMeta.OCSHARES_TOKEN)));
  1059. share.setSharedWithDisplayName(
  1060. c.getString(c.getColumnIndex(ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME)));
  1061. share.setIsFolder(c.getInt(c.getColumnIndex(ProviderTableMeta.OCSHARES_IS_DIRECTORY)) == 1);
  1062. share.setUserId(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_USER_ID)));
  1063. share.setIdRemoteShared(c.getLong(c.getColumnIndex(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED)));
  1064. }
  1065. return share;
  1066. }
  1067. private void resetShareFlagsInAllFiles() {
  1068. ContentValues cv = new ContentValues();
  1069. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, false);
  1070. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, false);
  1071. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, "");
  1072. String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?";
  1073. String[] whereArgs = new String[]{mAccount.name};
  1074. if (getContentResolver() != null) {
  1075. getContentResolver().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
  1076. } else {
  1077. try {
  1078. getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
  1079. } catch (RemoteException e) {
  1080. Log_OC.e(TAG, "Exception in resetShareFlagsInAllFiles" + e.getMessage(), e);
  1081. }
  1082. }
  1083. }
  1084. private void resetShareFlagsInFolder(OCFile folder) {
  1085. ContentValues cv = new ContentValues();
  1086. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, false);
  1087. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, false);
  1088. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, "");
  1089. String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PARENT + "=?";
  1090. String [] whereArgs = new String[] { mAccount.name , String.valueOf(folder.getFileId()) };
  1091. if (getContentResolver() != null) {
  1092. getContentResolver().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
  1093. } else {
  1094. try {
  1095. getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
  1096. } catch (RemoteException e) {
  1097. Log_OC.e(TAG, "Exception in resetShareFlagsInFolder " + e.getMessage(), e);
  1098. }
  1099. }
  1100. }
  1101. private void resetShareFlagInAFile(String filePath){
  1102. ContentValues cv = new ContentValues();
  1103. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, false);
  1104. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, false);
  1105. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, "");
  1106. String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PATH+ "=?";
  1107. String [] whereArgs = new String[] { mAccount.name , filePath };
  1108. if (getContentResolver() != null) {
  1109. getContentResolver().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
  1110. } else {
  1111. try {
  1112. getContentProviderClient().update(ProviderTableMeta.CONTENT_URI, cv, where, whereArgs);
  1113. } catch (RemoteException e) {
  1114. Log_OC.e(TAG, "Exception in resetShareFlagsInFolder " + e.getMessage(), e);
  1115. }
  1116. }
  1117. }
  1118. private void cleanShares() {
  1119. String where = ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?";
  1120. String[] whereArgs = new String[]{mAccount.name};
  1121. if (getContentResolver() != null) {
  1122. getContentResolver().delete(ProviderTableMeta.CONTENT_URI_SHARE, where, whereArgs);
  1123. } else {
  1124. try {
  1125. getContentProviderClient().delete(ProviderTableMeta.CONTENT_URI_SHARE, where, whereArgs);
  1126. } catch (RemoteException e) {
  1127. Log_OC.e(TAG, "Exception in cleanShares" + e.getMessage(), e);
  1128. }
  1129. }
  1130. }
  1131. public void saveShares(Collection<OCShare> shares) {
  1132. cleanShares();
  1133. if (shares != null) {
  1134. ArrayList<ContentProviderOperation> operations =
  1135. new ArrayList<ContentProviderOperation>(shares.size());
  1136. // prepare operations to insert or update files to save in the given folder
  1137. for (OCShare share : shares) {
  1138. ContentValues cv = new ContentValues();
  1139. cv.put(ProviderTableMeta.OCSHARES_FILE_SOURCE, share.getFileSource());
  1140. cv.put(ProviderTableMeta.OCSHARES_ITEM_SOURCE, share.getItemSource());
  1141. cv.put(ProviderTableMeta.OCSHARES_SHARE_TYPE, share.getShareType().getValue());
  1142. cv.put(ProviderTableMeta.OCSHARES_SHARE_WITH, share.getShareWith());
  1143. cv.put(ProviderTableMeta.OCSHARES_PATH, share.getPath());
  1144. cv.put(ProviderTableMeta.OCSHARES_PERMISSIONS, share.getPermissions());
  1145. cv.put(ProviderTableMeta.OCSHARES_SHARED_DATE, share.getSharedDate());
  1146. cv.put(ProviderTableMeta.OCSHARES_EXPIRATION_DATE, share.getExpirationDate());
  1147. cv.put(ProviderTableMeta.OCSHARES_TOKEN, share.getToken());
  1148. cv.put(
  1149. ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
  1150. share.getSharedWithDisplayName()
  1151. );
  1152. cv.put(ProviderTableMeta.OCSHARES_IS_DIRECTORY, share.isFolder() ? 1 : 0);
  1153. cv.put(ProviderTableMeta.OCSHARES_USER_ID, share.getUserId());
  1154. cv.put(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, share.getRemoteId());
  1155. cv.put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, mAccount.name);
  1156. if (shareExistsForRemoteId(share.getRemoteId())) {
  1157. // updating an existing file
  1158. operations.add(
  1159. ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI_SHARE).
  1160. withValues(cv).
  1161. withSelection(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + "=?",
  1162. new String[]{String.valueOf(share.getRemoteId())})
  1163. .build());
  1164. } else {
  1165. // adding a new file
  1166. operations.add(
  1167. ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI_SHARE).
  1168. withValues(cv).
  1169. build()
  1170. );
  1171. }
  1172. }
  1173. // apply operations in batch
  1174. if (operations.size() > 0) {
  1175. @SuppressWarnings("unused")
  1176. ContentProviderResult[] results = null;
  1177. Log_OC.d(TAG, String.format(Locale.ENGLISH, SENDING_TO_FILECONTENTPROVIDER_MSG, operations.size()));
  1178. try {
  1179. if (getContentResolver() != null) {
  1180. results = getContentResolver().applyBatch(MainApp.getAuthority(),
  1181. operations);
  1182. } else {
  1183. results = getContentProviderClient().applyBatch(operations);
  1184. }
  1185. } catch (OperationApplicationException | RemoteException e) {
  1186. Log_OC.e(TAG, EXCEPTION_MSG + e.getMessage(), e);
  1187. }
  1188. }
  1189. }
  1190. }
  1191. public void updateSharedFiles(Collection<OCFile> sharedFiles) {
  1192. resetShareFlagsInAllFiles();
  1193. if (sharedFiles != null) {
  1194. ArrayList<ContentProviderOperation> operations = new ArrayList<>(sharedFiles.size());
  1195. // prepare operations to insert or update files to save in the given folder
  1196. for (OCFile file : sharedFiles) {
  1197. ContentValues cv = new ContentValues();
  1198. cv.put(ProviderTableMeta.FILE_MODIFIED, file.getModificationTimestamp());
  1199. cv.put(
  1200. ProviderTableMeta.FILE_MODIFIED_AT_LAST_SYNC_FOR_DATA,
  1201. file.getModificationTimestampAtLastSyncForData()
  1202. );
  1203. cv.put(ProviderTableMeta.FILE_CREATION, file.getCreationTimestamp());
  1204. cv.put(ProviderTableMeta.FILE_CONTENT_LENGTH, file.getFileLength());
  1205. cv.put(ProviderTableMeta.FILE_CONTENT_TYPE, file.getMimetype());
  1206. cv.put(ProviderTableMeta.FILE_NAME, file.getFileName());
  1207. cv.put(ProviderTableMeta.FILE_PARENT, file.getParentId());
  1208. cv.put(ProviderTableMeta.FILE_PATH, file.getRemotePath());
  1209. if (!file.isFolder()) {
  1210. cv.put(ProviderTableMeta.FILE_STORAGE_PATH, file.getStoragePath());
  1211. }
  1212. cv.put(ProviderTableMeta.FILE_ACCOUNT_OWNER, mAccount.name);
  1213. cv.put(ProviderTableMeta.FILE_LAST_SYNC_DATE, file.getLastSyncDateForProperties());
  1214. cv.put(
  1215. ProviderTableMeta.FILE_LAST_SYNC_DATE_FOR_DATA,
  1216. file.getLastSyncDateForData()
  1217. );
  1218. cv.put(ProviderTableMeta.FILE_KEEP_IN_SYNC, file.isAvailableOffline() ? 1 : 0);
  1219. cv.put(ProviderTableMeta.FILE_ETAG, file.getEtag());
  1220. cv.put(ProviderTableMeta.FILE_SHARED_VIA_LINK, file.isSharedViaLink() ? 1 : 0);
  1221. cv.put(ProviderTableMeta.FILE_SHARED_WITH_SHAREE, file.isSharedWithSharee() ? 1 : 0);
  1222. cv.put(ProviderTableMeta.FILE_PUBLIC_LINK, file.getPublicLink());
  1223. cv.put(ProviderTableMeta.FILE_PERMISSIONS, file.getPermissions());
  1224. cv.put(ProviderTableMeta.FILE_REMOTE_ID, file.getRemoteId());
  1225. cv.put(ProviderTableMeta.FILE_FAVORITE, file.getIsFavorite());
  1226. cv.put(
  1227. ProviderTableMeta.FILE_UPDATE_THUMBNAIL,
  1228. file.needsUpdateThumbnail() ? 1 : 0
  1229. );
  1230. cv.put(
  1231. ProviderTableMeta.FILE_IS_DOWNLOADING,
  1232. file.isDownloading() ? 1 : 0
  1233. );
  1234. cv.put(ProviderTableMeta.FILE_ETAG_IN_CONFLICT, file.getEtagInConflict());
  1235. boolean existsByPath = fileExists(file.getRemotePath());
  1236. if (existsByPath || fileExists(file.getFileId())) {
  1237. // updating an existing file
  1238. operations.add(
  1239. ContentProviderOperation.newUpdate(ProviderTableMeta.CONTENT_URI).
  1240. withValues(cv).
  1241. withSelection(ProviderTableMeta._ID + "=?",
  1242. new String[]{String.valueOf(file.getFileId())})
  1243. .build());
  1244. } else {
  1245. // adding a new file
  1246. operations.add(
  1247. ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI).
  1248. withValues(cv).
  1249. build()
  1250. );
  1251. }
  1252. }
  1253. // apply operations in batch
  1254. if (operations.size() > 0) {
  1255. @SuppressWarnings("unused")
  1256. ContentProviderResult[] results = null;
  1257. Log_OC.d(TAG, String.format(Locale.ENGLISH, SENDING_TO_FILECONTENTPROVIDER_MSG, operations.size()));
  1258. try {
  1259. if (getContentResolver() != null) {
  1260. results = getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  1261. } else {
  1262. results = getContentProviderClient().applyBatch(operations);
  1263. }
  1264. } catch (OperationApplicationException | RemoteException e) {
  1265. Log_OC.e(TAG, EXCEPTION_MSG + e.getMessage(), e);
  1266. }
  1267. }
  1268. }
  1269. }
  1270. public void removeShare(OCShare share) {
  1271. Uri share_uri = ProviderTableMeta.CONTENT_URI_SHARE;
  1272. String where = ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + AND +
  1273. ProviderTableMeta._ID + "=?";
  1274. String [] whereArgs = new String[]{mAccount.name, Long.toString(share.getId())};
  1275. if (getContentProviderClient() != null) {
  1276. try {
  1277. getContentProviderClient().delete(share_uri, where, whereArgs);
  1278. } catch (RemoteException e) {
  1279. Log_OC.d(TAG, e.getMessage(), e);
  1280. }
  1281. } else {
  1282. getContentResolver().delete(share_uri, where, whereArgs);
  1283. }
  1284. }
  1285. public void saveSharesDB(ArrayList<OCShare> shares) {
  1286. ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
  1287. // Reset flags & Remove shares for this files
  1288. String filePath = "";
  1289. for (OCShare share: shares) {
  1290. if (filePath != share.getPath()){
  1291. filePath = share.getPath();
  1292. resetShareFlagInAFile(filePath);
  1293. operations = prepareRemoveSharesInFile(filePath, operations);
  1294. }
  1295. }
  1296. // Add operations to insert shares
  1297. operations = prepareInsertShares(shares, operations);
  1298. // apply operations in batch
  1299. if (operations.size() > 0) {
  1300. Log_OC.d(TAG, String.format(Locale.ENGLISH, SENDING_TO_FILECONTENTPROVIDER_MSG, operations.size()));
  1301. try {
  1302. if (getContentResolver() != null) {
  1303. getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  1304. } else {
  1305. getContentProviderClient().applyBatch(operations);
  1306. }
  1307. } catch (OperationApplicationException | RemoteException e) {
  1308. Log_OC.e(TAG, EXCEPTION_MSG + e.getMessage(), e);
  1309. }
  1310. }
  1311. // // TODO: review if it is needed
  1312. // // Update shared files
  1313. // ArrayList<OCFile> sharedFiles = new ArrayList<OCFile>();
  1314. //
  1315. // for (OCShare share : shares) {
  1316. // // Get the path
  1317. // String path = share.getPath();
  1318. // if (share.isFolder()) {
  1319. // path = path + FileUtils.PATH_SEPARATOR;
  1320. // }
  1321. //
  1322. // // Update OCFile with data from share: ShareByLink, publicLink and
  1323. // OCFile file = getFileByPath(path);
  1324. // if (file != null) {
  1325. // if (share.getShareType().equals(ShareType.PUBLIC_LINK)) {
  1326. // file.setShareViaLink(true);
  1327. // sharedFiles.add(file);
  1328. // }
  1329. // }
  1330. // }
  1331. //
  1332. // // TODO: Review
  1333. // updateSharedFiles(sharedFiles);
  1334. }
  1335. public void removeSharesForFile(String remotePath) {
  1336. resetShareFlagInAFile(remotePath);
  1337. ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
  1338. operations = prepareRemoveSharesInFile(remotePath, operations);
  1339. // apply operations in batch
  1340. if (operations.size() > 0) {
  1341. Log_OC.d(TAG, String.format(Locale.ENGLISH, SENDING_TO_FILECONTENTPROVIDER_MSG, operations.size()));
  1342. try {
  1343. if (getContentResolver() != null) {
  1344. getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  1345. } else {
  1346. getContentProviderClient().applyBatch(operations);
  1347. }
  1348. } catch (OperationApplicationException | RemoteException e) {
  1349. Log_OC.e(TAG, EXCEPTION_MSG + e.getMessage(), e);
  1350. }
  1351. }
  1352. }
  1353. public void saveSharesInFolder(ArrayList<OCShare> shares, OCFile folder) {
  1354. resetShareFlagsInFolder(folder);
  1355. ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
  1356. operations = prepareRemoveSharesInFolder(folder, operations);
  1357. if (shares != null) {
  1358. // prepare operations to insert or update files to save in the given folder
  1359. operations = prepareInsertShares(shares, operations);
  1360. }
  1361. // apply operations in batch
  1362. if (operations.size() > 0) {
  1363. Log_OC.d(TAG, String.format(Locale.ENGLISH, SENDING_TO_FILECONTENTPROVIDER_MSG, operations.size()));
  1364. try {
  1365. if (getContentResolver() != null) {
  1366. getContentResolver().applyBatch(MainApp.getAuthority(), operations);
  1367. } else {
  1368. getContentProviderClient().applyBatch(operations);
  1369. }
  1370. } catch (OperationApplicationException | RemoteException e) {
  1371. Log_OC.e(TAG, EXCEPTION_MSG + e.getMessage(), e);
  1372. }
  1373. }
  1374. }
  1375. /**
  1376. * Prepare operations to insert or update files to save in the given folder
  1377. * @param shares List of shares to insert
  1378. * @param operations List of operations
  1379. * @return
  1380. */
  1381. private ArrayList<ContentProviderOperation> prepareInsertShares(
  1382. ArrayList<OCShare> shares, ArrayList<ContentProviderOperation> operations) {
  1383. if (shares != null) {
  1384. // prepare operations to insert or update files to save in the given folder
  1385. for (OCShare share : shares) {
  1386. ContentValues cv = new ContentValues();
  1387. cv.put(ProviderTableMeta.OCSHARES_FILE_SOURCE, share.getFileSource());
  1388. cv.put(ProviderTableMeta.OCSHARES_ITEM_SOURCE, share.getItemSource());
  1389. cv.put(ProviderTableMeta.OCSHARES_SHARE_TYPE, share.getShareType().getValue());
  1390. cv.put(ProviderTableMeta.OCSHARES_SHARE_WITH, share.getShareWith());
  1391. cv.put(ProviderTableMeta.OCSHARES_PATH, share.getPath());
  1392. cv.put(ProviderTableMeta.OCSHARES_PERMISSIONS, share.getPermissions());
  1393. cv.put(ProviderTableMeta.OCSHARES_SHARED_DATE, share.getSharedDate());
  1394. cv.put(ProviderTableMeta.OCSHARES_EXPIRATION_DATE, share.getExpirationDate());
  1395. cv.put(ProviderTableMeta.OCSHARES_TOKEN, share.getToken());
  1396. cv.put(
  1397. ProviderTableMeta.OCSHARES_SHARE_WITH_DISPLAY_NAME,
  1398. share.getSharedWithDisplayName()
  1399. );
  1400. cv.put(ProviderTableMeta.OCSHARES_IS_DIRECTORY, share.isFolder() ? 1 : 0);
  1401. cv.put(ProviderTableMeta.OCSHARES_USER_ID, share.getUserId());
  1402. cv.put(ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED, share.getRemoteId());
  1403. cv.put(ProviderTableMeta.OCSHARES_ACCOUNT_OWNER, mAccount.name);
  1404. // adding a new share resource
  1405. operations.add(
  1406. ContentProviderOperation.newInsert(ProviderTableMeta.CONTENT_URI_SHARE).
  1407. withValues(cv).
  1408. build()
  1409. );
  1410. }
  1411. }
  1412. return operations;
  1413. }
  1414. private ArrayList<ContentProviderOperation> prepareRemoveSharesInFolder(
  1415. OCFile folder, ArrayList<ContentProviderOperation> preparedOperations) {
  1416. if (folder != null) {
  1417. String where = ProviderTableMeta.OCSHARES_PATH + AND
  1418. + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?";
  1419. String [] whereArgs = new String[]{ "", mAccount.name };
  1420. Vector<OCFile> files = getFolderContent(folder, false);
  1421. for (OCFile file : files) {
  1422. whereArgs[0] = file.getRemotePath();
  1423. preparedOperations.add(
  1424. ContentProviderOperation.newDelete(ProviderTableMeta.CONTENT_URI_SHARE).
  1425. withSelection(where, whereArgs).
  1426. build()
  1427. );
  1428. }
  1429. }
  1430. return preparedOperations;
  1431. }
  1432. private ArrayList<ContentProviderOperation> prepareRemoveSharesInFile(
  1433. String filePath, ArrayList<ContentProviderOperation> preparedOperations) {
  1434. String where = ProviderTableMeta.OCSHARES_PATH + AND
  1435. + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + "=?";
  1436. String[] whereArgs = new String[]{filePath, mAccount.name};
  1437. preparedOperations.add(
  1438. ContentProviderOperation.newDelete(ProviderTableMeta.CONTENT_URI_SHARE).
  1439. withSelection(where, whereArgs).
  1440. build()
  1441. );
  1442. return preparedOperations;
  1443. }
  1444. public ArrayList<OCShare> getSharesWithForAFile(String filePath, String accountName){
  1445. // Condition
  1446. String where = ProviderTableMeta.OCSHARES_PATH + AND
  1447. + ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + AND
  1448. + " (" + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? OR "
  1449. + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? OR "
  1450. + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? OR "
  1451. + ProviderTableMeta.OCSHARES_SHARE_TYPE + "=? ) ";
  1452. String [] whereArgs = new String[]{ filePath, accountName ,
  1453. Integer.toString(ShareType.USER.getValue()),
  1454. Integer.toString(ShareType.GROUP.getValue()),
  1455. Integer.toString(ShareType.EMAIL.getValue()),
  1456. Integer.toString(ShareType.FEDERATED.getValue())};
  1457. Cursor cursor = null;
  1458. if (getContentResolver() != null) {
  1459. cursor = getContentResolver().query(
  1460. ProviderTableMeta.CONTENT_URI_SHARE,
  1461. null, where, whereArgs, null);
  1462. } else {
  1463. try {
  1464. cursor = getContentProviderClient().query(
  1465. ProviderTableMeta.CONTENT_URI_SHARE,
  1466. null, where, whereArgs, null);
  1467. } catch (RemoteException e) {
  1468. Log_OC.e(TAG, "Could not get list of shares with: " + e.getMessage(), e);
  1469. cursor = null;
  1470. }
  1471. }
  1472. ArrayList<OCShare> shares = new ArrayList<OCShare>();
  1473. OCShare share = null;
  1474. if (cursor != null) {
  1475. if (cursor.moveToFirst()) {
  1476. do {
  1477. share = createShareInstance(cursor);
  1478. shares.add(share);
  1479. } while (cursor.moveToNext());
  1480. }
  1481. cursor.close();
  1482. }
  1483. return shares;
  1484. }
  1485. public static void triggerMediaScan(String path) {
  1486. if (path != null) {
  1487. Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
  1488. intent.setData(Uri.fromFile(new File(path)));
  1489. MainApp.getAppContext().sendBroadcast(intent);
  1490. }
  1491. }
  1492. public void deleteFileInMediaScan(String path) {
  1493. String mimetypeString = FileStorageUtils.getMimeTypeFromName(path);
  1494. ContentResolver contentResolver = getContentResolver();
  1495. if (contentResolver != null) {
  1496. if (MimeTypeUtil.isImage(mimetypeString)) {
  1497. // Images
  1498. contentResolver.delete(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
  1499. MediaStore.Images.Media.DATA + "=?", new String[]{path});
  1500. } else if (MimeTypeUtil.isAudio(mimetypeString)) {
  1501. // Audio
  1502. contentResolver.delete(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
  1503. MediaStore.Audio.Media.DATA + "=?", new String[]{path});
  1504. } else if (MimeTypeUtil.isVideo(mimetypeString)) {
  1505. // Video
  1506. contentResolver.delete(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
  1507. MediaStore.Video.Media.DATA + "=?", new String[]{path});
  1508. }
  1509. } else {
  1510. ContentProviderClient contentProviderClient = getContentProviderClient();
  1511. try {
  1512. if (MimeTypeUtil.isImage(mimetypeString)) {
  1513. // Images
  1514. contentProviderClient.delete(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
  1515. MediaStore.Images.Media.DATA + "=?", new String[]{path});
  1516. } else if (MimeTypeUtil.isAudio(mimetypeString)) {
  1517. // Audio
  1518. contentProviderClient.delete(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
  1519. MediaStore.Audio.Media.DATA + "=?", new String[]{path});
  1520. } else if (MimeTypeUtil.isVideo(mimetypeString)) {
  1521. // Video
  1522. contentProviderClient.delete(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
  1523. MediaStore.Video.Media.DATA + "=?", new String[]{path});
  1524. }
  1525. } catch (RemoteException e) {
  1526. Log_OC.e(TAG, "Exception deleting media file in MediaStore " + e.getMessage(), e);
  1527. }
  1528. }
  1529. }
  1530. public void saveConflict(OCFile file, String etagInConflict) {
  1531. if (!file.isDown()) {
  1532. etagInConflict = null;
  1533. }
  1534. ContentValues cv = new ContentValues();
  1535. cv.put(ProviderTableMeta.FILE_ETAG_IN_CONFLICT, etagInConflict);
  1536. int updated = 0;
  1537. if (getContentResolver() != null) {
  1538. updated = getContentResolver().update(
  1539. ProviderTableMeta.CONTENT_URI_FILE,
  1540. cv,
  1541. ProviderTableMeta._ID + "=?",
  1542. new String[] { String.valueOf(file.getFileId())}
  1543. );
  1544. } else {
  1545. try {
  1546. updated = getContentProviderClient().update(
  1547. ProviderTableMeta.CONTENT_URI_FILE,
  1548. cv,
  1549. ProviderTableMeta._ID + "=?",
  1550. new String[]{String.valueOf(file.getFileId())}
  1551. );
  1552. } catch (RemoteException e) {
  1553. Log_OC.e(TAG, "Failed saving conflict in database " + e.getMessage(), e);
  1554. }
  1555. }
  1556. Log_OC.d(TAG, "Number of files updated with CONFLICT: " + updated);
  1557. if (updated > 0) {
  1558. if (etagInConflict != null) {
  1559. /// set conflict in all ancestor folders
  1560. long parentId = file.getParentId();
  1561. Set<String> ancestorIds = new HashSet<>();
  1562. while (parentId != FileDataStorageManager.ROOT_PARENT_ID) {
  1563. ancestorIds.add(Long.toString(parentId));
  1564. parentId = getFileById(parentId).getParentId();
  1565. }
  1566. if (ancestorIds.size() > 0) {
  1567. final StringBuffer whereBuffer = new StringBuffer();
  1568. whereBuffer.append(ProviderTableMeta._ID).append(" IN (");
  1569. for (int i = 0; i < ancestorIds.size() - 1; i++) {
  1570. whereBuffer.append("?,");
  1571. }
  1572. whereBuffer.append("?)");
  1573. if (getContentResolver() != null) {
  1574. updated = getContentResolver().update(
  1575. ProviderTableMeta.CONTENT_URI_FILE,
  1576. cv,
  1577. whereBuffer.toString(),
  1578. ancestorIds.toArray(new String[]{})
  1579. );
  1580. } else {
  1581. try {
  1582. updated = getContentProviderClient().update(
  1583. ProviderTableMeta.CONTENT_URI_FILE,
  1584. cv,
  1585. whereBuffer.toString(),
  1586. ancestorIds.toArray(new String[]{})
  1587. );
  1588. } catch (RemoteException e) {
  1589. Log_OC.e(TAG, "Failed saving conflict in database " + e.getMessage(), e);
  1590. }
  1591. }
  1592. } // else file is ROOT folder, no parent to set in conflict
  1593. } else {
  1594. /// update conflict in ancestor folders
  1595. // (not directly unset; maybe there are more conflicts below them)
  1596. String parentPath = file.getRemotePath();
  1597. if (parentPath.endsWith(OCFile.PATH_SEPARATOR)) {
  1598. parentPath = parentPath.substring(0, parentPath.length() - 1);
  1599. }
  1600. parentPath = parentPath.substring(0, parentPath.lastIndexOf(OCFile.PATH_SEPARATOR) + 1);
  1601. Log_OC.d(TAG, "checking parents to remove conflict; STARTING with " + parentPath);
  1602. while (parentPath.length() > 0) {
  1603. String whereForDescencentsInConflict =
  1604. ProviderTableMeta.FILE_ETAG_IN_CONFLICT + " IS NOT NULL AND " +
  1605. ProviderTableMeta.FILE_CONTENT_TYPE + " != 'DIR' AND " +
  1606. ProviderTableMeta.FILE_ACCOUNT_OWNER + AND +
  1607. ProviderTableMeta.FILE_PATH + " LIKE ?";
  1608. Cursor descendentsInConflict = null;
  1609. if (getContentResolver() != null) {
  1610. descendentsInConflict = getContentResolver().query(
  1611. ProviderTableMeta.CONTENT_URI_FILE,
  1612. new String[]{ProviderTableMeta._ID},
  1613. whereForDescencentsInConflict,
  1614. new String[]{mAccount.name, parentPath + "%"},
  1615. null
  1616. );
  1617. } else {
  1618. try {
  1619. descendentsInConflict = getContentProviderClient().query(
  1620. ProviderTableMeta.CONTENT_URI_FILE,
  1621. new String[]{ProviderTableMeta._ID},
  1622. whereForDescencentsInConflict,
  1623. new String[]{mAccount.name, parentPath + "%"},
  1624. null
  1625. );
  1626. } catch (RemoteException e) {
  1627. Log_OC.e(TAG, "Failed querying for descendents in conflict " + e.getMessage(), e);
  1628. }
  1629. }
  1630. if (descendentsInConflict == null || descendentsInConflict.getCount() == 0) {
  1631. Log_OC.d(TAG, "NO MORE conflicts in " + parentPath);
  1632. if (getContentResolver() != null) {
  1633. updated = getContentResolver().update(
  1634. ProviderTableMeta.CONTENT_URI_FILE,
  1635. cv,
  1636. ProviderTableMeta.FILE_ACCOUNT_OWNER + AND +
  1637. ProviderTableMeta.FILE_PATH + "=?",
  1638. new String[]{mAccount.name, parentPath}
  1639. );
  1640. } else {
  1641. try {
  1642. updated = getContentProviderClient().update(
  1643. ProviderTableMeta.CONTENT_URI_FILE,
  1644. cv,
  1645. ProviderTableMeta.FILE_ACCOUNT_OWNER + AND +
  1646. ProviderTableMeta.FILE_PATH + "=?"
  1647. , new String[]{mAccount.name, parentPath}
  1648. );
  1649. } catch (RemoteException e) {
  1650. Log_OC.e(TAG, "Failed saving conflict in database " + e.getMessage(), e);
  1651. }
  1652. }
  1653. } else {
  1654. Log_OC.d(TAG, "STILL " + descendentsInConflict.getCount() + " in " + parentPath);
  1655. }
  1656. if (descendentsInConflict != null) {
  1657. descendentsInConflict.close();
  1658. }
  1659. parentPath = parentPath.substring(0, parentPath.length() - 1); // trim last /
  1660. parentPath = parentPath.substring(0, parentPath.lastIndexOf(OCFile.PATH_SEPARATOR) + 1);
  1661. Log_OC.d(TAG, "checking parents to remove conflict; NEXT " + parentPath);
  1662. }
  1663. }
  1664. }
  1665. }
  1666. public OCCapability saveCapabilities(OCCapability capability){
  1667. // Prepare capabilities data
  1668. ContentValues cv = new ContentValues();
  1669. cv.put(ProviderTableMeta.CAPABILITIES_ACCOUNT_NAME, mAccount.name);
  1670. cv.put(ProviderTableMeta.CAPABILITIES_VERSION_MAYOR, capability.getVersionMayor());
  1671. cv.put(ProviderTableMeta.CAPABILITIES_VERSION_MINOR, capability.getVersionMinor());
  1672. cv.put(ProviderTableMeta.CAPABILITIES_VERSION_MICRO, capability.getVersionMicro());
  1673. cv.put(ProviderTableMeta.CAPABILITIES_VERSION_STRING, capability.getVersionString());
  1674. cv.put(ProviderTableMeta.CAPABILITIES_VERSION_EDITION, capability.getVersionEdition());
  1675. cv.put(ProviderTableMeta.CAPABILITIES_CORE_POLLINTERVAL, capability.getCorePollinterval());
  1676. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_API_ENABLED, capability.getFilesSharingApiEnabled().getValue());
  1677. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_ENABLED,
  1678. capability.getFilesSharingPublicEnabled().getValue());
  1679. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_PASSWORD_ENFORCED,
  1680. capability.getFilesSharingPublicPasswordEnforced().getValue());
  1681. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_EXPIRE_DATE_ENABLED,
  1682. capability.getFilesSharingPublicExpireDateEnabled().getValue());
  1683. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_EXPIRE_DATE_DAYS,
  1684. capability.getFilesSharingPublicExpireDateDays());
  1685. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_EXPIRE_DATE_ENFORCED,
  1686. capability.getFilesSharingPublicExpireDateEnforced().getValue());
  1687. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_SEND_MAIL,
  1688. capability.getFilesSharingPublicSendMail().getValue());
  1689. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_UPLOAD,
  1690. capability.getFilesSharingPublicUpload().getValue());
  1691. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_USER_SEND_MAIL,
  1692. capability.getFilesSharingUserSendMail().getValue());
  1693. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_RESHARING, capability.getFilesSharingResharing().getValue());
  1694. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_FEDERATION_OUTGOING,
  1695. capability.getFilesSharingFederationOutgoing().getValue());
  1696. cv.put(ProviderTableMeta.CAPABILITIES_SHARING_FEDERATION_INCOMING,
  1697. capability.getFilesSharingFederationIncoming().getValue());
  1698. cv.put(ProviderTableMeta.CAPABILITIES_FILES_BIGFILECHUNKING, capability.getFilesBigFileChuncking().getValue());
  1699. cv.put(ProviderTableMeta.CAPABILITIES_FILES_UNDELETE, capability.getFilesUndelete().getValue());
  1700. cv.put(ProviderTableMeta.CAPABILITIES_FILES_VERSIONING, capability.getFilesVersioning().getValue());
  1701. cv.put(ProviderTableMeta.CAPABILITIES_FILES_DROP, capability.getFilesFileDrop().getValue());
  1702. cv.put(ProviderTableMeta.CAPABILITIES_EXTERNAL_LINKS, capability.getExternalLinks().getValue());
  1703. if (capabilityExists(mAccount.name)) {
  1704. if (getContentResolver() != null) {
  1705. getContentResolver().update(ProviderTableMeta.CONTENT_URI_CAPABILITIES, cv,
  1706. ProviderTableMeta.CAPABILITIES_ACCOUNT_NAME + "=?",
  1707. new String[]{mAccount.name});
  1708. } else {
  1709. try {
  1710. getContentProviderClient().update(ProviderTableMeta.CONTENT_URI_CAPABILITIES,
  1711. cv, ProviderTableMeta.CAPABILITIES_ACCOUNT_NAME + "=?",
  1712. new String[]{mAccount.name});
  1713. } catch (RemoteException e) {
  1714. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  1715. }
  1716. }
  1717. } else {
  1718. Uri result_uri = null;
  1719. if (getContentResolver() != null) {
  1720. result_uri = getContentResolver().insert(
  1721. ProviderTableMeta.CONTENT_URI_CAPABILITIES, cv);
  1722. } else {
  1723. try {
  1724. result_uri = getContentProviderClient().insert(
  1725. ProviderTableMeta.CONTENT_URI_CAPABILITIES, cv);
  1726. } catch (RemoteException e) {
  1727. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  1728. }
  1729. }
  1730. if (result_uri != null) {
  1731. long new_id = Long.parseLong(result_uri.getPathSegments()
  1732. .get(1));
  1733. capability.setId(new_id);
  1734. capability.setAccountName(mAccount.name);
  1735. }
  1736. }
  1737. return capability;
  1738. }
  1739. private boolean capabilityExists(String accountName) {
  1740. Cursor c = getCapabilityCursorForAccount(accountName);
  1741. boolean exists = false;
  1742. if (c != null) {
  1743. exists = c.moveToFirst();
  1744. c.close();
  1745. }
  1746. return exists;
  1747. }
  1748. private Cursor getCapabilityCursorForAccount(String accountName){
  1749. Cursor c = null;
  1750. if (getContentResolver() != null) {
  1751. c = getContentResolver()
  1752. .query(ProviderTableMeta.CONTENT_URI_CAPABILITIES,
  1753. null,
  1754. ProviderTableMeta.CAPABILITIES_ACCOUNT_NAME + "=? ",
  1755. new String[]{accountName}, null);
  1756. } else {
  1757. try {
  1758. c = getContentProviderClient().query(
  1759. ProviderTableMeta.CONTENT_URI_CAPABILITIES,
  1760. null,
  1761. ProviderTableMeta.CAPABILITIES_ACCOUNT_NAME + "=? ",
  1762. new String[]{accountName}, null);
  1763. } catch (RemoteException e) {
  1764. Log_OC.e(TAG, "Couldn't determine capability existence, assuming non existance: " + e.getMessage(), e);
  1765. }
  1766. }
  1767. return c;
  1768. }
  1769. public OCCapability getCapability(String accountName){
  1770. OCCapability capability = null;
  1771. Cursor c = getCapabilityCursorForAccount(accountName);
  1772. if (c.moveToFirst()) {
  1773. capability = createCapabilityInstance(c);
  1774. } else {
  1775. capability = new OCCapability(); // return default with all UNKNOWN
  1776. }
  1777. c.close();
  1778. return capability;
  1779. }
  1780. private OCCapability createCapabilityInstance(Cursor c) {
  1781. OCCapability capability = null;
  1782. if (c != null) {
  1783. capability = new OCCapability();
  1784. capability.setId(c.getLong(c.getColumnIndex(ProviderTableMeta._ID)));
  1785. capability.setAccountName(c.getString(c
  1786. .getColumnIndex(ProviderTableMeta.CAPABILITIES_ACCOUNT_NAME)));
  1787. capability.setVersionMayor(c.getInt(c
  1788. .getColumnIndex(ProviderTableMeta.CAPABILITIES_VERSION_MAYOR)));
  1789. capability.setVersionMinor(c.getInt(c
  1790. .getColumnIndex(ProviderTableMeta.CAPABILITIES_VERSION_MINOR)));
  1791. capability.setVersionMicro(c.getInt(c
  1792. .getColumnIndex(ProviderTableMeta.CAPABILITIES_VERSION_MICRO)));
  1793. capability.setVersionString(c.getString(c
  1794. .getColumnIndex(ProviderTableMeta.CAPABILITIES_VERSION_STRING)));
  1795. capability.setVersionEdition(c.getString(c
  1796. .getColumnIndex(ProviderTableMeta.CAPABILITIES_VERSION_EDITION)));
  1797. capability.setCorePollinterval(c.getInt(c
  1798. .getColumnIndex(ProviderTableMeta.CAPABILITIES_CORE_POLLINTERVAL)));
  1799. capability.setFilesSharingApiEnabled(CapabilityBooleanType.fromValue(c.getInt(c
  1800. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_API_ENABLED))));
  1801. capability.setFilesSharingPublicEnabled(CapabilityBooleanType.fromValue(c.getInt(c
  1802. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_ENABLED))));
  1803. capability.setFilesSharingPublicPasswordEnforced(CapabilityBooleanType.fromValue(c.getInt(c
  1804. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_PASSWORD_ENFORCED))));
  1805. capability.setFilesSharingPublicExpireDateEnabled(CapabilityBooleanType.fromValue(c.getInt(c
  1806. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_EXPIRE_DATE_ENABLED))));
  1807. capability.setFilesSharingPublicExpireDateDays(c.getInt(c
  1808. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_EXPIRE_DATE_DAYS)));
  1809. capability.setFilesSharingPublicExpireDateEnforced(CapabilityBooleanType.fromValue(c.getInt(c
  1810. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_EXPIRE_DATE_ENFORCED))));
  1811. capability.setFilesSharingPublicSendMail(CapabilityBooleanType.fromValue(c.getInt(c
  1812. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_SEND_MAIL))));
  1813. capability.setFilesSharingPublicUpload(CapabilityBooleanType.fromValue(c.getInt(c
  1814. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_PUBLIC_UPLOAD))));
  1815. capability.setFilesSharingUserSendMail(CapabilityBooleanType.fromValue(c.getInt(c
  1816. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_USER_SEND_MAIL))));
  1817. capability.setFilesSharingResharing(CapabilityBooleanType.fromValue(c.getInt(c
  1818. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_RESHARING))));
  1819. capability.setFilesSharingFederationOutgoing(CapabilityBooleanType.fromValue(c.getInt(c
  1820. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_FEDERATION_OUTGOING))));
  1821. capability.setFilesSharingFederationIncoming(CapabilityBooleanType.fromValue(c.getInt(c
  1822. .getColumnIndex(ProviderTableMeta.CAPABILITIES_SHARING_FEDERATION_INCOMING))));
  1823. capability.setFilesBigFileChuncking(CapabilityBooleanType.fromValue(c.getInt(c
  1824. .getColumnIndex(ProviderTableMeta.CAPABILITIES_FILES_BIGFILECHUNKING))));
  1825. capability.setFilesUndelete(CapabilityBooleanType.fromValue(c.getInt(c
  1826. .getColumnIndex(ProviderTableMeta.CAPABILITIES_FILES_UNDELETE))));
  1827. capability.setFilesVersioning(CapabilityBooleanType.fromValue(c.getInt(c
  1828. .getColumnIndex(ProviderTableMeta.CAPABILITIES_FILES_VERSIONING))));
  1829. capability.setFilesFileDrop(CapabilityBooleanType.fromValue(c.getInt(c
  1830. .getColumnIndex(ProviderTableMeta.CAPABILITIES_FILES_DROP))));
  1831. capability.setExternalLinks(CapabilityBooleanType.fromValue(c.getInt(c
  1832. .getColumnIndex(ProviderTableMeta.CAPABILITIES_EXTERNAL_LINKS))));
  1833. }
  1834. return capability;
  1835. }
  1836. public void deleteVirtuals(VirtualFolderType type) {
  1837. if (getContentResolver() != null) {
  1838. getContentResolver().delete(ProviderTableMeta.CONTENT_URI_VIRTUAL,
  1839. ProviderTableMeta.VIRTUAL_TYPE + "=?", new String[]{String.valueOf(type)});
  1840. } else {
  1841. try {
  1842. getContentProviderClient().delete(ProviderTableMeta.CONTENT_URI_VIRTUAL,
  1843. ProviderTableMeta.VIRTUAL_TYPE + "=?", new String[]{String.valueOf(type)});
  1844. } catch (RemoteException e) {
  1845. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  1846. }
  1847. }
  1848. }
  1849. public void saveVirtual(VirtualFolderType type, OCFile file) {
  1850. ContentValues cv = new ContentValues();
  1851. cv.put(ProviderTableMeta.VIRTUAL_TYPE, type.toString());
  1852. cv.put(ProviderTableMeta.VIRTUAL_OCFILE_ID, file.getFileId());
  1853. if (getContentResolver() != null) {
  1854. getContentResolver().insert(ProviderTableMeta.CONTENT_URI_VIRTUAL, cv);
  1855. } else {
  1856. try {
  1857. getContentProviderClient().insert(ProviderTableMeta.CONTENT_URI_VIRTUAL, cv);
  1858. } catch (RemoteException e) {
  1859. Log_OC.e(TAG, FAILED_TO_INSERT_MSG + e.getMessage(), e);
  1860. }
  1861. }
  1862. }
  1863. public Vector<OCFile> getVirtualFolderContent(VirtualFolderType type, boolean onlyImages) {
  1864. Vector<OCFile> ocFiles = new Vector<>();
  1865. Uri req_uri = ProviderTableMeta.CONTENT_URI_VIRTUAL;
  1866. Cursor c;
  1867. if (getContentProviderClient() != null) {
  1868. try {
  1869. c = getContentProviderClient().query(
  1870. req_uri,
  1871. null,
  1872. ProviderTableMeta.VIRTUAL_TYPE + "=?",
  1873. new String[]{String.valueOf(type)},
  1874. null
  1875. );
  1876. } catch (RemoteException e) {
  1877. Log_OC.e(TAG, e.getMessage(), e);
  1878. return ocFiles;
  1879. }
  1880. } else {
  1881. c = getContentResolver().query(
  1882. req_uri,
  1883. null,
  1884. ProviderTableMeta.VIRTUAL_TYPE + "=?",
  1885. new String[]{String.valueOf(type)},
  1886. null
  1887. );
  1888. }
  1889. if (c != null && c.moveToFirst()) {
  1890. do {
  1891. OCFile child = createFileInstanceFromVirtual(c);
  1892. ocFiles.add(child);
  1893. } while (c.moveToNext());
  1894. c.close();
  1895. }
  1896. if (onlyImages) {
  1897. OCFile current = null;
  1898. Vector<OCFile> temp = new Vector<>();
  1899. for (int i=0; i < ocFiles.size(); i++) {
  1900. current = ocFiles.get(i);
  1901. if (MimeTypeUtil.isImage(current)) {
  1902. temp.add(current);
  1903. }
  1904. }
  1905. ocFiles = temp;
  1906. }
  1907. if (ocFiles.size() > 0) {
  1908. Collections.sort(ocFiles);
  1909. }
  1910. return ocFiles;
  1911. }
  1912. }