blob: a3f56b74cbf7f235df83262bcebf4e16e4d2522b [file] [log] [blame]
Yorke Lee33501632014-03-17 19:24:12 -07001/*
2 * Copyright (C) 2014 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
Tyler Gunn7cc70b42014-09-12 22:17:27 -070017package com.android.server.telecom;
Yorke Lee33501632014-03-17 19:24:12 -070018
Svetoslav973c4e12015-04-29 14:13:51 -070019import android.app.AppOpsManager;
Ihab Awad8d5d9dd2015-03-12 11:11:06 -070020import com.android.server.telecom.components.UserCallIntentProcessor;
21
Yorke Lee33501632014-03-17 19:24:12 -070022import android.app.Activity;
Yorke Lee33501632014-03-17 19:24:12 -070023import android.content.BroadcastReceiver;
24import android.content.Context;
Yorke Lee33501632014-03-17 19:24:12 -070025import android.content.Intent;
Yorke Lee33501632014-03-17 19:24:12 -070026import android.content.res.Resources;
Yorke Lee33501632014-03-17 19:24:12 -070027import android.net.Uri;
Yorke Leee4a9c412014-11-14 16:59:42 -080028import android.os.Trace;
Yorke Lee33501632014-03-17 19:24:12 -070029import android.os.UserHandle;
Tyler Gunn7cc70b42014-09-12 22:17:27 -070030import android.telecom.GatewayInfo;
31import android.telecom.PhoneAccount;
32import android.telecom.TelecomManager;
33import android.telecom.VideoProfile;
Yorke Leed7255872014-08-25 15:03:51 -070034import android.telephony.DisconnectCause;
Yorke Lee33501632014-03-17 19:24:12 -070035import android.telephony.PhoneNumberUtils;
Yorke Lee33501632014-03-17 19:24:12 -070036import android.text.TextUtils;
Yorke Lee33501632014-03-17 19:24:12 -070037
Tyler Gunn91d43cf2014-09-17 12:19:39 -070038// TODO: Needed for move to system service: import com.android.internal.R;
39
Yorke Lee33501632014-03-17 19:24:12 -070040/**
41 * OutgoingCallIntentBroadcaster receives CALL and CALL_PRIVILEGED Intents, and broadcasts the
42 * ACTION_NEW_OUTGOING_CALL intent. ACTION_NEW_OUTGOING_CALL is an ordered broadcast intent which
43 * contains the phone number being dialed. Applications can use this intent to (1) see which numbers
44 * are being dialed, (2) redirect a call (change the number being dialed), or (3) prevent a call
45 * from being placed.
46 *
47 * After the other applications have had a chance to see the ACTION_NEW_OUTGOING_CALL intent, it
48 * finally reaches the {@link NewOutgoingCallBroadcastIntentReceiver}.
49 *
50 * Calls where no number is present (like for a CDMA "empty flash" or a nonexistent voicemail
51 * number) are exempt from being broadcast.
52 *
53 * Calls to emergency numbers are still broadcast for informative purposes. The call is placed
54 * prior to sending ACTION_NEW_OUTGOING_CALL and cannot be redirected nor prevented.
55 */
56class NewOutgoingCallIntentBroadcaster {
Yorke Lee33501632014-03-17 19:24:12 -070057 private static final String EXTRA_ACTUAL_NUMBER_TO_DIAL =
Tyler Gunn7cc70b42014-09-12 22:17:27 -070058 "android.telecom.extra.ACTUAL_NUMBER_TO_DIAL";
Yorke Lee33501632014-03-17 19:24:12 -070059
60 /**
61 * Legacy string constants used to retrieve gateway provider extras from intents. These still
62 * need to be copied from the source call intent to the destination intent in order to
63 * support third party gateway providers that are still using old string constants in
64 * Telephony.
65 */
66 public static final String EXTRA_GATEWAY_PROVIDER_PACKAGE =
67 "com.android.phone.extra.GATEWAY_PROVIDER_PACKAGE";
68 public static final String EXTRA_GATEWAY_URI = "com.android.phone.extra.GATEWAY_URI";
Santos Cordon571f0732014-06-25 18:13:15 -070069 public static final String EXTRA_GATEWAY_ORIGINAL_URI =
70 "com.android.phone.extra.GATEWAY_ORIGINAL_URI";
Yorke Lee33501632014-03-17 19:24:12 -070071
72 private final CallsManager mCallsManager;
Nancy Chen0d3076c2014-07-30 14:45:44 -070073 private final Call mCall;
Yorke Lee33501632014-03-17 19:24:12 -070074 private final Intent mIntent;
Tyler Gunn91d43cf2014-09-17 12:19:39 -070075 private final Context mContext;
76
Yorke Leecce5deb2014-06-18 11:27:42 -070077 /*
78 * Whether or not the outgoing call intent originated from the default phone application. If
79 * so, it will be allowed to make emergency calls, even with the ACTION_CALL intent.
80 */
81 private final boolean mIsDefaultOrSystemPhoneApp;
Yorke Lee33501632014-03-17 19:24:12 -070082
Tyler Gunn91d43cf2014-09-17 12:19:39 -070083 NewOutgoingCallIntentBroadcaster(Context context, CallsManager callsManager, Call call,
84 Intent intent, boolean isDefaultPhoneApp) {
85 mContext = context;
Yorke Lee33501632014-03-17 19:24:12 -070086 mCallsManager = callsManager;
Nancy Chen0d3076c2014-07-30 14:45:44 -070087 mCall = call;
Yorke Lee33501632014-03-17 19:24:12 -070088 mIntent = intent;
Yorke Leecce5deb2014-06-18 11:27:42 -070089 mIsDefaultOrSystemPhoneApp = isDefaultPhoneApp;
Yorke Lee33501632014-03-17 19:24:12 -070090 }
91
92 /**
93 * Processes the result of the outgoing call broadcast intent, and performs callbacks to
94 * the OutgoingCallIntentBroadcasterListener as necessary.
95 */
96 private class NewOutgoingCallBroadcastIntentReceiver extends BroadcastReceiver {
97
98 @Override
99 public void onReceive(Context context, Intent intent) {
Yorke Leee4a9c412014-11-14 16:59:42 -0800100 Trace.beginSection("onReceiveNewOutgoingCallBroadcast");
Sailesh Nepalb3308752014-04-07 14:12:47 -0700101 Log.v(this, "onReceive: %s", intent);
Yorke Lee33501632014-03-17 19:24:12 -0700102
103 // Once the NEW_OUTGOING_CALL broadcast is finished, the resultData is used as the
104 // actual number to call. (If null, no call will be placed.)
Nancy Chen308ab8b2014-09-02 16:18:30 -0700105 String resultNumber = getResultData();
Santos Cordon23da3c22015-03-12 11:36:40 -0700106 Log.i(this, "Received new-outgoing-call-broadcast for %s with data %s", mCall,
107 Log.pii(resultNumber));
Yorke Lee33501632014-03-17 19:24:12 -0700108
Santos Cordon2d0b3312014-08-15 15:04:17 -0700109 boolean endEarly = false;
Nancy Chen308ab8b2014-09-02 16:18:30 -0700110 if (resultNumber == null) {
Yorke Lee33501632014-03-17 19:24:12 -0700111 Log.v(this, "Call cancelled (null number), returning...");
Santos Cordon2d0b3312014-08-15 15:04:17 -0700112 endEarly = true;
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700113 } else if (PhoneNumberUtils.isPotentialLocalEmergencyNumber(mContext, resultNumber)) {
Nancy Chen308ab8b2014-09-02 16:18:30 -0700114 Log.w(this, "Cannot modify outgoing call to emergency number %s.", resultNumber);
Santos Cordon2d0b3312014-08-15 15:04:17 -0700115 endEarly = true;
116 }
117
118 if (endEarly) {
119 if (mCall != null) {
Santos Cordoncf5b2912014-11-05 21:57:54 -0800120 mCall.disconnect(true /* wasViaNewOutgoingCall */);
Santos Cordon2d0b3312014-08-15 15:04:17 -0700121 }
Yorke Leee4a9c412014-11-14 16:59:42 -0800122 Trace.endSection();
Yorke Lee33501632014-03-17 19:24:12 -0700123 return;
124 }
125
Nancy Chend75fabf2014-09-04 13:36:08 -0700126 Uri resultHandleUri = Uri.fromParts(PhoneNumberUtils.isUriNumber(resultNumber) ?
Jay Shrauner56a76b72014-09-05 14:41:48 -0700127 PhoneAccount.SCHEME_SIP : PhoneAccount.SCHEME_TEL, resultNumber, null);
Yorke Lee33501632014-03-17 19:24:12 -0700128
129 Uri originalUri = mIntent.getData();
130
Nancy Chen308ab8b2014-09-02 16:18:30 -0700131 if (originalUri.getSchemeSpecificPart().equals(resultNumber)) {
132 Log.v(this, "Call number unmodified after new outgoing call intent broadcast.");
Yorke Lee33501632014-03-17 19:24:12 -0700133 } else {
134 Log.v(this, "Retrieved modified handle after outgoing call intent broadcast: "
135 + "Original: %s, Modified: %s",
136 Log.pii(originalUri),
137 Log.pii(resultHandleUri));
138 }
139
140 GatewayInfo gatewayInfo = getGateWayInfoFromIntent(intent, resultHandleUri);
Nancy Chenbc9ef172014-08-15 17:11:57 -0700141 mCallsManager.placeOutgoingCall(mCall, resultHandleUri, gatewayInfo,
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700142 mIntent.getBooleanExtra(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE,
Tyler Gunnc4abd912014-07-08 14:22:10 -0700143 false),
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700144 mIntent.getIntExtra(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE,
Ihab Awad6fb37c82014-08-07 19:48:57 -0700145 VideoProfile.VideoState.AUDIO_ONLY));
Yorke Leee4a9c412014-11-14 16:59:42 -0800146 Trace.endSection();
Yorke Lee33501632014-03-17 19:24:12 -0700147 }
148 }
149
150 /**
151 * Processes the supplied intent and starts the outgoing call broadcast process relevant to the
152 * intent.
153 *
154 * This method will handle three kinds of actions:
155 *
156 * - CALL (intent launched by all third party dialers)
157 * - CALL_PRIVILEGED (intent launched by system apps e.g. system Dialer, voice Dialer)
158 * - CALL_EMERGENCY (intent launched by lock screen emergency dialer)
Yorke Leecce5deb2014-06-18 11:27:42 -0700159 *
Ihab Awad8d5d9dd2015-03-12 11:11:06 -0700160 * @return {@link DisconnectCause#NOT_DISCONNECTED} if the call succeeded, and an appropriate
161 * {@link DisconnectCause} if the call did not, describing why it failed.
Yorke Lee33501632014-03-17 19:24:12 -0700162 */
Yorke Leed7255872014-08-25 15:03:51 -0700163 int processIntent() {
Yorke Lee33501632014-03-17 19:24:12 -0700164 Log.v(this, "Processing call intent in OutgoingCallIntentBroadcaster.");
165
Yorke Lee33501632014-03-17 19:24:12 -0700166 Intent intent = mIntent;
Nancy Chen308ab8b2014-09-02 16:18:30 -0700167 String action = intent.getAction();
168 final Uri handle = intent.getData();
Yorke Lee33501632014-03-17 19:24:12 -0700169
Nancy Chen308ab8b2014-09-02 16:18:30 -0700170 if (handle == null) {
171 Log.w(this, "Empty handle obtained from the call intent.");
172 return DisconnectCause.INVALID_NUMBER;
173 }
Yorke Lee33501632014-03-17 19:24:12 -0700174
Jay Shrauner56a76b72014-09-05 14:41:48 -0700175 boolean isVoicemailNumber = PhoneAccount.SCHEME_VOICEMAIL.equals(handle.getScheme());
Nancy Chen308ab8b2014-09-02 16:18:30 -0700176 if (isVoicemailNumber) {
Yorke Leefe1ce0a2014-11-20 08:59:46 -0800177 if (Intent.ACTION_CALL.equals(action)
178 || Intent.ACTION_CALL_PRIVILEGED.equals(action)) {
Nancy Chen308ab8b2014-09-02 16:18:30 -0700179 // Voicemail calls will be handled directly by the telephony connection manager
180 Log.i(this, "Placing call immediately instead of waiting for "
181 + " OutgoingCallBroadcastReceiver: %s", intent);
182
183 boolean speakerphoneOn = mIntent.getBooleanExtra(
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700184 TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, false);
Nancy Chen308ab8b2014-09-02 16:18:30 -0700185 mCallsManager.placeOutgoingCall(mCall, handle, null, speakerphoneOn,
186 VideoProfile.VideoState.AUDIO_ONLY);
187
188 return DisconnectCause.NOT_DISCONNECTED;
Yorke Leed7255872014-08-25 15:03:51 -0700189 } else {
Nancy Chen308ab8b2014-09-02 16:18:30 -0700190 Log.i(this, "Unhandled intent %s. Ignoring and not placing call.", intent);
191 return DisconnectCause.OUTGOING_CANCELED;
Yorke Leed7255872014-08-25 15:03:51 -0700192 }
Yorke Lee33501632014-03-17 19:24:12 -0700193 }
194
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700195 String number = PhoneNumberUtils.getNumberFromIntent(intent, mContext);
Nancy Chen308ab8b2014-09-02 16:18:30 -0700196 if (TextUtils.isEmpty(number)) {
197 Log.w(this, "Empty number obtained from the call intent.");
198 return DisconnectCause.NO_PHONE_NUMBER_SUPPLIED;
Yorke Lee33501632014-03-17 19:24:12 -0700199 }
200
Nancy Chen308ab8b2014-09-02 16:18:30 -0700201 boolean isUriNumber = PhoneNumberUtils.isUriNumber(number);
202 if (!isUriNumber) {
203 number = PhoneNumberUtils.convertKeypadLettersToDigits(number);
204 number = PhoneNumberUtils.stripSeparators(number);
205 }
206
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700207 final boolean isPotentialEmergencyNumber = isPotentialEmergencyNumber(number);
Yorke Lee33501632014-03-17 19:24:12 -0700208 Log.v(this, "isPotentialEmergencyNumber = %s", isPotentialEmergencyNumber);
209
210 rewriteCallIntentAction(intent, isPotentialEmergencyNumber);
Yorke Leee05257c2014-09-08 18:08:44 -0700211 action = intent.getAction();
Yorke Lee33501632014-03-17 19:24:12 -0700212 // True for certain types of numbers that are not intended to be intercepted or modified
213 // by third parties (e.g. emergency numbers).
214 boolean callImmediately = false;
215
Yorke Lee33501632014-03-17 19:24:12 -0700216 if (Intent.ACTION_CALL.equals(action)) {
217 if (isPotentialEmergencyNumber) {
Yorke Leecce5deb2014-06-18 11:27:42 -0700218 if (!mIsDefaultOrSystemPhoneApp) {
219 Log.w(this, "Cannot call potential emergency number %s with CALL Intent %s "
Nancy Chen308ab8b2014-09-02 16:18:30 -0700220 + "unless caller is system or default dialer.", number, intent);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700221 launchSystemDialer(intent.getData());
Yorke Leed7255872014-08-25 15:03:51 -0700222 return DisconnectCause.OUTGOING_CANCELED;
Yorke Leecce5deb2014-06-18 11:27:42 -0700223 } else {
224 callImmediately = true;
225 }
Yorke Lee33501632014-03-17 19:24:12 -0700226 }
Yorke Lee33501632014-03-17 19:24:12 -0700227 } else if (Intent.ACTION_CALL_EMERGENCY.equals(action)) {
228 if (!isPotentialEmergencyNumber) {
229 Log.w(this, "Cannot call non-potential-emergency number %s with EMERGENCY_CALL "
Nancy Chen308ab8b2014-09-02 16:18:30 -0700230 + "Intent %s.", number, intent);
Yorke Leed7255872014-08-25 15:03:51 -0700231 return DisconnectCause.OUTGOING_CANCELED;
Yorke Lee33501632014-03-17 19:24:12 -0700232 }
233 callImmediately = true;
234 } else {
235 Log.w(this, "Unhandled Intent %s. Ignoring and not placing call.", intent);
Yorke Leed7255872014-08-25 15:03:51 -0700236 return DisconnectCause.INVALID_NUMBER;
Yorke Lee33501632014-03-17 19:24:12 -0700237 }
238
239 if (callImmediately) {
240 Log.i(this, "Placing call immediately instead of waiting for "
241 + " OutgoingCallBroadcastReceiver: %s", intent);
Jay Shrauner56a76b72014-09-05 14:41:48 -0700242 String scheme = isUriNumber ? PhoneAccount.SCHEME_SIP : PhoneAccount.SCHEME_TEL;
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700243 boolean speakerphoneOn = mIntent.getBooleanExtra(
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700244 TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, false);
Sailesh Nepal905dfba2014-07-14 08:20:41 -0700245 int videoState = mIntent.getIntExtra(
Tyler Gunn7cc70b42014-09-12 22:17:27 -0700246 TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE,
Ihab Awad6fb37c82014-08-07 19:48:57 -0700247 VideoProfile.VideoState.AUDIO_ONLY);
Nancy Chen308ab8b2014-09-02 16:18:30 -0700248 mCallsManager.placeOutgoingCall(mCall, Uri.fromParts(scheme, number, null), null,
Nancy Chen0d3076c2014-07-30 14:45:44 -0700249 speakerphoneOn, videoState);
Yorke Lee33501632014-03-17 19:24:12 -0700250
251 // Don't return but instead continue and send the ACTION_NEW_OUTGOING_CALL broadcast
252 // so that third parties can still inspect (but not intercept) the outgoing call. When
253 // the broadcast finally reaches the OutgoingCallBroadcastReceiver, we'll know not to
254 // initiate the call again because of the presence of the EXTRA_ALREADY_CALLED extra.
255 }
256
Santos Cordon23da3c22015-03-12 11:36:40 -0700257 Log.i(this, "Sending NewOutgoingCallBroadcast for %s", mCall);
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700258 broadcastIntent(intent, number, !callImmediately);
Yorke Leed7255872014-08-25 15:03:51 -0700259 return DisconnectCause.NOT_DISCONNECTED;
Yorke Lee33501632014-03-17 19:24:12 -0700260 }
261
262 /**
263 * Sends a new outgoing call ordered broadcast so that third party apps can cancel the
264 * placement of the call or redirect it to a different number.
265 *
266 * @param originalCallIntent The original call intent.
Nancy Chen308ab8b2014-09-02 16:18:30 -0700267 * @param number Call number that was stored in the original call intent.
Yorke Lee33501632014-03-17 19:24:12 -0700268 * @param receiverRequired Whether or not the result from the ordered broadcast should be
269 * processed using a {@link NewOutgoingCallIntentBroadcaster}.
270 */
271 private void broadcastIntent(
272 Intent originalCallIntent,
Nancy Chen308ab8b2014-09-02 16:18:30 -0700273 String number,
Yorke Lee33501632014-03-17 19:24:12 -0700274 boolean receiverRequired) {
275 Intent broadcastIntent = new Intent(Intent.ACTION_NEW_OUTGOING_CALL);
Nancy Chen308ab8b2014-09-02 16:18:30 -0700276 if (number != null) {
277 broadcastIntent.putExtra(Intent.EXTRA_PHONE_NUMBER, number);
Yorke Lee33501632014-03-17 19:24:12 -0700278 }
279
280 // Force receivers of this broadcast intent to run at foreground priority because we
281 // want to finish processing the broadcast intent as soon as possible.
282 broadcastIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
283 Log.v(this, "Broadcasting intent: %s.", broadcastIntent);
284
Nancy Chen77d2d0e2014-06-24 12:06:03 -0700285 checkAndCopyProviderExtras(originalCallIntent, broadcastIntent);
Yorke Lee33501632014-03-17 19:24:12 -0700286
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700287 mContext.sendOrderedBroadcastAsUser(
Yorke Lee33501632014-03-17 19:24:12 -0700288 broadcastIntent,
Yorke Lee6dc1c752014-09-23 18:50:35 -0700289 UserHandle.CURRENT,
Svetoslav973c4e12015-04-29 14:13:51 -0700290 android.Manifest.permission.PROCESS_OUTGOING_CALLS,
291 AppOpsManager.OP_PROCESS_OUTGOING_CALLS,
Yorke Lee33501632014-03-17 19:24:12 -0700292 receiverRequired ? new NewOutgoingCallBroadcastIntentReceiver() : null,
293 null, // scheduler
294 Activity.RESULT_OK, // initialCode
Nancy Chen308ab8b2014-09-02 16:18:30 -0700295 number, // initialData: initial value for the result data (number to be modified)
Yorke Lee33501632014-03-17 19:24:12 -0700296 null); // initialExtras
297 }
298
299 /**
300 * Copy all the expected extras set when a 3rd party gateway provider is to be used, from the
301 * source intent to the destination one.
302 *
303 * @param src Intent which may contain the provider's extras.
304 * @param dst Intent where a copy of the extras will be added if applicable.
305 */
Nancy Chen77d2d0e2014-06-24 12:06:03 -0700306 public void checkAndCopyProviderExtras(Intent src, Intent dst) {
307 if (src == null) {
308 return;
309 }
Yorke Lee33501632014-03-17 19:24:12 -0700310 if (hasGatewayProviderExtras(src)) {
311 dst.putExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE,
312 src.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE));
313 dst.putExtra(EXTRA_GATEWAY_URI,
314 src.getStringExtra(EXTRA_GATEWAY_URI));
315 Log.d(this, "Found and copied gateway provider extras to broadcast intent.");
316 return;
317 }
318
Nancy Chen77d2d0e2014-06-24 12:06:03 -0700319 Log.d(this, "No provider extras found in call intent.");
Yorke Lee33501632014-03-17 19:24:12 -0700320 }
321
322 /**
323 * Check if valid gateway provider information is stored as extras in the intent
324 *
325 * @param intent to check for
326 * @return true if the intent has all the gateway information extras needed.
327 */
328 private boolean hasGatewayProviderExtras(Intent intent) {
Yorke Lee33501632014-03-17 19:24:12 -0700329 final String name = intent.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE);
330 final String uriString = intent.getStringExtra(EXTRA_GATEWAY_URI);
331
332 return !TextUtils.isEmpty(name) && !TextUtils.isEmpty(uriString);
333 }
334
335 private static Uri getGatewayUriFromString(String gatewayUriString) {
336 return TextUtils.isEmpty(gatewayUriString) ? null : Uri.parse(gatewayUriString);
337 }
338
339 /**
340 * Extracts gateway provider information from a provided intent..
341 *
342 * @param intent to extract gateway provider information from.
343 * @param trueHandle The actual call handle that the user is trying to dial
344 * @return GatewayInfo object containing extracted gateway provider information as well as
345 * the actual handle the user is trying to dial.
346 */
347 public static GatewayInfo getGateWayInfoFromIntent(Intent intent, Uri trueHandle) {
348 if (intent == null) {
349 return null;
350 }
351
352 // Check if gateway extras are present.
353 String gatewayPackageName = intent.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE);
354 Uri gatewayUri = getGatewayUriFromString(intent.getStringExtra(EXTRA_GATEWAY_URI));
355 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) {
356 return new GatewayInfo(gatewayPackageName, gatewayUri, trueHandle);
357 }
358
359 return null;
360 }
361
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700362 private void launchSystemDialer(Uri handle) {
Yorke Lee33501632014-03-17 19:24:12 -0700363 Intent systemDialerIntent = new Intent();
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700364 final Resources resources = mContext.getResources();
Yorke Lee33501632014-03-17 19:24:12 -0700365 systemDialerIntent.setClassName(
366 resources.getString(R.string.ui_default_package),
367 resources.getString(R.string.dialer_default_class));
368 systemDialerIntent.setAction(Intent.ACTION_DIAL);
369 systemDialerIntent.setData(handle);
370 systemDialerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
371 Log.v(this, "calling startActivity for default dialer: %s", systemDialerIntent);
Yorke Lee39d94c12014-10-08 17:21:28 -0700372 mContext.startActivityAsUser(systemDialerIntent, UserHandle.CURRENT);
Yorke Lee33501632014-03-17 19:24:12 -0700373 }
374
375 /**
376 * Check whether or not this is an emergency number, in order to enforce the restriction
377 * that only the CALL_PRIVILEGED and CALL_EMERGENCY intents are allowed to make emergency
378 * calls.
379 *
380 * To prevent malicious 3rd party apps from making emergency calls by passing in an
381 * "invalid" number like "9111234" (that isn't technically an emergency number but might
382 * still result in an emergency call with some networks), we use
383 * isPotentialLocalEmergencyNumber instead of isLocalEmergencyNumber.
384 *
Nancy Chen308ab8b2014-09-02 16:18:30 -0700385 * @param number number to inspect in order to determine whether or not an emergency number
Yorke Lee33501632014-03-17 19:24:12 -0700386 * is potentially being dialed
387 * @return True if the handle is potentially an emergency number.
388 */
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700389 private boolean isPotentialEmergencyNumber(String number) {
Nancy Chen308ab8b2014-09-02 16:18:30 -0700390 Log.v(this, "Checking restrictions for number : %s", Log.pii(number));
Tyler Gunn91d43cf2014-09-17 12:19:39 -0700391 return (number != null) && PhoneNumberUtils.isPotentialLocalEmergencyNumber(mContext,
392 number);
Yorke Lee33501632014-03-17 19:24:12 -0700393 }
394
395 /**
396 * Given a call intent and whether or not the number to dial is an emergency number, rewrite
397 * the call intent action to an appropriate one.
398 *
399 * @param intent Intent to rewrite the action for
Nancy Chen308ab8b2014-09-02 16:18:30 -0700400 * @param isPotentialEmergencyNumber Whether or not the number is potentially an emergency
Yorke Lee33501632014-03-17 19:24:12 -0700401 * number.
402 */
403 private void rewriteCallIntentAction(Intent intent, boolean isPotentialEmergencyNumber) {
Yorke Lee33501632014-03-17 19:24:12 -0700404 String action = intent.getAction();
405
406 /* Change CALL_PRIVILEGED into CALL or CALL_EMERGENCY as needed. */
407 if (Intent.ACTION_CALL_PRIVILEGED.equals(action)) {
408 if (isPotentialEmergencyNumber) {
409 Log.i(this, "ACTION_CALL_PRIVILEGED is used while the number is a potential"
410 + " emergency number. Using ACTION_CALL_EMERGENCY as an action instead.");
411 action = Intent.ACTION_CALL_EMERGENCY;
412 } else {
413 action = Intent.ACTION_CALL;
414 }
415 Log.v(this, " - updating action from CALL_PRIVILEGED to %s", action);
416 intent.setAction(action);
417 }
418 }
419}