blob: aa91490f46fc64684a2f4d59b21ef18533e570b2 [file] [log] [blame]
/*
* Copyright (C) 2014 Google Inc.
*
* 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.googlecode.android_scripting.facade.tele;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import android.app.Service;
import android.telecom.AudioState;
import android.telecom.Call;
import android.telecom.PhoneAccount;
import android.telecom.PhoneAccountHandle;
import android.telecom.TelecomManager;
import android.telephony.TelephonyManager;
import com.googlecode.android_scripting.Log;
import com.googlecode.android_scripting.facade.FacadeManager;
import com.googlecode.android_scripting.jsonrpc.RpcReceiver;
import com.googlecode.android_scripting.rpc.Rpc;
import com.googlecode.android_scripting.rpc.RpcParameter;
/**
* Exposes TelecomManager functionality.
*/
public class TelecomManagerFacade extends RpcReceiver {
/**
* Returns an identifier of the call. When a phone number is available, the number will be
* returned. Otherwise, the standard object toString result of the Call object. e.g. A
* conference call does not have a single number associated with it, thus the toString Id will
* be returned.
*
* @param call
* @return
*/
public static String getCallId(Call call) {
try {
String handle = call.getDetails().getHandle().toString();
int idx = handle.indexOf(":");
String number = handle.substring(idx + 1).trim();
return number;
} catch (NullPointerException e) {
Log.d("Failed to get a number from the call object, using toString.");
return call.toString();
}
}
private final Service mService;
private final TelecomManager mTelecomManager;
private List<PhoneAccountHandle> mEnabledAccountHandles = null;
public TelecomManagerFacade(FacadeManager manager) {
super(manager);
mService = manager.getService();
mTelecomManager = new TelecomManager(mService);
}
@Override
public void shutdown() {
}
@Rpc(description = "If there's a ringing call, accept on behalf of the user.")
public void telecomAcceptRingingCall() {
mTelecomManager.acceptRingingCall();
}
@Rpc(description = "Disconnect call by callId.")
public void telecomCallDisconnect(
@RpcParameter(name = "callId")
String callId) {
Call call = InCallServiceImpl.mCalls.get(callId);
call.disconnect();
}
@Rpc(description = "Hold call by callId")
public void telecomCallHold(@RpcParameter(name = "callId")
String callId) {
Call call = InCallServiceImpl.mCalls.get(callId);
call.hold();
}
@Rpc(description = "Merge call to conference by callId")
public void telecomCallMergeToConf(
@RpcParameter(name = "callId")
String callId) {
Call call = InCallServiceImpl.mCalls.get(callId);
call.mergeConference();
}
@Rpc(description = "Split call from conference by callId.")
public void telecomCallSplitFromConf(
@RpcParameter(name = "callId")
String callId) {
Call call = InCallServiceImpl.mCalls.get(callId);
call.splitFromConference();
}
@Rpc(description = "Unhold call by callId")
public void telecomCallUnhold(@RpcParameter(name = "callId")
String callId) {
Call call = InCallServiceImpl.mCalls.get(callId);
call.unhold();
}
@Rpc(description = "Removes the missed-call notification if one is present.")
public void telecomCancelMissedCallsNotification() {
mTelecomManager.cancelMissedCallsNotification();
}
@Rpc(description = "Remove all Accounts that belong to the calling package from the system.")
public void telecomClearAccounts() {
mTelecomManager.clearAccounts();
}
@Rpc(description = "End an ongoing call.")
public Boolean telecomEndCall() {
return mTelecomManager.endCall();
}
@Rpc(description = "Get a list of all PhoneAccounts.")
public List<PhoneAccount> telecomGetAllPhoneAccounts() {
return mTelecomManager.getAllPhoneAccounts();
}
@Rpc(description = "Get the current call state.")
public String telecomGetCallState() {
int state = mTelecomManager.getCallState();
String stateStr = null;
if (state == TelephonyManager.CALL_STATE_RINGING) {
stateStr = "RINGING";
} else if (state == TelephonyManager.CALL_STATE_IDLE) {
stateStr = "IDLE";
} else if (state == TelephonyManager.CALL_STATE_OFFHOOK) {
stateStr = "OFFHOOK";
}
return stateStr;
}
@Rpc(description = "Get the current tty mode.")
public String telecomGetCurrentTtyMode() {
int mode = mTelecomManager.getCurrentTtyMode();
String modeStr = null;
if (mode == TelecomManager.TTY_MODE_FULL) {
modeStr = "FULL";
} else if (mode == TelecomManager.TTY_MODE_HCO) {
modeStr = "HCO";
} else if (mode == TelecomManager.TTY_MODE_OFF) {
modeStr = "OFF";
} else if (mode == TelecomManager.TTY_MODE_VCO) {
modeStr = "VCO";
}
return modeStr;
}
@Rpc(description = "Get the list of PhoneAccountHandles with calling capability.")
public List<PhoneAccountHandle> telecomGetEnabledPhoneAccounts() {
mEnabledAccountHandles = mTelecomManager.getCallCapablePhoneAccounts();
return mEnabledAccountHandles;
}
@Rpc(description = "Set the user-chosen default PhoneAccount for making outgoing phone calls.")
public void telecomSetUserSelectedOutgoingPhoneAccount(
@RpcParameter(name = "phoneAccountHandleId")
String phoneAccountHandleId) throws Exception {
List<PhoneAccountHandle> accountHandles = mTelecomManager
.getAllPhoneAccountHandles();
for (PhoneAccountHandle handle : accountHandles) {
if (handle.getId().equals(phoneAccountHandleId)) {
mTelecomManager.setUserSelectedOutgoingPhoneAccount(handle);
Log.d(String.format("Set default Outgoing Phone Account(%s)",
phoneAccountHandleId));
return;
}
}
Log.d(String.format(
"Failed to find a matching phoneAccountHandleId(%s).",
phoneAccountHandleId));
throw new Exception(String.format(
"Failed to find a matching phoneAccountHandleId(%s).",
phoneAccountHandleId));
}
@Rpc(description = "Get the user-chosen default PhoneAccount for making outgoing phone calls.")
public PhoneAccountHandle telecomGetUserSelectedOutgoingPhoneAccount() {
return mTelecomManager.getUserSelectedOutgoingPhoneAccount();
}
@Rpc(description = "Returns whether there is an ongoing phone call.")
public Boolean telecomIsInCall() {
return mTelecomManager.isInCall();
}
@Rpc(description = "Returns whether there is a ringing incoming call.")
public Boolean telecomIsRinging() {
return mTelecomManager.isRinging();
}
@Rpc(description = "Joins two calls into a conference call. Calls are identified by their IDs listed by telecomPhoneGetCallIds")
public void telecomJoinCallsInConf(
@RpcParameter(name = "callIdOne")
String callIdOne,
@RpcParameter(name = "callIdTwo")
String callIdTwo) {
Call callOne = InCallServiceImpl.mCalls.get(callIdOne);
Call callTwo = InCallServiceImpl.mCalls.get(callIdTwo);
callOne.conference(callTwo);
}
@Rpc(description = "Obtains the current call audio state of the phone.")
public AudioState telecomPhoneGetAudioState() {
return InCallServiceImpl.mPhone.getAudioState();
}
@Rpc(description = "Lists the IDs (phone numbers or hex hashes) of the current calls.")
public Set<String> telecomGetCallIds() {
return InCallServiceImpl.mCalls.keySet();
}
@Rpc(description = "Reset the Call List.")
public void telecomClearCallList() {
InCallServiceImpl.mCalls.clear();
}
@Rpc(description = "Get the state of a call according to call id.")
public String telecomCallGetState(
@RpcParameter(name = "callId")
String callId) {
Call call = InCallServiceImpl.mCalls.get(callId);
if (null == call){
Log.d("In telecomCallGetState, Invalid callId");
return "INVALID_ID";
}
int state = call.getState();
switch(state) {
case Call.STATE_NEW:
return "STATE_NEW";
case Call.STATE_DIALING:
return "STATE_DIALING";
case Call.STATE_RINGING:
return "STATE_RINGING";
case Call.STATE_HOLDING:
return "STATE_HOLDING";
case Call.STATE_ACTIVE:
return "STATE_ACTIVE";
case Call.STATE_DISCONNECTED:
return "STATE_DISCONNECTED";
case Call.STATE_PRE_DIAL_WAIT:
return "STATE_PRE_DIAL_WAIT";
case Call.STATE_CONNECTING:
return "STATE_CONNECTING";
case Call.STATE_DISCONNECTING:
return "STATE_DISCONNECTING";
default:
return "UNKNOWN";
}
}
@Rpc(description = "Sets the audio route (SPEAKER, BLUETOOTH, etc...).")
public void telecomPhoneSetAudioRoute(
@RpcParameter(name = "route")
String route) {
int r = 0;
if (route == "BLUETOOTH") {
r = AudioState.ROUTE_BLUETOOTH;
} else if (route == "EARPIECE") {
r = AudioState.ROUTE_EARPIECE;
} else if (route == "SPEAKER") {
r = AudioState.ROUTE_SPEAKER;
} else if (route == "WIRED_HEADSET") {
r = AudioState.ROUTE_WIRED_HEADSET;
} else if (route == "ALL") {
r = AudioState.ROUTE_ALL;
} else if (route == "WIRED_OR_EARPIECE") {
r = AudioState.ROUTE_WIRED_OR_EARPIECE;
}
InCallServiceImpl.mPhone.setAudioRoute(r);
}
@Rpc(description = "Turns the proximity sensor off. If screenOnImmediately is true, the screen will be turned on immediately")
public void telecomPhoneSetProximitySensorOff(
@RpcParameter(name = "screenOnImmediately")
Boolean screenOnImmediately) {
InCallServiceImpl.mPhone.setProximitySensorOff(screenOnImmediately);
}
@Rpc(description = "Silences the rigner if there's a ringing call.")
public void telecomSilenceRinger() {
mTelecomManager.silenceRinger();
}
}