1 /* ownCloud Android client application
2 * Copyright (C) 2011 Bartek Przybylski
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package eu
.alefzero
.owncloud
.ui
.fragment
;
20 import java
.util
.Stack
;
22 import android
.accounts
.Account
;
23 import android
.accounts
.AccountManager
;
24 import android
.app
.Service
;
25 import android
.content
.Intent
;
26 import android
.database
.Cursor
;
27 import android
.net
.Uri
;
28 import android
.os
.Bundle
;
29 import android
.util
.Log
;
30 import android
.view
.View
;
31 import android
.widget
.AdapterView
;
32 import android
.widget
.TextView
;
33 import eu
.alefzero
.owncloud
.R
;
34 import eu
.alefzero
.owncloud
.authenticator
.AccountAuthenticator
;
35 import eu
.alefzero
.owncloud
.db
.ProviderMeta
.ProviderTableMeta
;
36 import eu
.alefzero
.owncloud
.ui
.FragmentListView
;
37 import eu
.alefzero
.owncloud
.ui
.activity
.FileDetailActivity
;
38 import eu
.alefzero
.owncloud
.ui
.activity
.FileDisplayActivity
;
39 import eu
.alefzero
.owncloud
.ui
.adapter
.FileListListAdapter
;
42 * A Fragment that lists all files and folders in a given path.
43 * @author Bartek Przybylski
46 public class FileList
extends FragmentListView
{
47 private Cursor mCursor
;
48 private Account mAccount
;
49 private AccountManager mAccountManager
;
50 private Stack
<String
> mDirNames
;
51 private Stack
<String
> mParentsIds
;
54 mDirNames
= new Stack
<String
>();
55 mParentsIds
= new Stack
<String
>();
59 public void onCreate(Bundle savedInstanceState
) {
60 super.onCreate(savedInstanceState
);
62 mAccountManager
= (AccountManager
)getActivity().getSystemService(Service
.ACCOUNT_SERVICE
);
63 mAccount
= mAccountManager
.getAccountsByType(AccountAuthenticator
.ACCOUNT_TYPE
)[0];
68 public void onItemClick(AdapterView
<?
> l
, View v
, int position
, long id
) {
69 if (!mCursor
.moveToPosition(position
)) {
70 throw new IndexOutOfBoundsException("Incorrect item selected");
72 String id_
= mCursor
.getString(mCursor
.getColumnIndex(ProviderTableMeta
._ID
));
73 if (mCursor
.getString(mCursor
.getColumnIndex(ProviderTableMeta
.FILE_CONTENT_TYPE
)).equals("DIR")) {
74 String dirname
= mCursor
.getString(mCursor
.getColumnIndex(ProviderTableMeta
.FILE_NAME
));
76 mDirNames
.push(dirname
);
77 mParentsIds
.push(id_
);
78 ((FileDisplayActivity
)getActivity()).pushPath(dirname
);
83 Intent i
= new Intent(getActivity(), FileDetailActivity
.class);
84 String filename
= ((TextView
)v
.findViewById(R
.id
.Filename
)).getText().toString();
85 i
.putExtra("FILE_NAME", filename
);
86 i
.putExtra("FULL_PATH", "/" + filename
);
87 i
.putExtra("FILE_ID", id_
);
88 i
.putExtra("ACCOUNT", mAccount
);
89 FileDetail fd
= (FileDetail
) getSupportFragmentManager().findFragmentById(R
.id
.fileDetail
);
97 public void onBackPressed() {
103 private void populateFileList() {
104 Log
.d("ASD", mAccount
.name
+ "");
105 if (mParentsIds
.empty()) {
106 mCursor
= getActivity().getContentResolver().query(ProviderTableMeta
.CONTENT_URI
,
108 ProviderTableMeta
.FILE_ACCOUNT_OWNER
+"=?",
109 new String
[]{mAccount
.name
},
112 mCursor
= getActivity().managedQuery(Uri
.withAppendedPath(ProviderTableMeta
.CONTENT_URI_DIR
, mParentsIds
.peek()),
114 ProviderTableMeta
.FILE_ACCOUNT_OWNER
+ "=?",
115 new String
[]{mAccount
.name
}, null
);
117 setListAdapter(new FileListListAdapter(mCursor
, getActivity()));