正在查看: Fix Locker v1.5 应用的 GetOfflineContactService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Fix Locker v1.5 应用的 GetOfflineContactService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.user.a4keygen.services;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.Service;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Build;
import android.os.Handler;
import android.os.IBinder;
import android.os.Looper;
import androidx.core.app.NotificationCompat;
import com.google.gson.JsonObject;
import com.user.a4keygen.constants.ServiceKeyValueConstant;
import com.user.a4keygen.constants.WebServiceUrlConstant;
import com.user.a4keygen.model.CommonResponseModel;
import com.user.a4keygen.network.ApiClient;
import com.user.a4keygen.network.ApiInterface;
import com.user.a4keygen.receiver.CustumeReceiverContact;
import com.user.a4keygen.sharedprefrence.SharedPrefManager;
import com.user.a4keygen.util.IconUtils;
import com.user.a4keygen.webutil.WebClientService;
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
public class GetOfflineContactService extends Service {
private static final String CHANNEL_ID = "ContactOffServiceChannel";
public static final String CUSTOM_BROADCAST_ACTION_CONTACT_NUM = "com.grintech.emisafelockapp.CUSTOM_BROADCAST_CONTACT";
private static final int NOTIFICATION_ID = 107;
private static final String TAG = "ContactOffService";
private CustumeReceiverContact customReceiver;
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int i, int i2) {
createNotificationChannel();
startForeground(107, new NotificationCompat.Builder(this, CHANNEL_ID).setContentTitle(WebClientService.getWebServiceUrl().equals(WebServiceUrlConstant.GMM_WEB_SERVICE_URL) ? ServiceKeyValueConstant.GET_PHON_SERVICE_OFFLINE : "Get off contact").setSmallIcon(IconUtils.getAppIcon()).setPriority(1).build());
registerCustomReceiver();
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
@Override
public final void run() {
GetOfflineContactService.this.m309x4a6cf28b();
}
}, 100L);
return 2;
}
public void m309x4a6cf28b() {
sendCustomBroadcast();
genericAip();
}
private void createNotificationChannel() {
if (Build.VERSION.SDK_INT >= 26) {
NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ID, "Offline Contact Service Channel", 3);
NotificationManager notificationManager = (NotificationManager) getSystemService(NotificationManager.class);
if (notificationManager != null) {
notificationManager.createNotificationChannel(notificationChannel);
}
}
}
@Override
public void onDestroy() {
super.onDestroy();
stopForeground(true);
unregisterCustomReceiver();
}
private void sendCustomBroadcast() {
Intent intent = new Intent();
intent.setAction("com.grintech.emisafelockapp.CUSTOM_BROADCAST_CONTACT");
sendBroadcast(intent);
}
private void registerCustomReceiver() {
CustumeReceiverContact custumeReceiverContact = new CustumeReceiverContact();
this.customReceiver = custumeReceiverContact;
registerReceiver(custumeReceiverContact, new IntentFilter("com.grintech.emisafelockapp.CUSTOM_BROADCAST_CONTACT"));
}
private void unregisterCustomReceiver() {
CustumeReceiverContact custumeReceiverContact = this.customReceiver;
if (custumeReceiverContact != null) {
unregisterReceiver(custumeReceiverContact);
this.customReceiver = null;
}
}
private void genericAip() {
try {
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("userId", SharedPrefManager.getInstance(getApplicationContext()).getUserId());
jsonObject.addProperty("operationType", "GC_OVM");
jsonObject.addProperty("acknowledgement", "Generic api Contact via message");
((ApiInterface) ApiClient.getInstance(getApplicationContext()).getClient().create(ApiInterface.class)).genericApi(jsonObject).enqueue(new Callback<CommonResponseModel>() {
public void onFailure(Call<CommonResponseModel> call, Throwable th) {
}
public void onResponse(Call<CommonResponseModel> call, Response<CommonResponseModel> response) {
if (response.isSuccessful()) {
"S".equals(((CommonResponseModel) response.body()).getStatus());
}
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
}