blob: 73aa366ed6397663cd4d91c29e0658177a40b61d [file] [log] [blame]
Aga Wronska3b327ef2016-01-20 16:32:33 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.documentsui.dirlist;
18
19import static com.android.documentsui.Shared.TAG;
Aga Wronska3b327ef2016-01-20 16:32:33 -080020
21import android.app.AlertDialog;
22import android.app.Dialog;
23import android.app.DialogFragment;
24import android.app.FragmentManager;
25import android.content.ContentProviderClient;
26import android.content.ContentResolver;
27import android.content.Context;
28import android.content.DialogInterface;
29import android.content.DialogInterface.OnClickListener;
30import android.net.Uri;
31import android.os.AsyncTask;
32import android.os.Bundle;
33import android.provider.DocumentsContract;
34import android.support.annotation.Nullable;
35import android.support.design.widget.Snackbar;
36import android.util.Log;
37import android.view.KeyEvent;
38import android.view.LayoutInflater;
39import android.view.View;
Steve McKaya1f76802016-02-25 13:34:03 -080040import android.view.inputmethod.EditorInfo;
Aga Wronska3b327ef2016-01-20 16:32:33 -080041import android.widget.EditText;
42import android.widget.TextView;
43import android.widget.TextView.OnEditorActionListener;
44
45import com.android.documentsui.BaseActivity;
46import com.android.documentsui.DocumentsApplication;
Aga Wronska4e8c7f62016-03-30 10:57:04 -070047import com.android.documentsui.Metrics;
Aga Wronska3b327ef2016-01-20 16:32:33 -080048import com.android.documentsui.R;
Aga Wronska71138722016-02-22 17:57:31 -080049import com.android.documentsui.Shared;
Aga Wronska3b327ef2016-01-20 16:32:33 -080050import com.android.documentsui.Snackbars;
Ben Kwae3aee182016-02-02 12:11:10 -080051import com.android.documentsui.model.DocumentInfo;
Aga Wronska40416802016-02-08 09:14:25 -080052
Aga Wronska3b327ef2016-01-20 16:32:33 -080053/**
54 * Dialog to rename file or directory.
55 */
Ben Kwae3aee182016-02-02 12:11:10 -080056public class RenameDocumentFragment extends DialogFragment {
Aga Wronska3b327ef2016-01-20 16:32:33 -080057 private static final String TAG_RENAME_DOCUMENT = "rename_document";
58 private DocumentInfo mDocument;
Aga Wronska71138722016-02-22 17:57:31 -080059 private EditText mEditText;
Aga Wronska3b327ef2016-01-20 16:32:33 -080060
61 public static void show(FragmentManager fm, DocumentInfo document) {
62 final RenameDocumentFragment dialog = new RenameDocumentFragment();
63 dialog.mDocument = document;
64 dialog.show(fm, TAG_RENAME_DOCUMENT);
65 }
66
Aga Wronska71138722016-02-22 17:57:31 -080067 /**
68 * Creates the dialog UI.
69 * @param savedInstanceState
70 * @return
71 */
Aga Wronska3b327ef2016-01-20 16:32:33 -080072 @Override
73 public Dialog onCreateDialog(Bundle savedInstanceState) {
74 Context context = getActivity();
75 AlertDialog.Builder builder = new AlertDialog.Builder(context);
76 LayoutInflater dialogInflater = LayoutInflater.from(builder.getContext());
77 View view = dialogInflater.inflate(R.layout.dialog_file_name, null, false);
78
Aga Wronska71138722016-02-22 17:57:31 -080079 mEditText = (EditText) view.findViewById(android.R.id.text1);
Aga Wronska3b327ef2016-01-20 16:32:33 -080080 builder.setTitle(R.string.menu_rename);
81 builder.setView(view);
82
83 builder.setPositiveButton(
84 android.R.string.ok,
85 new OnClickListener() {
86 @Override
87 public void onClick(DialogInterface dialog, int which) {
Aga Wronska71138722016-02-22 17:57:31 -080088 renameDocuments(mEditText.getText().toString());
Aga Wronska3b327ef2016-01-20 16:32:33 -080089 }
90 });
91
92 builder.setNegativeButton(android.R.string.cancel, null);
93
94 final AlertDialog dialog = builder.create();
95
Aga Wronska02c532f2016-03-02 16:00:22 -080096 // Workaround for the problem - virtual keyboard doesn't show on the phone.
97 Shared.ensureKeyboardPresent(context, dialog);
98
Aga Wronska71138722016-02-22 17:57:31 -080099 mEditText.setOnEditorActionListener(
Aga Wronska3b327ef2016-01-20 16:32:33 -0800100 new OnEditorActionListener() {
101 @Override
102 public boolean onEditorAction(
103 TextView view, int actionId, @Nullable KeyEvent event) {
Aga Wronska40416802016-02-08 09:14:25 -0800104 if ((actionId == EditorInfo.IME_ACTION_DONE) || (event != null
Aga Wronska3b327ef2016-01-20 16:32:33 -0800105 && event.getKeyCode() == KeyEvent.KEYCODE_ENTER
Aga Wronska40416802016-02-08 09:14:25 -0800106 && event.hasNoModifiers())) {
Aga Wronska71138722016-02-22 17:57:31 -0800107 renameDocuments(mEditText.getText().toString());
Aga Wronska3b327ef2016-01-20 16:32:33 -0800108 dialog.dismiss();
109 return true;
110 }
111 return false;
112 }
113 });
Aga Wronska3b327ef2016-01-20 16:32:33 -0800114 return dialog;
115 }
116
Aga Wronska40416802016-02-08 09:14:25 -0800117 /**
Aga Wronska71138722016-02-22 17:57:31 -0800118 * Sets/Restores the data.
119 * @param savedInstanceState
120 * @return
121 */
122 @Override
123 public void onActivityCreated(Bundle savedInstanceState) {
124 super.onActivityCreated(savedInstanceState);
125
126 if(savedInstanceState == null) {
127 // Fragment created for the first time, we set the text.
128 // mDocument value was set in show
129 mEditText.setText(mDocument.displayName);
130 }
131 else {
132 // Fragment restored, text was restored automatically.
133 // mDocument value needs to be restored.
134 mDocument = savedInstanceState.getParcelable(Shared.EXTRA_DOC);
135 }
136 // Do selection in both cases, because we cleared it.
137 selectFileName(mEditText);
138 }
139
140 @Override
141 public void onSaveInstanceState(Bundle outState) {
142 // Clear selection before storing state and restore it manually,
143 // because otherwise after rotation selection is displayed with cut/copy menu visible :/
144 clearFileNameSelection(mEditText);
145
146 super.onSaveInstanceState(outState);
147
148 outState.putParcelable(Shared.EXTRA_DOC, mDocument);
149 }
150
151 /**
Aga Wronska40416802016-02-08 09:14:25 -0800152 * Validates if string is a proper document name.
153 * Checks if string is not empty. More rules might be added later.
154 * @param docName string representing document name
155 * @returns true if string is a valid name.
156 **/
157 private boolean isValidDocumentName(String docName) {
158 return !docName.isEmpty();
159 }
160
161 /**
162 * Fills text field with the file name and selects the name without extension.
163 *
164 * @param editText text field to be filled
Aga Wronska40416802016-02-08 09:14:25 -0800165 */
Aga Wronska71138722016-02-22 17:57:31 -0800166 private void selectFileName(EditText editText) {
167 String text = editText.getText().toString();
168 int separatorIndex = text.indexOf(".");
Aga Wronska568b3b32016-02-23 10:49:29 -0800169 editText.setSelection(0,
170 (separatorIndex == -1 || mDocument.isDirectory()) ? text.length() : separatorIndex);
Aga Wronska71138722016-02-22 17:57:31 -0800171 }
172
173 /**
174 * Clears selection in text field.
175 *
176 * @param editText text field to be cleared.
177 */
178 private void clearFileNameSelection(EditText editText) {
179 editText.setSelection(0, 0);
Aga Wronska40416802016-02-08 09:14:25 -0800180 }
181
Aga Wronska3b327ef2016-01-20 16:32:33 -0800182 private void renameDocuments(String newDisplayName) {
183 BaseActivity activity = (BaseActivity) getActivity();
184
Aga Wronska40416802016-02-08 09:14:25 -0800185 if (isValidDocumentName(newDisplayName)) {
186 new RenameDocumentsTask(activity, newDisplayName).execute(mDocument);
187 } else {
188 Log.w(TAG, "Failed to rename file - invalid name:" + newDisplayName);
189 Snackbars.makeSnackbar(getActivity(), R.string.rename_error,
190 Snackbar.LENGTH_SHORT).show();
191 }
192
Aga Wronska3b327ef2016-01-20 16:32:33 -0800193 }
194
195 private class RenameDocumentsTask extends AsyncTask<DocumentInfo, Void, DocumentInfo> {
196 private final BaseActivity mActivity;
197 private final String mNewDisplayName;
198
199 public RenameDocumentsTask(BaseActivity activity, String newDisplayName) {
200 mActivity = activity;
201 mNewDisplayName = newDisplayName;
202 }
203
204 @Override
205 protected void onPreExecute() {
206 mActivity.setPending(true);
207 }
208
209 @Override
210 protected DocumentInfo doInBackground(DocumentInfo... document) {
Steve McKaya1f76802016-02-25 13:34:03 -0800211 assert(document.length == 1);
Aga Wronska3b327ef2016-01-20 16:32:33 -0800212 final ContentResolver resolver = mActivity.getContentResolver();
213 ContentProviderClient client = null;
214
215 try {
216 client = DocumentsApplication.acquireUnstableProviderOrThrow(
217 resolver, document[0].derivedUri.getAuthority());
218 Uri newUri = DocumentsContract.renameDocument(
219 client, document[0].derivedUri, mNewDisplayName);
220 return DocumentInfo.fromUri(resolver, newUri);
221 } catch (Exception e) {
222 Log.w(TAG, "Failed to rename file", e);
223 return null;
224 } finally {
225 ContentProviderClient.releaseQuietly(client);
226 }
227 }
228
229 @Override
230 protected void onPostExecute(DocumentInfo result) {
Aga Wronska4e8c7f62016-03-30 10:57:04 -0700231 if (result != null) {
232 Metrics.logRenameFileOperation(getContext());
233 } else {
Aga Wronska3b327ef2016-01-20 16:32:33 -0800234 Snackbars.makeSnackbar(mActivity, R.string.rename_error, Snackbar.LENGTH_SHORT)
235 .show();
Aga Wronska4e8c7f62016-03-30 10:57:04 -0700236 Metrics.logRenameFileError(getContext());
Aga Wronska3b327ef2016-01-20 16:32:33 -0800237 }
Aga Wronska3b327ef2016-01-20 16:32:33 -0800238 mActivity.setPending(false);
239 }
240 }
241}