summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calldetails/ReportDialogFragment.java
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-06-19 11:26:01 -0700
committerEric Erfanian <erfanian@google.com>2017-06-19 11:30:45 -0700
commit2f1c7586bcce334ca69022eb8dc6d8965ceb6a05 (patch)
treebf00ada449ee3de31ec983a14e84159200aa18c2 /java/com/android/dialer/calldetails/ReportDialogFragment.java
parent3d0ca68e466482971a4cf46576c50cb2bd42bcb5 (diff)
Update AOSP Dialer source from internal google3 repository at
cl/159428781. Test: make, treehugger This CL updates the AOSP Dialer source with all the changes that have gone into the private google3 repository. This includes all the changes from cl/152373142 (4/06/2017) to cl/159428781 (6/19/2017). This goal of these drops is to keep the AOSP source in sync with the internal google3 repository. Currently these sync are done by hand with very minor modifications to the internal source code. See the Android.mk file for list of modifications. Our current goal is to do frequent drops (daily if possible) and eventually switched to an automated process. Change-Id: Ie60a84b3936efd0ea3d95d7c86bf96d2b1663030
Diffstat (limited to 'java/com/android/dialer/calldetails/ReportDialogFragment.java')
-rw-r--r--java/com/android/dialer/calldetails/ReportDialogFragment.java161
1 files changed, 161 insertions, 0 deletions
diff --git a/java/com/android/dialer/calldetails/ReportDialogFragment.java b/java/com/android/dialer/calldetails/ReportDialogFragment.java
new file mode 100644
index 000000000..c27bd611b
--- /dev/null
+++ b/java/com/android/dialer/calldetails/ReportDialogFragment.java
@@ -0,0 +1,161 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.dialer.calldetails;
+
+import android.app.AlertDialog;
+import android.app.Dialog;
+import android.app.DialogFragment;
+import android.content.Context;
+import android.content.DialogInterface;
+import android.os.Bundle;
+import android.support.annotation.Nullable;
+import android.support.v4.util.Pair;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.widget.TextView;
+import android.widget.Toast;
+import com.android.dialer.common.LogUtil;
+import com.android.dialer.common.concurrent.DialerExecutor.SuccessListener;
+import com.android.dialer.common.concurrent.DialerExecutor.Worker;
+import com.android.dialer.common.concurrent.DialerExecutorComponent;
+import com.android.dialer.phonenumbercache.CachedNumberLookupService;
+import com.android.dialer.phonenumbercache.CachedNumberLookupService.CachedContactInfo;
+import com.android.dialer.phonenumbercache.PhoneNumberCache;
+
+/** Dialog for reporting an inaccurate caller id information in {@link CallDetailsActivity}. */
+public class ReportDialogFragment extends DialogFragment {
+
+ private static final String KEY_NUMBER = "number";
+ private TextView name;
+ private TextView numberView;
+
+ private CachedNumberLookupService cachedNumberLookupService;
+ private CachedNumberLookupService.CachedContactInfo info;
+ private String number;
+
+ public static ReportDialogFragment newInstance(String number) {
+ ReportDialogFragment fragment = new ReportDialogFragment();
+ Bundle bundle = new Bundle();
+ bundle.putString(KEY_NUMBER, number);
+ fragment.setArguments(bundle);
+ return fragment;
+ }
+
+ @Override
+ public void onCreate(@Nullable Bundle bundle) {
+ super.onCreate(bundle);
+ setRetainInstance(true);
+ number = getArguments().getString(KEY_NUMBER);
+ cachedNumberLookupService = PhoneNumberCache.get(getContext()).getCachedNumberLookupService();
+ }
+
+ @Override
+ public Dialog onCreateDialog(Bundle savedInstanceState) {
+ LayoutInflater inflater = getActivity().getLayoutInflater();
+ View view = inflater.inflate(R.layout.caller_id_report_dialog, null, false);
+ name = view.findViewById(R.id.name);
+ numberView = view.findViewById(R.id.number);
+
+ lookupContactInfo(number);
+
+ AlertDialog reportDialog =
+ new AlertDialog.Builder(getActivity())
+ .setTitle(R.string.report_caller_id_dialog_title)
+ .setPositiveButton(android.R.string.ok, (dialog, which) -> positiveClick(dialog))
+ .setNegativeButton(android.R.string.cancel, (dialog, which) -> dialog.dismiss())
+ .setView(view)
+ .create();
+
+ reportDialog.setOnShowListener(dialog -> onShow(getContext(), reportDialog));
+ return reportDialog;
+ }
+
+ private void positiveClick(DialogInterface dialog) {
+ startReportCallerIdWorker();
+ dialog.dismiss();
+ }
+
+ private static void onShow(Context context, AlertDialog dialog) {
+ int buttonTextColor = context.getColor(R.color.dialer_theme_color);
+ dialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(buttonTextColor);
+ dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(buttonTextColor);
+ }
+
+ private void lookupContactInfo(String number) {
+ Worker<String, CachedContactInfo> worker =
+ number1 -> cachedNumberLookupService.lookupCachedContactFromNumber(getContext(), number1);
+ SuccessListener<CachedContactInfo> successListener = this::setCachedContactInfo;
+ DialerExecutorComponent.get(getContext())
+ .dialerExecutorFactory()
+ .createUiTaskBuilder(getFragmentManager(), "lookup_contact_info", worker)
+ .onSuccess(successListener)
+ .build()
+ .executeParallel(number);
+ }
+
+ private void setCachedContactInfo(CachedContactInfo info) {
+ this.info = info;
+ if (info != null) {
+ name.setText(info.getContactInfo().name);
+ numberView.setText(info.getContactInfo().number);
+ } else {
+ numberView.setText(number);
+ name.setVisibility(View.GONE);
+ }
+ }
+
+ private void startReportCallerIdWorker() {
+ Worker<Context, Pair<Context, Boolean>> worker = this::reportCallerId;
+ SuccessListener<Pair<Context, Boolean>> successListener = this::onReportCallerId;
+ DialerExecutorComponent.get(getContext())
+ .dialerExecutorFactory()
+ .createUiTaskBuilder(getFragmentManager(), "report_caller_id", worker)
+ .onSuccess(successListener)
+ .build()
+ .executeParallel(getActivity());
+ }
+
+ private Pair<Context, Boolean> reportCallerId(Context context) {
+ if (cachedNumberLookupService.reportAsInvalid(context, info)) {
+ info.getContactInfo().isBadData = true;
+ cachedNumberLookupService.addContact(context, info);
+ LogUtil.d("ReportUploadTask.doInBackground", "Contact reported.");
+ return new Pair<>(context, true);
+ } else {
+ return new Pair<>(context, false);
+ }
+ }
+
+ private void onReportCallerId(Pair<Context, Boolean> output) {
+ Context context = output.first;
+ boolean wasReport = output.second;
+ if (wasReport) {
+ Toast.makeText(context, R.string.report_caller_id_toast, Toast.LENGTH_SHORT).show();
+ } else {
+ Toast.makeText(context, R.string.report_caller_id_failed, Toast.LENGTH_SHORT).show();
+ }
+ }
+
+ @Override
+ public void onDestroyView() {
+ if (getDialog() != null && getRetainInstance()) {
+ // Prevent dialog from dismissing on rotate.
+ getDialog().setDismissMessage(null);
+ }
+ super.onDestroyView();
+ }
+}