InstantUploadBroadcastReceiver.java 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. package com.owncloud.android.files;
  20. import java.io.File;
  21. import com.owncloud.android.AccountUtils;
  22. import com.owncloud.android.authentication.AccountAuthenticator;
  23. import com.owncloud.android.db.DbHandler;
  24. import com.owncloud.android.files.services.FileUploader;
  25. import android.accounts.Account;
  26. import android.content.BroadcastReceiver;
  27. import android.content.Context;
  28. import android.content.Intent;
  29. import android.content.IntentFilter;
  30. import android.database.Cursor;
  31. import android.net.ConnectivityManager;
  32. import android.net.NetworkInfo.State;
  33. import android.preference.PreferenceManager;
  34. import android.provider.MediaStore.Images.Media;
  35. import android.util.Log;
  36. import android.webkit.MimeTypeMap;
  37. public class InstantUploadBroadcastReceiver extends BroadcastReceiver {
  38. public static String INSTANT_UPLOAD_DIR = "/InstantUpload/";
  39. private static String TAG = "PhotoTakenBroadcastReceiver";
  40. private static final String[] CONTENT_PROJECTION = { Media.DATA,
  41. Media.DISPLAY_NAME,
  42. Media.MIME_TYPE,
  43. Media.SIZE };
  44. private static String NEW_PHOTO_ACTION = "com.android.camera.NEW_PICTURE";
  45. @Override
  46. public void onReceive(Context context, Intent intent) {
  47. Log.d(TAG, "Received: " + intent.getAction());
  48. if (intent.getAction().equals(android.net.ConnectivityManager.CONNECTIVITY_ACTION)) {
  49. handleConnectivityAction(context, intent);
  50. } else if (intent.getAction().equals(NEW_PHOTO_ACTION)) {
  51. handleNewPhotoAction(context, intent);
  52. } else if (intent.getAction().equals(FileUploader.UPLOAD_FINISH_MESSAGE)) {
  53. handleUploadFinished(context, intent);
  54. } else {
  55. Log.e(TAG, "Incorrect intent sent: " + intent.getAction());
  56. }
  57. }
  58. private void handleUploadFinished(Context context, Intent intent) {
  59. // remove successfull uploading, ignore rest for reupload on reconnect
  60. if (intent.getBooleanExtra(FileUploader.EXTRA_UPLOAD_RESULT, false)) {
  61. DbHandler db = new DbHandler(context);
  62. String localPath = intent.getStringExtra(FileUploader.EXTRA_OLD_FILE_PATH);
  63. if (!db.removeIUPendingFile(localPath,
  64. intent.getStringExtra(FileUploader.ACCOUNT_NAME))) {
  65. Log.w(TAG, "Tried to remove non existing instant upload file " + localPath);
  66. }
  67. db.close();
  68. }
  69. }
  70. private void handleNewPhotoAction(Context context, Intent intent) {
  71. if (!instantUploadEnabled(context)) {
  72. Log.d(TAG, "Instant upload disabled, abording uploading");
  73. return;
  74. }
  75. Account account = AccountUtils.getCurrentOwnCloudAccount(context);
  76. if (account == null) {
  77. Log.w(TAG, "No owncloud account found for instant upload, aborting");
  78. return;
  79. }
  80. Cursor c = context.getContentResolver().query(intent.getData(),
  81. CONTENT_PROJECTION,
  82. null, null, null);
  83. if (!c.moveToFirst()) {
  84. Log.e(TAG, "Couldn't resolve given uri: " + intent.getDataString());
  85. return;
  86. }
  87. String file_path = c.getString(c.getColumnIndex(Media.DATA));
  88. String file_name = c.getString(c.getColumnIndex(Media.DISPLAY_NAME));
  89. String mime_type = c.getString(c.getColumnIndex(Media.MIME_TYPE));
  90. c.close();
  91. Log.e(TAG, file_path+"");
  92. if (!isOnline(context) ||
  93. (instantUploadViaWiFiOnly(context) && !isConnectedViaWiFi(context))) {
  94. DbHandler db = new DbHandler(context);
  95. db.putFileForLater(file_path, account.name);
  96. db.close();
  97. return;
  98. }
  99. // register for upload finishe message
  100. // there is a litte problem with android API, we can register for particular
  101. // intent in registerReceiver but we cannot unregister from precise intent
  102. // we can unregister from entire listenings but thats suck a bit.
  103. // On the other hand this might be only for dynamicly registered
  104. // broadcast receivers, needs investigation.
  105. IntentFilter filter = new IntentFilter(FileUploader.UPLOAD_FINISH_MESSAGE);
  106. context.getApplicationContext().registerReceiver(this, filter);
  107. Intent i = new Intent(context, FileUploader.class);
  108. i.putExtra(FileUploader.KEY_ACCOUNT, account);
  109. i.putExtra(FileUploader.KEY_LOCAL_FILE, file_path);
  110. i.putExtra(FileUploader.KEY_REMOTE_FILE, INSTANT_UPLOAD_DIR + file_name);
  111. i.putExtra(FileUploader.KEY_UPLOAD_TYPE, FileUploader.UPLOAD_SINGLE_FILE);
  112. i.putExtra(FileUploader.KEY_MIME_TYPE, mime_type);
  113. i.putExtra(FileUploader.KEY_INSTANT_UPLOAD, true);
  114. context.startService(i);
  115. }
  116. private void handleConnectivityAction(Context context, Intent intent) {
  117. if (!instantUploadEnabled(context)) {
  118. Log.d(TAG, "Instant upload disabled, abording uploading");
  119. return;
  120. }
  121. if (!intent.hasExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY) &&
  122. isOnline(context) &&
  123. (!instantUploadViaWiFiOnly(context) ||
  124. (instantUploadViaWiFiOnly(context) == isConnectedViaWiFi(context) == true)) ) {
  125. DbHandler db = new DbHandler(context);
  126. Cursor c = db.getAwaitingFiles();
  127. if (c.moveToFirst()) {
  128. IntentFilter filter = new IntentFilter(FileUploader.UPLOAD_FINISH_MESSAGE);
  129. context.getApplicationContext().registerReceiver(this, filter);
  130. do {
  131. String account_name = c.getString(c.getColumnIndex("account"));
  132. String file_path = c.getString(c.getColumnIndex("path"));
  133. File f = new File(file_path);
  134. if (f.exists()) {
  135. Account account = new Account(account_name, AccountAuthenticator.ACCOUNT_TYPE);
  136. String mimeType = null;
  137. try {
  138. mimeType = MimeTypeMap.getSingleton()
  139. .getMimeTypeFromExtension(
  140. f.getName().substring(f.getName().lastIndexOf('.') + 1));
  141. } catch (Throwable e) {
  142. Log.e(TAG, "Trying to find out MIME type of a file without extension: " + f.getName());
  143. }
  144. if (mimeType == null)
  145. mimeType = "application/octet-stream";
  146. Intent i = new Intent(context, FileUploader.class);
  147. i.putExtra(FileUploader.KEY_ACCOUNT, account);
  148. i.putExtra(FileUploader.KEY_LOCAL_FILE, file_path);
  149. i.putExtra(FileUploader.KEY_REMOTE_FILE, INSTANT_UPLOAD_DIR + f.getName());
  150. i.putExtra(FileUploader.KEY_UPLOAD_TYPE, FileUploader.UPLOAD_SINGLE_FILE);
  151. i.putExtra(FileUploader.KEY_INSTANT_UPLOAD, true);
  152. context.startService(i);
  153. } else {
  154. Log.w(TAG, "Instant upload file " + f.getAbsolutePath() + " dont exist anymore");
  155. }
  156. } while(c.moveToNext());
  157. }
  158. c.close();
  159. db.close();
  160. }
  161. }
  162. private boolean isOnline(Context context) {
  163. ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
  164. return cm.getActiveNetworkInfo() != null && cm.getActiveNetworkInfo().isConnected();
  165. }
  166. private boolean isConnectedViaWiFi(Context context) {
  167. ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
  168. return cm != null && cm.getActiveNetworkInfo() != null &&
  169. cm.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI &&
  170. cm.getActiveNetworkInfo().getState() == State.CONNECTED;
  171. }
  172. private boolean instantUploadEnabled(Context context) {
  173. return PreferenceManager.getDefaultSharedPreferences(context).getBoolean("instant_uploading", false);
  174. }
  175. private boolean instantUploadViaWiFiOnly(Context context) {
  176. return PreferenceManager.getDefaultSharedPreferences(context).getBoolean("instant_upload_on_wifi", false);
  177. }
  178. }