blob: cc5116deb9d524cf636fe8758b24cb19582d08ae [file] [log] [blame]
Santos Cordona0e5f1a2014-03-31 21:43:00 -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;
Santos Cordona0e5f1a2014-03-31 21:43:00 -070018
19import android.content.BroadcastReceiver;
20import android.content.Context;
21import android.content.Intent;
22import android.os.UserHandle;
23
24/**
Tyler Gunn7cc70b42014-09-12 22:17:27 -070025 * Handles miscellaneous Telecom broadcast intents. This should be visible from outside, but
Santos Cordona0e5f1a2014-03-31 21:43:00 -070026 * should not be in the "exported" state.
27 */
Tyler Gunn7cc70b42014-09-12 22:17:27 -070028public final class TelecomBroadcastReceiver extends BroadcastReceiver {
Santos Cordona0e5f1a2014-03-31 21:43:00 -070029 /** The action used to send SMS response for the missed call notification. */
30 static final String ACTION_SEND_SMS_FROM_NOTIFICATION =
Tyler Gunn7cc70b42014-09-12 22:17:27 -070031 "com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION";
Santos Cordona0e5f1a2014-03-31 21:43:00 -070032
33 /** The action used to call a handle back for the missed call notification. */
34 static final String ACTION_CALL_BACK_FROM_NOTIFICATION =
Tyler Gunn7cc70b42014-09-12 22:17:27 -070035 "com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION";
Santos Cordona0e5f1a2014-03-31 21:43:00 -070036
37 /** The action used to clear missed calls. */
38 static final String ACTION_CLEAR_MISSED_CALLS =
Tyler Gunn7cc70b42014-09-12 22:17:27 -070039 "com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS";
Santos Cordona0e5f1a2014-03-31 21:43:00 -070040
Santos Cordona0e5f1a2014-03-31 21:43:00 -070041 /** {@inheritDoc} */
42 @Override
43 public void onReceive(Context context, Intent intent) {
44 String action = intent.getAction();
45
46 Log.v(this, "Action received: %s.", action);
47
Nancy Chen6f5c08d2014-09-23 16:54:05 -070048 MissedCallNotifier missedCallNotifier = CallsManager.getInstance().getMissedCallNotifier();
49
Santos Cordona0e5f1a2014-03-31 21:43:00 -070050 // Send an SMS from the missed call notification.
51 if (ACTION_SEND_SMS_FROM_NOTIFICATION.equals(action)) {
52 // Close the notification shade and the notification itself.
53 closeSystemDialogs(context);
Nancy Chen6f5c08d2014-09-23 16:54:05 -070054 missedCallNotifier.clearMissedCalls();
Santos Cordona0e5f1a2014-03-31 21:43:00 -070055
56 Intent callIntent = new Intent(Intent.ACTION_SENDTO, intent.getData());
57 callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
58 context.startActivity(callIntent);
59
60 // Call back recent caller from the missed call notification.
61 } else if (ACTION_CALL_BACK_FROM_NOTIFICATION.equals(action)) {
62 // Close the notification shade and the notification itself.
63 closeSystemDialogs(context);
Nancy Chen6f5c08d2014-09-23 16:54:05 -070064 missedCallNotifier.clearMissedCalls();
Santos Cordona0e5f1a2014-03-31 21:43:00 -070065
66 Intent callIntent = new Intent(Intent.ACTION_CALL_PRIVILEGED, intent.getData());
67 callIntent.setFlags(
68 Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
69 context.startActivity(callIntent);
70
71 // Clear the missed call notification and call log entries.
72 } else if (ACTION_CLEAR_MISSED_CALLS.equals(action)) {
Nancy Chen6f5c08d2014-09-23 16:54:05 -070073 missedCallNotifier.clearMissedCalls();
Santos Cordona0e5f1a2014-03-31 21:43:00 -070074 }
75 }
76
77 /**
78 * Closes open system dialogs and the notification shade.
79 */
80 private void closeSystemDialogs(Context context) {
81 Intent intent = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
82 context.sendBroadcastAsUser(intent, UserHandle.ALL);
83 }
84}