package eu.alefzero.owncloud;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.IOException;
+import java.util.LinkedList;
import java.util.Stack;
import android.accounts.Account;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.DialogInterface.OnCancelListener;
+import android.content.res.Configuration;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.net.Uri;
import android.os.Bundle;
-import android.text.Html;
+import android.os.Environment;
import android.text.TextUtils;
import android.util.Log;
import android.view.Menu;
public class OwnCloudMainScreen extends ListActivity {
private DbHandler mDBHandler;
private Stack<String> mParents;
+ private LinkedList<String> mPath;
private Account mAccount;
private Cursor mCursor;
private boolean mIsDisplayingFile;
private static final int DIALOG_CHOOSE_ACCOUNT = 0;
+ @SuppressWarnings("unchecked")
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+
+ if (savedInstanceState != null) {
+ mParents = (Stack<String>)savedInstanceState.getSerializable("parentsStack");
+ mIsDisplayingFile = savedInstanceState.getBoolean("isDisplayingFile");
+ mPath = (LinkedList<String>)savedInstanceState.getSerializable("path");
+ } else {
+ mParents = new Stack<String>();
+ mPath = new LinkedList<String>();
+ mIsDisplayingFile = false;
+ }
- mParents = new Stack<String>();
- mIsDisplayingFile = false;
mDBHandler = new DbHandler(getBaseContext());
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
String s = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_PATH));
for (String str : s.split("/")) {
if (!TextUtils.isEmpty(str))
- pl.push(str.replace("%20", " "));
+ pl.push(DisplayUtils.HtmlDecode(str));
}
}
getListView().setAdapter(new FileListListAdapter(mCursor, this));
return;
} else if (mParents.size() == 1) {
mParents.pop();
+ mPath.removeLast();
pl.pop();
mCursor = managedQuery(ProviderTableMeta.CONTENT_URI,
null,
null);
} else {
mParents.pop();
+ mPath.removeLast();
pl.pop();
mCursor = managedQuery(Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, mParents.peek()),
null,
if (mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_CONTENT_TYPE)).equals("DIR")) {
String id_ = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta._ID));
String dirname = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_NAME));
- pl.push(dirname);
+ pl.push(DisplayUtils.HtmlDecode(dirname));
+ mPath.addLast(DisplayUtils.HtmlDecode(dirname));
mParents.push(id_);
mCursor = managedQuery(Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, id_),
null,
// modified
tv = (TextView) findViewById(R.id.textView4);
tv.setText(mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_MODIFIED)));
- if (!TextUtils.isEmpty(mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_STORAGE_PATH)))) {
+ if (!TextUtils.isEmpty(mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_STORAGE_PATH))) &&
+ mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_CONTENT_TYPE)).matches("image/*")) {
ImageView iv = (ImageView) findViewById(R.id.imageView1);
Bitmap bmp = BitmapFactory.decodeFile(mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_STORAGE_PATH)));
Matrix m = new Matrix();
} else {
try {
Intent i = (Intent) getListAdapter().getItem(position);
- startActivity(i);
- } catch (ClassCastException e) {}
+ if (i.hasExtra("toDownload")) {
+
+ Uri data = Uri.parse(Environment.getExternalStorageDirectory().getAbsolutePath() + "/owncloud/filename");
+ Log.d("DUPA", data.toString());
+ File f = new File(data.toString());
+ FileInputStream fis = new FileInputStream(f);
+ byte buffer[] = new byte[512];
+ fis.read(buffer);
+ Log.d("DUPA", new String(buffer));
+
+ //Intent intent = new Intent(this, FileDownloader.class);
+ /*intent.putExtra(FileDownloader.EXTRA_FILE_PATH, "/docsy.py");
+ intent.putExtra(FileDownloader.EXTRA_ACCOUNT, mAccount);
+ startService(intent);
+ /*
+ if (i.getBooleanExtra("toDownload", false)) {
+ startActivityForResult(i, 200);
+ } else {
+ startActivity(i);
+ }*/
+ }
+ } catch (ClassCastException e) {} catch (FileNotFoundException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
}
}
private void populateFileList() {
- mCursor = getContentResolver().query(ProviderTableMeta.CONTENT_URI,
- null,
- ProviderTableMeta.FILE_ACCOUNT_OWNER+"=?",
- new String[]{mAccount.name},
- null);
+ if (mParents.empty()) {
+ mCursor = getContentResolver().query(ProviderTableMeta.CONTENT_URI,
+ null,
+ ProviderTableMeta.FILE_ACCOUNT_OWNER+"=?",
+ new String[]{mAccount.name},
+ null);
+ } else {
+ mCursor = getContentResolver().query(Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, mParents.peek()),
+ null,
+ ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?",
+ new String[]{mAccount.name}, null);
+ if (!mIsDisplayingFile) {
+ PathLayout pl = (PathLayout) findViewById(R.id.pathLayout1);
+ for (String s : mPath) {
+ pl.push(s);
+ }
+ }
+ }
setListAdapter(new FileListListAdapter(mCursor, this));
getListView().invalidate();
}
+ @Override
+ protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+ super.onActivityResult(requestCode, resultCode, data);
+ }
+ @Override
+ protected void onSaveInstanceState(Bundle outState) {
+ super.onSaveInstanceState(outState);
+ outState.putSerializable("parentsStack", mParents);
+ outState.putSerializable("path", mPath);
+ outState.putBoolean("isDisplayingFile", mIsDisplayingFile);
+ }
}
\ No newline at end of file