mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
440 lines
17 KiB
Java
440 lines
17 KiB
Java
/**
|
|
* Copyright (c) 2012 Todoroo Inc
|
|
*
|
|
* See the file "LICENSE" for the full license governing this code.
|
|
*/
|
|
package com.todoroo.astrid.files;
|
|
|
|
import java.io.File;
|
|
import java.io.FileOutputStream;
|
|
import java.io.InputStream;
|
|
import java.net.HttpURLConnection;
|
|
import java.net.URL;
|
|
import java.util.ArrayList;
|
|
|
|
import android.app.Activity;
|
|
import android.app.AlertDialog;
|
|
import android.app.ProgressDialog;
|
|
import android.content.ActivityNotFoundException;
|
|
import android.content.DialogInterface;
|
|
import android.content.Intent;
|
|
import android.graphics.Bitmap;
|
|
import android.net.Uri;
|
|
import android.text.TextUtils;
|
|
import android.view.Gravity;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.webkit.MimeTypeMap;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.LinearLayout.LayoutParams;
|
|
import android.widget.TextView;
|
|
import android.widget.Toast;
|
|
|
|
import com.timsu.astrid.R;
|
|
import com.todoroo.aacenc.RecognizerApi;
|
|
import com.todoroo.aacenc.RecognizerApi.PlaybackExceptionHandler;
|
|
import com.todoroo.andlib.data.TodorooCursor;
|
|
import com.todoroo.andlib.service.Autowired;
|
|
import com.todoroo.andlib.service.DependencyInjectionService;
|
|
import com.todoroo.andlib.sql.Criterion;
|
|
import com.todoroo.andlib.sql.Query;
|
|
import com.todoroo.andlib.utility.AndroidUtilities;
|
|
import com.todoroo.andlib.utility.DateUtilities;
|
|
import com.todoroo.andlib.utility.DialogUtilities;
|
|
import com.todoroo.astrid.actfm.sync.ActFmPreferenceService;
|
|
import com.todoroo.astrid.actfm.sync.ActFmSyncService;
|
|
import com.todoroo.astrid.dao.MetadataDao.MetadataCriteria;
|
|
import com.todoroo.astrid.data.Metadata;
|
|
import com.todoroo.astrid.data.Task;
|
|
import com.todoroo.astrid.service.MetadataService;
|
|
import com.todoroo.astrid.ui.PopupControlSet;
|
|
import com.todoroo.astrid.utility.Constants;
|
|
|
|
public class FilesControlSet extends PopupControlSet {
|
|
|
|
@Autowired
|
|
private MetadataService metadataService;
|
|
|
|
@Autowired
|
|
private ActFmSyncService actFmSyncService;
|
|
|
|
private final ArrayList<Metadata> files = new ArrayList<Metadata>();
|
|
private final LinearLayout fileDisplayList;
|
|
private LinearLayout fileList;
|
|
private final LayoutInflater inflater;
|
|
|
|
public FilesControlSet(Activity activity, int viewLayout, int displayViewLayout, int title) {
|
|
super(activity, viewLayout, displayViewLayout, title);
|
|
DependencyInjectionService.getInstance().inject(this);
|
|
|
|
displayText.setText(activity.getString(R.string.TEA_control_files));
|
|
fileDisplayList = (LinearLayout) getDisplayView().findViewById(R.id.files_list);
|
|
inflater = (LayoutInflater) activity.getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
|
|
}
|
|
|
|
@Override
|
|
protected void refreshDisplayView() {
|
|
fileDisplayList.removeAllViews();
|
|
for (final Metadata m : files) {
|
|
View fileRow = inflater.inflate(R.layout.file_display_row, null);
|
|
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
|
|
lp.gravity = Gravity.RIGHT;
|
|
setUpFileRow(m, fileRow, fileDisplayList, lp);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void readFromTask(Task task) {
|
|
super.readFromTask(task);
|
|
|
|
refreshMetadata();
|
|
refreshDisplayView();
|
|
}
|
|
|
|
public void refreshMetadata() {
|
|
if (model != null) {
|
|
TodorooCursor<Metadata> cursor = metadataService.query(
|
|
Query.select(Metadata.PROPERTIES)
|
|
.where(Criterion.and(MetadataCriteria.byTaskAndwithKey(model.getId(), FileMetadata.METADATA_KEY),
|
|
FileMetadata.DELETION_DATE.eq(0))));
|
|
try {
|
|
files.clear();
|
|
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
|
|
Metadata metadata = new Metadata();
|
|
metadata.readFromCursor(cursor);
|
|
files.add(metadata);
|
|
}
|
|
} finally {
|
|
cursor.close();
|
|
}
|
|
validateFiles();
|
|
if (initialized)
|
|
afterInflate();
|
|
}
|
|
}
|
|
|
|
private void validateFiles() {
|
|
for (int i = 0; i < files.size(); i++) {
|
|
Metadata m = files.get(i);
|
|
if (m.containsNonNullValue(FileMetadata.FILE_PATH)) {
|
|
File f = new File(m.getValue(FileMetadata.FILE_PATH));
|
|
if (!f.exists()) {
|
|
m.setValue(FileMetadata.FILE_PATH, ""); //$NON-NLS-1$
|
|
if (m.containsNonNullValue(FileMetadata.URL)) { // We're ok, just the local file was deleted
|
|
metadataService.save(m);
|
|
} else { // No local file and no url -- delete the metadata
|
|
metadataService.delete(m);
|
|
files.remove(i);
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void readFromTaskOnInitialize() {
|
|
// TODO Auto-generated method stub
|
|
}
|
|
|
|
@Override
|
|
protected String writeToModelAfterInitialized(Task task) {
|
|
// Nothing to write
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
protected void afterInflate() {
|
|
fileList = (LinearLayout) getView().findViewById(R.id.files_list);
|
|
final LinearLayout finalList = fileList;
|
|
fileList.removeAllViews();
|
|
LayoutParams lp = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
|
|
for (final Metadata m : files) {
|
|
final View fileRow = inflater.inflate(R.layout.file_row, null);
|
|
|
|
setUpFileRow(m, fileRow, fileList, lp);
|
|
View name = fileRow.findViewById(R.id.file_text);
|
|
View clearFile = fileRow.findViewById(R.id.remove_file);
|
|
|
|
setupFileClickListener(name, m);
|
|
|
|
if (ActFmPreferenceService.isPremiumUser()) {
|
|
clearFile.setVisibility(View.VISIBLE);
|
|
clearFile.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
DialogUtilities.okCancelDialog(activity, activity.getString(R.string.premium_remove_file_confirm),
|
|
new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface d, int which) {
|
|
if (m.getValue(FileMetadata.REMOTE_ID) > 0) {
|
|
m.setValue(FileMetadata.DELETION_DATE, DateUtilities.now());
|
|
metadataService.save(m);
|
|
actFmSyncService.pushAttachmentInBackground(m);
|
|
} else {
|
|
metadataService.delete(m);
|
|
}
|
|
|
|
if (m.containsNonNullValue(FileMetadata.FILE_PATH)) {
|
|
File f = new File(m.getValue(FileMetadata.FILE_PATH));
|
|
f.delete();
|
|
}
|
|
files.remove(m);
|
|
refreshDisplayView();
|
|
finalList.removeView(fileRow);
|
|
}
|
|
}, null);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
private void setupFileClickListener(View view, final Metadata m) {
|
|
final String filePath = m.containsNonNullValue(FileMetadata.FILE_PATH) ? m.getValue(FileMetadata.FILE_PATH) : null;
|
|
if (TextUtils.isEmpty(filePath)) {
|
|
view.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
DialogUtilities.okCancelDialog(activity, activity.getString(R.string.file_download_title),
|
|
activity.getString(R.string.file_download_body), new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface d, int which) {
|
|
downloadFile(m);
|
|
}
|
|
}, null);
|
|
}
|
|
});
|
|
} else {
|
|
view.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
showFile(m);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
private void showFile(final Metadata m) {
|
|
final String fileType = m.containsNonNullValue(FileMetadata.FILE_TYPE) ? m.getValue(FileMetadata.FILE_TYPE) : FileMetadata.FILE_TYPE_OTHER;
|
|
final String filePath = m.getValue(FileMetadata.FILE_PATH);
|
|
|
|
if (fileType.startsWith(FileMetadata.FILE_TYPE_AUDIO)) {
|
|
RecognizerApi.play(activity, m.getValue(FileMetadata.FILE_PATH), new PlaybackExceptionHandler() {
|
|
@Override
|
|
public void playbackFailed(String file) {
|
|
showFromIntent(filePath, fileType);
|
|
}
|
|
});
|
|
} else if (fileType.startsWith(FileMetadata.FILE_TYPE_IMAGE)) {
|
|
AlertDialog image = new AlertDialog.Builder(activity).create();
|
|
ImageView imageView = new ImageView(activity);
|
|
imageView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
|
|
Bitmap bitmap = AndroidUtilities.readScaledBitmap(filePath);
|
|
|
|
if (bitmap == null) {
|
|
Toast.makeText(activity, R.string.file_err_memory, Toast.LENGTH_LONG).show();
|
|
return;
|
|
}
|
|
|
|
imageView.setImageBitmap(bitmap);
|
|
image.setView(imageView);
|
|
|
|
image.setButton(activity.getString(R.string.DLG_close), new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface d, int which) {
|
|
return;
|
|
}
|
|
});
|
|
image.show();
|
|
} else {
|
|
String useType = fileType;
|
|
if (fileType.equals(FileMetadata.FILE_TYPE_OTHER)) {
|
|
String extension = AndroidUtilities.getFileExtension(filePath);
|
|
|
|
MimeTypeMap map = MimeTypeMap.getSingleton();
|
|
String guessedType = map.getMimeTypeFromExtension(extension);
|
|
if (!TextUtils.isEmpty(guessedType))
|
|
useType = guessedType;
|
|
if (useType != guessedType) {
|
|
m.setValue(FileMetadata.FILE_TYPE, useType);
|
|
metadataService.save(m);
|
|
}
|
|
}
|
|
showFromIntent(filePath, useType);
|
|
}
|
|
}
|
|
|
|
private void showFromIntent(String file, String type) {
|
|
try {
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
intent.setDataAndType(Uri.fromFile(new File(file)), type);
|
|
activity.startActivity(intent);
|
|
} catch (ActivityNotFoundException e) {
|
|
handleActivityNotFound(type);
|
|
}
|
|
}
|
|
|
|
private void handleActivityNotFound(String fileType) {
|
|
if (fileType.startsWith(FileMetadata.FILE_TYPE_AUDIO)) {
|
|
searchMarket("com.clov4r.android.nil", R.string.search_market_audio_title, R.string.search_market_audio); //$NON-NLS-1$
|
|
} else if (fileType.equals(FileMetadata.FILE_TYPE_PDF)) {
|
|
searchMarket("com.adobe.reader", R.string.search_market_pdf_title, R.string.search_market_pdf); //$NON-NLS-1$
|
|
} else if (AndroidUtilities.indexOf(FileMetadata.MS_FILETYPES, fileType) >= 0) {
|
|
searchMarket("com.dataviz.docstogo", R.string.search_market_ms_title, R.string.search_market_ms); //$NON-NLS-1$
|
|
} else {
|
|
DialogUtilities.okDialog(activity, activity.getString(R.string.file_type_unhandled_title),
|
|
0, activity.getString(R.string.file_type_unhandled), null);
|
|
}
|
|
}
|
|
|
|
private void searchMarket(final String packageName, int title, int body) {
|
|
DialogUtilities.okCancelDialog(activity, activity.getString(title),
|
|
activity.getString(body), new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface d, int which) {
|
|
Intent marketIntent = Constants.MARKET_STRATEGY.generateMarketLink(packageName);
|
|
try {
|
|
if (marketIntent == null)
|
|
throw new ActivityNotFoundException("No market link supplied"); //$NON-NLS-1$
|
|
activity.startActivity(marketIntent);
|
|
} catch (ActivityNotFoundException anf) {
|
|
DialogUtilities.okDialog(activity,
|
|
activity.getString(R.string.market_unavailable),
|
|
null);
|
|
}
|
|
}
|
|
}, null);
|
|
}
|
|
|
|
@SuppressWarnings("nls")
|
|
private void downloadFile(final Metadata m) {
|
|
final ProgressDialog pd = new ProgressDialog(activity);
|
|
pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
|
|
pd.setMessage(activity.getString(R.string.file_download_progress));
|
|
pd.setMax(100);
|
|
|
|
new Thread() {
|
|
@Override
|
|
public void run() {
|
|
String urlString = m.getValue(FileMetadata.URL);
|
|
urlString = urlString.replace(" ", "%20");
|
|
String name = m.getValue(FileMetadata.NAME);
|
|
StringBuilder filePathBuilder = new StringBuilder();
|
|
|
|
File directory = FileUtilities.getAttachmentsDirectory(activity);
|
|
|
|
if (directory == null) {
|
|
Toast.makeText(activity, R.string.file_err_no_directory, Toast.LENGTH_LONG).show();
|
|
return;
|
|
}
|
|
|
|
filePathBuilder.append(directory.toString())
|
|
.append(File.separator)
|
|
.append(name);
|
|
|
|
File file = new File(filePathBuilder.toString());
|
|
if (file.exists()) {
|
|
activity.runOnUiThread(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
Toast.makeText(activity, R.string.file_err_download, Toast.LENGTH_LONG).show();
|
|
}
|
|
});
|
|
return;
|
|
}
|
|
|
|
try {
|
|
URL url = new URL(urlString);
|
|
|
|
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
|
|
urlConnection.setRequestMethod("GET");
|
|
|
|
urlConnection.connect();
|
|
|
|
FileOutputStream fileOutput = new FileOutputStream(file);
|
|
|
|
InputStream inputStream = urlConnection.getInputStream();
|
|
|
|
int totalSize = urlConnection.getContentLength();
|
|
|
|
int downloadedSize = 0;
|
|
|
|
byte[] buffer = new byte[1024];
|
|
|
|
int bufferLength = 0; //used to store a temporary size of the buffer
|
|
|
|
while ((bufferLength = inputStream.read(buffer)) > 0) {
|
|
fileOutput.write(buffer, 0, bufferLength);
|
|
downloadedSize += bufferLength;
|
|
|
|
int progress = (int) (downloadedSize*100/totalSize);
|
|
pd.setProgress(progress);
|
|
}
|
|
|
|
fileOutput.flush();
|
|
fileOutput.close();
|
|
|
|
m.setValue(FileMetadata.FILE_PATH, file.getAbsolutePath());
|
|
metadataService.save(m);
|
|
activity.runOnUiThread(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
refreshMetadata();
|
|
showFile(m);
|
|
}
|
|
});
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
file.delete();
|
|
activity.runOnUiThread(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
Toast.makeText(activity, R.string.file_err_download, Toast.LENGTH_LONG).show();
|
|
}
|
|
});
|
|
} finally {
|
|
DialogUtilities.dismissDialog(activity, pd);
|
|
}
|
|
}
|
|
}.start();
|
|
pd.show();
|
|
}
|
|
|
|
private void setUpFileRow(Metadata m, View row, LinearLayout parent, LayoutParams lp) {
|
|
TextView nameView = (TextView) row.findViewById(R.id.file_text);
|
|
TextView typeView = (TextView) row.findViewById(R.id.file_type);
|
|
String name = getNameString(m);
|
|
String type = getTypeString(m.getValue(FileMetadata.NAME));
|
|
nameView.setText(name);
|
|
|
|
if (TextUtils.isEmpty(type))
|
|
typeView.setVisibility(View.GONE);
|
|
else
|
|
typeView.setText(type);
|
|
|
|
parent.addView(row, lp);
|
|
}
|
|
|
|
private String getNameString(Metadata metadata) {
|
|
String name = metadata.getValue(FileMetadata.NAME);
|
|
int extension = name.lastIndexOf('.');
|
|
if (extension < 0)
|
|
return name;
|
|
return name.substring(0, extension);
|
|
}
|
|
|
|
@SuppressWarnings("nls")
|
|
private String getTypeString(String name) {
|
|
int extension = name.lastIndexOf('.');
|
|
if (extension < 0 || extension + 1 >= name.length())
|
|
return "";
|
|
return name.substring(extension + 1).toUpperCase();
|
|
|
|
}
|
|
|
|
}
|