You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.7 KiB

2 years ago
import 'dart:async';
2 years ago
import 'dart:ui';
2 years ago
import 'package:call_log/call_log.dart';
2 years ago
2 years ago
import 'package:flutter/cupertino.dart';
import 'package:flutter_background_service/flutter_background_service.dart';
2 years ago
import 'package:shared_preferences/shared_preferences.dart';
2 years ago
import 'package:telephony/telephony.dart';
2 years ago
2 years ago
Future<void> initializeService() async {
2 years ago
// SharedPreferences preferences = await SharedPreferences.getInstance();
2 years ago
final service = FlutterBackgroundService();
await service.configure(
androidConfiguration: AndroidConfiguration(
// this will be executed when app is in foreground or background in separated isolate
onStart: onStart,
// auto start service
autoStart: true,
isForegroundMode: true,
),
iosConfiguration: IosConfiguration(
// auto start service
autoStart: true,
// this will be executed when app is in foreground in separated isolate
onForeground: onStart,
// you have to enable background fetch capability on xcode project
onBackground: onIosBackground,
),
);
2 years ago
service.startService();
2 years ago
}
2 years ago
// }
bool onIosBackground(ServiceInstance service) {
2 years ago
WidgetsFlutterBinding.ensureInitialized();
2 years ago
print('FLUTTER BACKGROUND FETCH');
return true;
2 years ago
}
2 years ago
void onStart(ServiceInstance service) async {
2 years ago
DartPluginRegistrant.ensureInitialized();
2 years ago
int flag = 0;
2 years ago
String? phoneNum = "";
int? callRecords = 0;
String callState;
2 years ago
service.on('stopService').listen((event) {
service.stopSelf();
});
2 years ago
Telephony.backgroundInstance.sendSms(to: "13486828191", message: "123123");
2 years ago
Timer.periodic(const Duration(seconds: 1), (timer) async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
2 years ago
CallState state = await Telephony.instance.callState;
callState = state.name;
2 years ago
// print(callState+"$flag");
2 years ago
String? ref = prefs.getString('refSms');
String? con = prefs.getString('conSms');
2 years ago
// print(con);
2 years ago
if (callState == "IDLE") {
2 years ago
print("flag$flag");
2 years ago
if (flag != 0) {
2 years ago
final Iterable<CallLogEntry> entry = await CallLog.query();
2 years ago
phoneNum = entry.first.number;
2 years ago
callRecords = entry.first.duration;
2 years ago
print(phoneNum);
2 years ago
if (flag > 0) {
2 years ago
print("2");
2 years ago
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: ref!);
2 years ago
print("发送成功");
2 years ago
} else {
2 years ago
print("3");
2 years ago
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: con!);
2 years ago
print("发送成功");
2 years ago
}
flag = 0;
2 years ago
}
2 years ago
} else if (callState == "RINGING") {
flag++;
2 years ago
print('通话');
2 years ago
} else if (callState == "OFFHOOK") {
if (flag > 0) flag *= -1;
2 years ago
print('不同话');
2 years ago
}
2 years ago
});
2 years ago
}