2024-01-17 08:43:54 +00:00
|
|
|
package com.example.childguard;
|
|
|
|
|
2024-01-18 19:28:17 +00:00
|
|
|
import android.annotation.SuppressLint;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.app.NotificationChannel;
|
|
|
|
import android.app.NotificationManager;
|
2024-01-18 19:28:17 +00:00
|
|
|
import android.app.PendingIntent;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.app.Service;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2024-01-18 15:57:33 +00:00
|
|
|
import android.content.SharedPreferences;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.content.pm.PackageManager;
|
2024-01-18 19:28:17 +00:00
|
|
|
import android.os.Build;
|
2024-01-17 08:43:54 +00:00
|
|
|
import android.os.IBinder;
|
|
|
|
import android.os.Vibrator;
|
|
|
|
import android.util.Log;
|
2024-01-18 15:57:33 +00:00
|
|
|
import android.widget.Toast;
|
2024-01-18 19:28:17 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.BroadcastReceiver;
|
2024-01-18 15:57:33 +00:00
|
|
|
import androidx.annotation.NonNull;
|
2024-01-17 08:43:54 +00:00
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.core.app.ActivityCompat;
|
|
|
|
import androidx.core.app.NotificationCompat;
|
|
|
|
import androidx.core.app.NotificationManagerCompat;
|
2024-01-18 15:57:33 +00:00
|
|
|
import androidx.fragment.app.Fragment;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
import com.google.android.gms.tasks.OnFailureListener;
|
|
|
|
import com.google.android.gms.tasks.OnSuccessListener;
|
|
|
|
import com.google.firebase.firestore.DocumentReference;
|
|
|
|
import com.google.firebase.firestore.DocumentSnapshot;
|
|
|
|
import com.google.firebase.firestore.EventListener;
|
|
|
|
import com.google.firebase.firestore.FirebaseFirestore;
|
|
|
|
import com.google.firebase.firestore.FirebaseFirestoreException;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.concurrent.Executor;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 19:28:17 +00:00
|
|
|
public class TestService extends Service {
|
2024-01-18 15:57:33 +00:00
|
|
|
FirebaseFirestore db;
|
|
|
|
DocumentReference mDocRef;
|
2024-01-17 08:43:54 +00:00
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
public static final String TAG = "InspirationQuote";
|
2024-01-17 08:43:54 +00:00
|
|
|
|
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
@Override
|
|
|
|
public int onStartCommand(Intent intent, int flags, int startId) {
|
2024-01-18 17:33:56 +00:00
|
|
|
//共有プリファレンス全体の準備
|
2024-01-18 15:57:33 +00:00
|
|
|
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
|
2024-01-18 17:33:56 +00:00
|
|
|
String IdPref = sharedPreferences.getString("ID", null);//アプリに記録されているIDの取得
|
|
|
|
if (IdPref == null) {//FireBaseのIDがアプリに登録されているとき
|
2024-01-18 15:57:33 +00:00
|
|
|
Log.d("onResume", "ID not initialized.");
|
|
|
|
} else {
|
|
|
|
mDocRef = FirebaseFirestore.getInstance().document("status/" + IdPref);//現在の位置を取得
|
2024-01-18 17:33:56 +00:00
|
|
|
initNotification(mDocRef);//現在の位置を引数に initNotification()を処理
|
2024-01-18 15:57:33 +00:00
|
|
|
}
|
|
|
|
return flags;
|
2024-01-17 08:43:54 +00:00
|
|
|
}
|
|
|
|
|
2024-01-18 17:33:56 +00:00
|
|
|
private void initNotification(DocumentReference mDocRef) {//サイト上で押されたボタンの管理
|
2024-01-18 15:57:33 +00:00
|
|
|
|
2024-01-18 17:33:56 +00:00
|
|
|
// 共有プリファレンス全体の準備
|
2024-01-18 19:28:17 +00:00
|
|
|
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
|
2024-01-18 17:33:56 +00:00
|
|
|
//車の乗り降りを管理するtrue=乗車、false=降車
|
2024-01-18 19:28:17 +00:00
|
|
|
mDocRef.addSnapshotListener(new EventListener<DocumentSnapshot>() {//exists()でdocumentSnapshotの中のファイルの存在の確認
|
2024-01-18 15:57:33 +00:00
|
|
|
@Override
|
|
|
|
public void onEvent(@Nullable DocumentSnapshot documentSnapshot, @Nullable FirebaseFirestoreException e) {
|
|
|
|
|
|
|
|
Log.d("nt", "イベント開始");
|
|
|
|
//共有プリファレンス 書き込みの準備
|
|
|
|
SharedPreferences.Editor E = sharedPreferences.edit();
|
|
|
|
//車の乗り降りを管理するtrue=乗車、false=降車
|
2024-01-18 17:33:56 +00:00
|
|
|
if (documentSnapshot.exists()) {//exists()でdocumentSnapshotの中のファイルの存在の確認
|
2024-01-18 15:57:33 +00:00
|
|
|
Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス
|
|
|
|
E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
|
|
|
|
E.apply();//確定処理
|
|
|
|
Log.d("nt", "レスポンスを検知しました1");
|
2024-01-18 19:28:17 +00:00
|
|
|
if (documentSnapshot.getBoolean("isReported") == true && isInCar == true) {//isReportedがtrueかつisInCarがtrueのとき=サイト上で第三者ボタンが押されたときに乗車状態のとき
|
2024-01-18 17:33:56 +00:00
|
|
|
ResetReported();// ResetReported();を処理→FireBaseのisReportedをfalseにする
|
2024-01-18 15:57:33 +00:00
|
|
|
int importance = NotificationManager.IMPORTANCE_DEFAULT;
|
|
|
|
NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通報通知", importance);
|
|
|
|
channel.setDescription("第3者からの通報を検知しました");
|
|
|
|
NotificationManager notificationManager = getSystemService(NotificationManager.class);
|
|
|
|
notificationManager.createNotificationChannel(channel);
|
|
|
|
Log.d("nt", "レスポンスを検知しました2");
|
2024-01-18 19:28:17 +00:00
|
|
|
NotificationSetting();//通知に関する設定のメソッド→Android8.0以降のバックグラウンド処理に関する設定など
|
|
|
|
Notification(getApplicationContext());//バイブレーション、音、バナーによる通知を行うメソッド
|
|
|
|
} else {//それ以外のとき
|
2024-01-18 17:33:56 +00:00
|
|
|
ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
2024-01-18 19:28:17 +00:00
|
|
|
Log.d("nt", "何もなし");
|
2024-01-18 15:57:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
2024-01-17 08:43:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-01-18 19:28:17 +00:00
|
|
|
public void ResetReported() {//FireBaseのisReportedをfalseに初期化するメソッド
|
2024-01-18 17:33:56 +00:00
|
|
|
//共有プリファレンス全体の準備
|
2024-01-18 19:28:17 +00:00
|
|
|
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
|
2024-01-18 17:33:56 +00:00
|
|
|
String IdPref = sharedPreferences.getString("ID", null);//アプリに記録されているIDの取得
|
2024-01-18 15:57:33 +00:00
|
|
|
db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
|
2024-01-18 17:33:56 +00:00
|
|
|
DocumentReference isReported = db.collection("status").document(IdPref);//更新するドキュメントとの紐づけ
|
2024-01-18 15:57:33 +00:00
|
|
|
Map<String, Boolean> DEFAULT_ITEM = new HashMap<>();//mapの宣言
|
|
|
|
DEFAULT_ITEM.put("isReported", false);
|
2024-01-18 19:28:17 +00:00
|
|
|
isReported.update("isReported", false).addOnSuccessListener(new OnSuccessListener<Void>() {//isReportedをfalseに更新
|
2024-01-18 15:57:33 +00:00
|
|
|
@Override
|
|
|
|
public void onSuccess(Void unused) {
|
|
|
|
Log.d(TAG, "DocumentSnapshot successfully updated!");
|
|
|
|
}
|
|
|
|
}).addOnFailureListener(new OnFailureListener() {
|
|
|
|
@Override
|
|
|
|
public void onFailure(@NonNull Exception e) {
|
|
|
|
Log.w(TAG, "Error updating document", e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2024-01-18 19:28:17 +00:00
|
|
|
|
|
|
|
public void NotificationSetting() {//通知に関する設定の処理を行うメソッド
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {//Android 8.0以降であることを確認する
|
|
|
|
int importance = NotificationManager.IMPORTANCE_DEFAULT;
|
|
|
|
//通知チャネルの実装
|
|
|
|
NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通知", importance);
|
|
|
|
channel.setDescription("第三者により置き去りの通報が行われたときに通知します。");
|
|
|
|
|
|
|
|
NotificationManager notificationManager = getSystemService(NotificationManager.class);
|
|
|
|
notificationManager.createNotificationChannel(channel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Notification(Context context) {//実際に通知を行うメソッド
|
|
|
|
// 通知がクリックされたときに送信されるIntent
|
|
|
|
Intent intent = new Intent(context, MainActivity.class);
|
|
|
|
intent.setAction("OPEN_ACTIVITY");
|
|
|
|
// PendingIntentの作成
|
|
|
|
int requestCode = 100;
|
|
|
|
int flags = 0;
|
|
|
|
PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, intent, flags | PendingIntent.FLAG_IMMUTABLE);
|
|
|
|
|
|
|
|
((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(2000);//バイブレーション
|
|
|
|
@SuppressLint("NotificationTrampoline") NotificationCompat.Builder builder = new NotificationCompat.Builder(this, "CHANNEL_ID")
|
|
|
|
.setSmallIcon(android.R.drawable.ic_menu_info_details)
|
|
|
|
.setContentTitle("子供の置き去りをしていませんか?")//通知のタイトル
|
|
|
|
.setContentText("第三者からの通報が行われました。")//通知の本文
|
|
|
|
.setContentIntent(pendingIntent)
|
|
|
|
.setAutoCancel(true)
|
|
|
|
.setPriority(NotificationCompat.PRIORITY_DEFAULT);
|
|
|
|
|
|
|
|
NotificationManager notificationManager = (NotificationManager)context.getSystemService(context.NOTIFICATION_SERVICE);
|
|
|
|
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
notificationManager.notify(R.string.app_name, builder.build());//通知の表示
|
|
|
|
}
|
2024-01-17 08:43:54 +00:00
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public IBinder onBind(Intent intent) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|