summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/app/voicemail/error/Vvm3VoicemailMessageCreator.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/app/voicemail/error/Vvm3VoicemailMessageCreator.java')
-rw-r--r--java/com/android/dialer/app/voicemail/error/Vvm3VoicemailMessageCreator.java308
1 files changed, 0 insertions, 308 deletions
diff --git a/java/com/android/dialer/app/voicemail/error/Vvm3VoicemailMessageCreator.java b/java/com/android/dialer/app/voicemail/error/Vvm3VoicemailMessageCreator.java
deleted file mode 100644
index d10c7daf8..000000000
--- a/java/com/android/dialer/app/voicemail/error/Vvm3VoicemailMessageCreator.java
+++ /dev/null
@@ -1,308 +0,0 @@
-/*
- * Copyright (C) 2016 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.app.voicemail.error;
-
-import android.content.Context;
-import android.content.Intent;
-import android.net.Uri;
-import android.os.Build.VERSION_CODES;
-import android.provider.VoicemailContract.Status;
-import android.support.annotation.NonNull;
-import android.support.annotation.Nullable;
-import android.support.annotation.RequiresApi;
-import android.view.View;
-import android.view.View.OnClickListener;
-import com.android.contacts.common.util.ContactDisplayUtils;
-import com.android.dialer.app.voicemail.error.VoicemailErrorMessage.Action;
-import com.android.dialer.logging.DialerImpression;
-import com.android.dialer.logging.Logger;
-
-/**
- * Create error message from {@link VoicemailStatus} for VVM3 visual voicemail. VVM3 is used only by
- * Verizon Wireless.
- */
-@RequiresApi(VERSION_CODES.N_MR1)
-public class Vvm3VoicemailMessageCreator {
-
- // Copied from com.android.phone.vvm.omtp.protocol.Vvm3EventHandler
- // TODO(a bug): unbundle VVM client so we can access these values directly
- public static final int VMS_DNS_FAILURE = -9001;
- public static final int VMG_DNS_FAILURE = -9002;
- public static final int SPG_DNS_FAILURE = -9003;
- public static final int VMS_NO_CELLULAR = -9004;
- public static final int VMG_NO_CELLULAR = -9005;
- public static final int SPG_NO_CELLULAR = -9006;
- public static final int VMS_TIMEOUT = -9007;
- public static final int VMG_TIMEOUT = -9008;
- public static final int STATUS_SMS_TIMEOUT = -9009;
-
- public static final int SUBSCRIBER_BLOCKED = -9990;
- public static final int UNKNOWN_USER = -9991;
- public static final int UNKNOWN_DEVICE = -9992;
- public static final int INVALID_PASSWORD = -9993;
- public static final int MAILBOX_NOT_INITIALIZED = -9994;
- public static final int SERVICE_NOT_PROVISIONED = -9995;
- public static final int SERVICE_NOT_ACTIVATED = -9996;
- public static final int USER_BLOCKED = -9998;
- public static final int IMAP_GETQUOTA_ERROR = -9997;
- public static final int IMAP_SELECT_ERROR = -9989;
- public static final int IMAP_ERROR = -9999;
-
- public static final int VMG_INTERNAL_ERROR = -101;
- public static final int VMG_DB_ERROR = -102;
- public static final int VMG_COMMUNICATION_ERROR = -103;
- public static final int SPG_URL_NOT_FOUND = -301;
-
- // Non VVM3 codes:
- public static final int VMG_UNKNOWN_ERROR = -1;
- public static final int PIN_NOT_SET = -100;
- public static final int SUBSCRIBER_UNKNOWN = -99;
-
- @Nullable
- public static VoicemailErrorMessage create(
- final Context context,
- final VoicemailStatus status,
- final VoicemailStatusReader statusReader) {
- VoicemailErrorMessage tosMessage =
- new VoicemailTosMessageCreator(context, status, statusReader).maybeCreateTosMessage();
- if (tosMessage != null) {
- return tosMessage;
- }
-
- if (VMS_DNS_FAILURE == status.dataChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_vms_dns_failure_title),
- getCustomerSupportString(context, R.string.vvm3_error_vms_dns_failure_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (VMG_DNS_FAILURE == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_vmg_dns_failure_title),
- getCustomerSupportString(context, R.string.vvm3_error_vmg_dns_failure_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (SPG_DNS_FAILURE == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_spg_dns_failure_title),
- getCustomerSupportString(context, R.string.vvm3_error_spg_dns_failure_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (VMS_NO_CELLULAR == status.dataChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_vms_no_cellular_title),
- getCustomerSupportString(context, R.string.vvm3_error_vms_no_cellular_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (VMG_NO_CELLULAR == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_vmg_no_cellular_title),
- getCustomerSupportString(context, R.string.vvm3_error_vmg_no_cellular_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (SPG_NO_CELLULAR == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_spg_no_cellular_title),
- getCustomerSupportString(context, R.string.vvm3_error_spg_no_cellular_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (VMS_TIMEOUT == status.dataChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_vms_timeout_title),
- getCustomerSupportString(context, R.string.vvm3_error_vms_timeout_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (VMG_TIMEOUT == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_vmg_timeout_title),
- getCustomerSupportString(context, R.string.vvm3_error_vmg_timeout_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (STATUS_SMS_TIMEOUT == status.notificationChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_status_sms_timeout_title),
- getCustomerSupportString(context, R.string.vvm3_error_status_sms_timeout_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (SUBSCRIBER_BLOCKED == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_subscriber_blocked_title),
- getCustomerSupportString(context, R.string.vvm3_error_subscriber_blocked_message),
- VoicemailErrorMessage.createRetryAction(context, status),
- createCallCustomerSupportAction(context));
- }
-
- if (UNKNOWN_USER == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_unknown_user_title),
- getCustomerSupportString(context, R.string.vvm3_error_unknown_user_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (UNKNOWN_DEVICE == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_unknown_device_title),
- getCustomerSupportString(context, R.string.vvm3_error_unknown_device_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (INVALID_PASSWORD == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_invalid_password_title),
- getCustomerSupportString(context, R.string.vvm3_error_invalid_password_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (MAILBOX_NOT_INITIALIZED == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_mailbox_not_initialized_title),
- getCustomerSupportString(context, R.string.vvm3_error_mailbox_not_initialized_message),
- createCallCustomerSupportAction(context));
- }
-
- if (SERVICE_NOT_PROVISIONED == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_service_not_provisioned_title),
- getCustomerSupportString(context, R.string.vvm3_error_service_not_provisioned_message),
- createCallCustomerSupportAction(context));
- }
-
- if (SERVICE_NOT_ACTIVATED == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_service_not_activated_title),
- getCustomerSupportString(context, R.string.vvm3_error_service_not_activated_message),
- createCallCustomerSupportAction(context));
- }
-
- if (USER_BLOCKED == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_user_blocked_title),
- getCustomerSupportString(context, R.string.vvm3_error_user_blocked_message),
- createCallCustomerSupportAction(context));
- }
-
- if (SUBSCRIBER_UNKNOWN == status.configurationState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_subscriber_unknown_title),
- getCustomerSupportString(context, R.string.vvm3_error_subscriber_unknown_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (IMAP_GETQUOTA_ERROR == status.dataChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_imap_getquota_error_title),
- getCustomerSupportString(context, R.string.vvm3_error_imap_getquota_error_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (IMAP_SELECT_ERROR == status.dataChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_imap_select_error_title),
- getCustomerSupportString(context, R.string.vvm3_error_imap_select_error_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (IMAP_ERROR == status.dataChannelState) {
- return new VoicemailErrorMessage(
- context.getString(R.string.vvm3_error_imap_error_title),
- getCustomerSupportString(context, R.string.vvm3_error_imap_error_message),
- VoicemailErrorMessage.createCallVoicemailAction(context, status.getPhoneAccountHandle()),
- createCallCustomerSupportAction(context));
- }
-
- if (PIN_NOT_SET == status.configurationState) {
- Logger.get(context).logImpression(DialerImpression.Type.VOICEMAIL_ALERT_SET_PIN_SHOWN);
- return new VoicemailErrorMessage(
- context.getString(R.string.voicemail_error_pin_not_set_title),
- getCustomerSupportString(context, R.string.voicemail_error_pin_not_set_message),
- VoicemailErrorMessage.createSetPinAction(context, status.getPhoneAccountHandle()));
- }
-
- return OmtpVoicemailMessageCreator.create(context, status, statusReader);
- }
-
- public static boolean isSyncBlockingError(VoicemailStatus status) {
- if (status.notificationChannelState != Status.NOTIFICATION_CHANNEL_STATE_OK) {
- return true;
- }
-
- if (status.dataChannelState != Status.DATA_CHANNEL_STATE_OK) {
- return true;
- }
-
- switch (status.configurationState) {
- case PIN_NOT_SET:
- case Status.CONFIGURATION_STATE_OK:
- // allow activation to be queued again in case it is interrupted
- case Status.CONFIGURATION_STATE_CONFIGURING:
- return false;
- default:
- return true;
- }
- }
-
- @NonNull
- private static CharSequence getCustomerSupportString(Context context, int id) {
- // TODO(twyen): get number based on the country the user is currently in.
- return ContactDisplayUtils.getTtsSpannedPhoneNumber(
- context.getResources(),
- id,
- context.getString(R.string.verizon_domestic_customer_support_display_number));
- }
-
- @NonNull
- private static Action createCallCustomerSupportAction(final Context context) {
- return new Action(
- context.getString(R.string.voicemail_action_call_customer_support),
- new OnClickListener() {
- @Override
- public void onClick(View v) {
- Intent intent =
- new Intent(
- Intent.ACTION_CALL,
- Uri.parse(
- "tel:"
- + context.getString(
- R.string.verizon_domestic_customer_support_number)));
- context.startActivity(intent);
- }
- });
- }
-}