mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
104 lines
3.2 KiB
Java
104 lines
3.2 KiB
Java
package org.linphone.gcm;
|
|
/*
|
|
GCMService.java
|
|
Copyright (C) 2017 Belledonne Communications, Grenoble, France
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import static android.content.Intent.ACTION_MAIN;
|
|
|
|
import org.linphone.LinphoneManager;
|
|
import org.linphone.LinphonePreferences;
|
|
import org.linphone.LinphoneService;
|
|
import org.linphone.R;
|
|
import org.linphone.UIThreadDispatcher;
|
|
import org.linphone.core.Factory;
|
|
import org.linphone.mediastream.Log;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import com.google.android.gcm.GCMBaseIntentService;
|
|
|
|
// Warning ! Do not rename the service !
|
|
public class GCMService extends GCMBaseIntentService {
|
|
|
|
public GCMService() {
|
|
|
|
}
|
|
|
|
private void initLogger(Context context) {
|
|
LinphonePreferences.instance().setContext(context);
|
|
boolean isDebugEnabled = LinphonePreferences.instance().isDebugEnabled();
|
|
Factory.instance().enableLogCollection(isDebugEnabled);
|
|
Factory.instance().setDebugMode(isDebugEnabled, context.getString(R.string.app_name));
|
|
}
|
|
|
|
@Override
|
|
protected void onError(Context context, String errorId) {
|
|
initLogger(context);
|
|
Log.e("[Push Notification] Error while registering: " + errorId);
|
|
}
|
|
|
|
@Override
|
|
protected void onMessage(Context context, Intent intent) {
|
|
initLogger(context);
|
|
Log.d("[Push Notification] Received");
|
|
|
|
if (!LinphoneService.isReady()) {
|
|
context.startService(new Intent(ACTION_MAIN).setClass(context, LinphoneService.class));
|
|
} else if (LinphoneManager.isInstanciated() && LinphoneManager.getLc().getCallsNb() == 0) {
|
|
UIThreadDispatcher.dispatch(new Runnable(){
|
|
@Override
|
|
public void run() {
|
|
if (LinphoneManager.isInstanciated() && LinphoneManager.getLc().getCallsNb() == 0){
|
|
LinphoneManager.getLc().setNetworkReachable(false);
|
|
LinphoneManager.getLc().setNetworkReachable(true);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onRegistered(Context context, final String regId) {
|
|
initLogger(context);
|
|
Log.d("[Push Notification] Registered: " + regId);
|
|
UIThreadDispatcher.dispatch(new Runnable(){
|
|
@Override
|
|
public void run() {
|
|
LinphonePreferences.instance().setPushNotificationRegistrationID(regId);
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
protected void onUnregistered(Context context, String regId) {
|
|
initLogger(context);
|
|
Log.w("[Push Notification] Unregistered: " + regId);
|
|
|
|
UIThreadDispatcher.dispatch(new Runnable(){
|
|
@Override
|
|
public void run() {
|
|
LinphonePreferences.instance().setPushNotificationRegistrationID(null);
|
|
}
|
|
});
|
|
}
|
|
|
|
protected String[] getSenderIds(Context context) {
|
|
return new String[] { context.getString(R.string.push_sender_id) };
|
|
}
|
|
}
|