InstantUploadBroadcastReceiver.java 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /**
  2. * ownCloud Android client application
  3. * <p/>
  4. * @author Bartek Przybylski
  5. * @author David A. Velasco
  6. * Copyright (C) 2012 Bartek Przybylski
  7. * Copyright (C) 2016 ownCloud Inc.
  8. * <p/>
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2,
  11. * as published by the Free Software Foundation.
  12. * <p/>
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. * <p/>
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package com.owncloud.android.files;
  22. import android.Manifest;
  23. import android.accounts.Account;
  24. import android.content.BroadcastReceiver;
  25. import android.content.Context;
  26. import android.content.Intent;
  27. import android.content.SharedPreferences;
  28. import android.database.Cursor;
  29. import android.preference.PreferenceManager;
  30. import android.provider.MediaStore.Images;
  31. import android.provider.MediaStore.Video;
  32. import android.support.v4.content.ContextCompat;
  33. import com.owncloud.android.authentication.AccountUtils;
  34. import com.owncloud.android.db.PreferenceReader;
  35. import com.owncloud.android.files.services.FileUploader;
  36. import com.owncloud.android.lib.common.utils.Log_OC;
  37. import com.owncloud.android.operations.UploadFileOperation;
  38. import com.owncloud.android.utils.FileStorageUtils;
  39. public class InstantUploadBroadcastReceiver extends BroadcastReceiver {
  40. private static String TAG = InstantUploadBroadcastReceiver.class.getName();
  41. // Image action
  42. // Unofficial action, works for most devices but not HTC. See: https://github.com/owncloud/android/issues/6
  43. private static String NEW_PHOTO_ACTION_UNOFFICIAL = "com.android.camera.NEW_PICTURE";
  44. // Officially supported action since SDK 14:
  45. // http://developer.android.com/reference/android/hardware/Camera.html#ACTION_NEW_PICTURE
  46. private static String NEW_PHOTO_ACTION = "android.hardware.action.NEW_PICTURE";
  47. // Video action
  48. // Officially supported action since SDK 14:
  49. // http://developer.android.com/reference/android/hardware/Camera.html#ACTION_NEW_VIDEO
  50. private static String NEW_VIDEO_ACTION = "android.hardware.action.NEW_VIDEO";
  51. @Override
  52. public void onReceive(Context context, Intent intent) {
  53. Log_OC.d(TAG, "Received: " + intent.getAction());
  54. if (intent.getAction().equals(NEW_PHOTO_ACTION_UNOFFICIAL)) {
  55. handleNewPictureAction(context, intent);
  56. Log_OC.d(TAG, "UNOFFICIAL processed: com.android.camera.NEW_PICTURE");
  57. } else if (intent.getAction().equals(NEW_PHOTO_ACTION)) {
  58. handleNewPictureAction(context, intent);
  59. Log_OC.d(TAG, "OFFICIAL processed: android.hardware.action.NEW_PICTURE");
  60. } else if (intent.getAction().equals(NEW_VIDEO_ACTION)) {
  61. handleNewVideoAction(context, intent);
  62. Log_OC.d(TAG, "OFFICIAL processed: android.hardware.action.NEW_VIDEO");
  63. } else {
  64. Log_OC.e(TAG, "Incorrect intent received: " + intent.getAction());
  65. }
  66. }
  67. /**
  68. * Because we support NEW_PHOTO_ACTION and NEW_PHOTO_ACTION_UNOFFICIAL it can happen that
  69. * handleNewPictureAction is called twice for the same photo. Use this simple static variable to
  70. * remember last uploaded photo to filter duplicates. Must not be null!
  71. */
  72. static String lastUploadedPhotoPath = "";
  73. private void handleNewPictureAction(Context context, Intent intent) {
  74. Cursor c = null;
  75. String file_path = null;
  76. String file_name = null;
  77. String mime_type = null;
  78. Log_OC.i(TAG, "New photo received");
  79. if (!PreferenceReader.instantPictureUploadEnabled(context)) {
  80. Log_OC.d(TAG, "Instant picture upload disabled, ignoring new picture");
  81. return;
  82. }
  83. Account account = AccountUtils.getCurrentOwnCloudAccount(context);
  84. if (account == null) {
  85. Log_OC.w(TAG, "No account found for instant upload, aborting");
  86. return;
  87. }
  88. String[] CONTENT_PROJECTION = {
  89. Images.Media.DATA, Images.Media.DISPLAY_NAME, Images.Media.MIME_TYPE, Images.Media.SIZE };
  90. int permissionCheck = ContextCompat.checkSelfPermission(context,
  91. Manifest.permission.READ_EXTERNAL_STORAGE);
  92. if (android.content.pm.PackageManager.PERMISSION_GRANTED != permissionCheck) {
  93. Log_OC.w(TAG, "Read external storage permission isn't granted, aborting");
  94. return;
  95. }
  96. c = context.getContentResolver().query(intent.getData(), CONTENT_PROJECTION, null, null, null);
  97. if (!c.moveToFirst()) {
  98. Log_OC.e(TAG, "Couldn't resolve given uri: " + intent.getDataString());
  99. return;
  100. }
  101. file_path = c.getString(c.getColumnIndex(Images.Media.DATA));
  102. file_name = c.getString(c.getColumnIndex(Images.Media.DISPLAY_NAME));
  103. mime_type = c.getString(c.getColumnIndex(Images.Media.MIME_TYPE));
  104. c.close();
  105. if (file_path.equals(lastUploadedPhotoPath)) {
  106. Log_OC.d(TAG, "Duplicate detected: " + file_path + ". Ignore.");
  107. return;
  108. }
  109. lastUploadedPhotoPath = file_path;
  110. Log_OC.d(TAG, "Path: " + file_path + "");
  111. int behaviour = getUploadBehaviour(context);
  112. FileUploader.uploadNewFile(
  113. context,
  114. account,
  115. file_path,
  116. FileStorageUtils.getInstantUploadFilePath(context, file_name),
  117. behaviour,
  118. mime_type,
  119. true, // create parent folder if not existent
  120. UploadFileOperation.CREATED_AS_INSTANT_PICTURE
  121. );
  122. }
  123. private Integer getUploadBehaviour(Context context) {
  124. SharedPreferences appPreferences = PreferenceManager.getDefaultSharedPreferences(context);
  125. String behaviour = appPreferences.getString("prefs_instant_behaviour", "NOTHING");
  126. if (behaviour.equalsIgnoreCase("NOTHING")) {
  127. Log_OC.d(TAG, "upload file and do nothing");
  128. return FileUploader.LOCAL_BEHAVIOUR_FORGET;
  129. } else if (behaviour.equalsIgnoreCase("MOVE")) {
  130. Log_OC.d(TAG, "upload file and move file to oc folder");
  131. return FileUploader.LOCAL_BEHAVIOUR_MOVE;
  132. }
  133. return null;
  134. }
  135. private void handleNewVideoAction(Context context, Intent intent) {
  136. Cursor c = null;
  137. String file_path = null;
  138. String file_name = null;
  139. String mime_type = null;
  140. Log_OC.i(TAG, "New video received");
  141. if (!PreferenceReader.instantVideoUploadEnabled(context)) {
  142. Log_OC.d(TAG, "Instant video upload disabled, ignoring new video");
  143. return;
  144. }
  145. Account account = AccountUtils.getCurrentOwnCloudAccount(context);
  146. if (account == null) {
  147. Log_OC.w(TAG, "No account found for instant upload, aborting");
  148. return;
  149. }
  150. String[] CONTENT_PROJECTION = {Video.Media.DATA, Video.Media.DISPLAY_NAME, Video.Media.MIME_TYPE,
  151. Video.Media.SIZE};
  152. c = context.getContentResolver().query(intent.getData(), CONTENT_PROJECTION, null, null, null);
  153. if (!c.moveToFirst()) {
  154. Log_OC.e(TAG, "Couldn't resolve given uri: " + intent.getDataString());
  155. return;
  156. }
  157. file_path = c.getString(c.getColumnIndex(Video.Media.DATA));
  158. file_name = c.getString(c.getColumnIndex(Video.Media.DISPLAY_NAME));
  159. mime_type = c.getString(c.getColumnIndex(Video.Media.MIME_TYPE));
  160. c.close();
  161. Log_OC.d(TAG, file_path + "");
  162. int behaviour = getUploadBehaviour(context);
  163. FileUploader.uploadNewFile(
  164. context,
  165. account,
  166. file_path,
  167. FileStorageUtils.getInstantVideoUploadFilePath(context, file_name),
  168. behaviour,
  169. mime_type,
  170. true, // create parent folder if not existent
  171. UploadFileOperation.CREATED_AS_INSTANT_VIDEO
  172. );
  173. }
  174. }