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 android
.accounts
.Account
;
21 import android
.accounts
.AccountManager
;
22 import android
.content
.ActivityNotFoundException
;
23 import android
.content
.BroadcastReceiver
;
24 import android
.content
.Context
;
25 import android
.content
.Intent
;
26 import android
.content
.IntentFilter
;
27 import android
.graphics
.Bitmap
;
28 import android
.graphics
.BitmapFactory
;
29 import android
.graphics
.BitmapFactory
.Options
;
30 import android
.net
.Uri
;
31 import android
.os
.Bundle
;
32 import android
.util
.Log
;
33 import android
.view
.LayoutInflater
;
34 import android
.view
.View
;
35 import android
.view
.View
.OnClickListener
;
36 import android
.view
.ViewGroup
;
37 import android
.webkit
.MimeTypeMap
;
38 import android
.widget
.Button
;
39 import android
.widget
.ImageView
;
40 import android
.widget
.TextView
;
41 import android
.widget
.Toast
;
43 import com
.actionbarsherlock
.app
.SherlockFragment
;
45 import eu
.alefzero
.owncloud
.DisplayUtils
;
46 import eu
.alefzero
.owncloud
.R
;
47 import eu
.alefzero
.owncloud
.authenticator
.AccountAuthenticator
;
48 import eu
.alefzero
.owncloud
.datamodel
.OCFile
;
49 import eu
.alefzero
.owncloud
.files
.services
.FileDownloader
;
50 import eu
.alefzero
.owncloud
.utils
.OwnCloudVersion
;
53 * This Fragment is used to display the details about a file.
55 * @author Bartek Przybylski
58 public class FileDetailFragment
extends SherlockFragment
implements
61 public static final String EXTRA_FILE
= "FILE";
62 public static final String EXTRA_ACCOUNT
= "ACCOUNT";
67 private Account mAccount
;
69 private DownloadFinishReceiver mDownloadFinishReceiver
;
71 private static final String TAG
= "FileDetailFragment";
72 public static final String FTAG
= "FileDetails";
76 * Creates an empty details fragment.
78 * It's necessary to keep a public constructor without parameters; the system uses it when tries to reinstantiate a fragment automatically.
80 public FileDetailFragment() {
83 mLayout
= R
.layout
.file_details_empty
;
88 * Creates a details fragment.
90 * When 'fileToDetail' or 'ocAccount' are null, creates a dummy layout (to use when a file wasn't tapped before).
92 * @param fileToDetail An {@link OCFile} to show in the fragment
93 * @param ocAccount An ownCloud account; needed to start downloads
95 public FileDetailFragment(OCFile fileToDetail
, Account ocAccount
){
98 mLayout
= R
.layout
.file_details_empty
;
100 if(fileToDetail
!= null
&& ocAccount
!= null
) {
101 mLayout
= R
.layout
.file_details_fragment
;
107 public View
onCreateView(LayoutInflater inflater
, ViewGroup container
,
108 Bundle savedInstanceState
) {
109 super.onCreateView(inflater
, container
, savedInstanceState
);
111 if (savedInstanceState
!= null
) {
112 mFile
= savedInstanceState
.getParcelable(FileDetailFragment
.EXTRA_FILE
);
113 mAccount
= savedInstanceState
.getParcelable(FileDetailFragment
.EXTRA_ACCOUNT
);
117 view
= inflater
.inflate(mLayout
, container
, false
);
126 public void onSaveInstanceState(Bundle outState
) {
127 Log
.i(getClass().toString(), "onSaveInstanceState() start");
128 super.onSaveInstanceState(outState
);
129 outState
.putParcelable(FileDetailFragment
.EXTRA_FILE
, mFile
);
130 outState
.putParcelable(FileDetailFragment
.EXTRA_ACCOUNT
, mAccount
);
131 Log
.i(getClass().toString(), "onSaveInstanceState() end");
136 public void onResume() {
138 mDownloadFinishReceiver
= new DownloadFinishReceiver();
139 IntentFilter filter
= new IntentFilter(
140 FileDownloader
.DOWNLOAD_FINISH_MESSAGE
);
141 getActivity().registerReceiver(mDownloadFinishReceiver
, filter
);
145 public void onPause() {
147 getActivity().unregisterReceiver(mDownloadFinishReceiver
);
148 mDownloadFinishReceiver
= null
;
152 public View
getView() {
153 return super.getView() == null ? mView
: super.getView();
157 public void onClick(View v
) {
158 Toast
.makeText(getActivity(), "Downloading", Toast
.LENGTH_LONG
).show();
159 Intent i
= new Intent(getActivity(), FileDownloader
.class);
160 i
.putExtra(FileDownloader
.EXTRA_ACCOUNT
, mAccount
);
161 i
.putExtra(FileDownloader
.EXTRA_REMOTE_PATH
, mFile
.getRemotePath());
162 i
.putExtra(FileDownloader
.EXTRA_FILE_PATH
, mFile
.getURLDecodedRemotePath());
163 i
.putExtra(FileDownloader
.EXTRA_FILE_SIZE
, mFile
.getFileLength());
165 getActivity().startService(i
);
169 * Can be used to get the file that is currently being displayed.
170 * @return The file on the screen.
172 public OCFile
getDisplayedFile(){
177 * Use this method to signal this Activity that it shall update its view.
179 * @param file : An {@link OCFile}
181 public void updateFileDetails(OCFile file
, Account ocAccount
) {
183 mAccount
= ocAccount
;
189 * Updates the view with all relevant details about that file.
191 public void updateFileDetails() {
193 if (mFile
!= null
&& mLayout
== R
.layout
.file_details_fragment
) {
194 Button downloadButton
= (Button
) getView().findViewById(R
.id
.fdDownloadBtn
);
196 setFilename(mFile
.getFileName());
197 setFiletype(DisplayUtils
.convertMIMEtoPrettyPrint(mFile
199 setFilesize(mFile
.getFileLength());
200 if(ocVersionSupportsTimeCreated()){
201 setTimeCreated(mFile
.getCreationTimestamp());
204 setTimeModified(mFile
.getModificationTimestamp());
207 if (mFile
.getStoragePath() != null
) {
208 ImageView preview
= (ImageView
) getView().findViewById(R
.id
.fdPreview
);
210 if (mFile
.getMimetype().startsWith("image/")) {
211 BitmapFactory
.Options options
= new Options();
212 options
.inScaled
= true
;
213 options
.inPurgeable
= true
;
214 if (android
.os
.Build
.VERSION
.SDK_INT
>= android
.os
.Build
.VERSION_CODES
.GINGERBREAD_MR1
) {
215 options
.inPreferQualityOverSpeed
= false
;
217 if (android
.os
.Build
.VERSION
.SDK_INT
>= android
.os
.Build
.VERSION_CODES
.HONEYCOMB
) {
218 options
.inMutable
= false
;
221 Bitmap bmp
= BitmapFactory
.decodeFile(mFile
.getStoragePath(), options
);
223 int width
= options
.outWidth
;
224 int height
= options
.outHeight
;
226 if (width
>= 2048 || height
>= 2048) {
227 scale
= (int) (Math
.ceil(Math
.max(height
, width
)/2048.));
228 options
.inSampleSize
= scale
;
231 bmp
= BitmapFactory
.decodeFile(mFile
.getStoragePath(), options
);
233 preview
.setImageBitmap(bmp
);
235 } catch (OutOfMemoryError e
) {
236 preview
.setVisibility(View
.INVISIBLE
);
237 Log
.e(TAG
, "Out of memory occured for file with size " + mFile
.getFileLength());
239 } catch (NoSuchFieldError e
) {
240 preview
.setVisibility(View
.INVISIBLE
);
241 Log
.e(TAG
, "Error from access to unexisting field despite protection " + mFile
.getFileLength());
243 } catch (Throwable t
) {
244 preview
.setVisibility(View
.INVISIBLE
);
245 Log
.e(TAG
, "Unexpected error while creating image preview " + mFile
.getFileLength(), t
);
247 downloadButton
.setText(R
.string
.filedetails_open
);
248 downloadButton
.setOnClickListener(new OnClickListener() {
250 public void onClick(View v
) {
251 String storagePath
= mFile
.getStoragePath();
253 Intent i
= new Intent(Intent
.ACTION_VIEW
);
254 i
.setDataAndType(Uri
.parse("file://"+ storagePath
), mFile
.getMimetype());
255 i
.setFlags(Intent
.FLAG_GRANT_READ_URI_PERMISSION
| Intent
.FLAG_GRANT_WRITE_URI_PERMISSION
);
258 } catch (Throwable t
) {
259 Log
.e(TAG
, "Fail when trying to open with the mimeType provided from the ownCloud server: " + mFile
.getMimetype());
260 boolean toastIt
= true
;
261 String mimeType
= "";
263 Intent i
= new Intent(Intent
.ACTION_VIEW
);
264 mimeType
= MimeTypeMap
.getSingleton().getMimeTypeFromExtension(storagePath
.substring(storagePath
.lastIndexOf('.') + 1));
265 if (mimeType
!= mFile
.getMimetype()) {
266 i
.setDataAndType(Uri
.parse("file://"+mFile
.getStoragePath()), mimeType
);
267 i
.setFlags(Intent
.FLAG_GRANT_READ_URI_PERMISSION
| Intent
.FLAG_GRANT_WRITE_URI_PERMISSION
);
272 } catch (IndexOutOfBoundsException e
) {
273 Log
.e(TAG
, "Trying to find out MIME type of a file without extension: " + storagePath
);
275 } catch (ActivityNotFoundException e
) {
276 Log
.e(TAG
, "No activity found to handle: " + storagePath
+ " with MIME type " + mimeType
+ " obtained from extension");
278 } catch (Throwable th
) {
279 Log
.e(TAG
, "Unexpected problem when opening: " + storagePath
, th
);
283 Toast
.makeText(getActivity(), "There is no application to handle file " + mFile
.getFileName(), Toast
.LENGTH_SHORT
).show();
291 // Make download button effective
292 downloadButton
.setOnClickListener(this);
298 * Updates the filename in view
299 * @param filename to set
301 private void setFilename(String filename
) {
302 TextView tv
= (TextView
) getView().findViewById(R
.id
.fdFilename
);
304 tv
.setText(filename
);
308 * Updates the MIME type in view
309 * @param mimetype to set
311 private void setFiletype(String mimetype
) {
312 TextView tv
= (TextView
) getView().findViewById(R
.id
.fdType
);
314 tv
.setText(mimetype
);
318 * Updates the file size in view
319 * @param filesize in bytes to set
321 private void setFilesize(long filesize
) {
322 TextView tv
= (TextView
) getView().findViewById(R
.id
.fdSize
);
324 tv
.setText(DisplayUtils
.bytesToHumanReadable(filesize
));
328 * Updates the time that the file was created in view
329 * @param milliseconds Unix time to set
331 private void setTimeCreated(long milliseconds
){
332 TextView tv
= (TextView
) getView().findViewById(R
.id
.fdCreated
);
333 TextView tvLabel
= (TextView
) getView().findViewById(R
.id
.fdCreatedLabel
);
335 tv
.setText(DisplayUtils
.unixTimeToHumanReadable(milliseconds
));
336 tv
.setVisibility(View
.VISIBLE
);
337 tvLabel
.setVisibility(View
.VISIBLE
);
342 * Updates the time that the file was last modified
343 * @param milliseconds Unix time to set
345 private void setTimeModified(long milliseconds
){
346 TextView tv
= (TextView
) getView().findViewById(R
.id
.fdModified
);
348 tv
.setText(DisplayUtils
.unixTimeToHumanReadable(milliseconds
));
353 * In ownCloud 3.X.X and 4.X.X there is a bug that SabreDAV does not return
354 * the time that the file was created. There is a chance that this will
355 * be fixed in future versions. Use this method to check if this version of
356 * ownCloud has this fix.
357 * @return True, if ownCloud the ownCloud version is supporting creation time
359 private boolean ocVersionSupportsTimeCreated(){
360 /*if(mAccount != null){
361 AccountManager accManager = (AccountManager) getActivity().getSystemService(Context.ACCOUNT_SERVICE);
362 OwnCloudVersion ocVersion = new OwnCloudVersion(accManager
363 .getUserData(mAccount, AccountAuthenticator.KEY_OC_VERSION));
364 if(ocVersion.compareTo(new OwnCloudVersion(0x030000)) < 0) {
372 * Once the file download has finished -> update view
373 * @author Bartek Przybylski
375 private class DownloadFinishReceiver
extends BroadcastReceiver
{
377 public void onReceive(Context context
, Intent intent
) {
378 getView().findViewById(R
.id
.fdDownloadBtn
).setEnabled(true
);
379 if (intent
.getAction().equals(FileDownloader
.BAD_DOWNLOAD_MESSAGE
)) {
380 Toast
.makeText(context
, R
.string
.downloader_download_failed
, Toast
.LENGTH_SHORT
).show();
382 } else if (intent
.getAction().equals(FileDownloader
.DOWNLOAD_FINISH_MESSAGE
)) {
383 mFile
.setStoragePath(intent
.getStringExtra(FileDownloader
.EXTRA_FILE_PATH
));