# Conflicts:
#	lib/ui/home/call.dart
#	lib/ui/user/user_page.dart
master
王亚玲 2 years ago
commit aba376110d

@ -1,4 +1,3 @@
import 'dart:async';
import 'dart:ui';
@ -17,30 +16,28 @@ import 'package:telephony/telephony.dart';
import '../../providers/user_provider.dart';
import '../../utils/user_tool.dart';
Future<void> initializeService() async {
// SharedPreferences preferences = await SharedPreferences.getInstance();
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,
),
);
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,
),
);
service.startService();
}
}
// }
bool onIosBackground(ServiceInstance service) {
@ -49,36 +46,25 @@ bool onIosBackground(ServiceInstance service) {
return true;
}
void onStart(ServiceInstance service) async {
DartPluginRegistrant.ensureInitialized();
int flag = 0;
String? phoneNum="";
int? callRecords=0;
String callState;
String? phoneNum = "";
int? callRecords = 0;
String callState;
service.on('stopService').listen((event) {
service.stopSelf();
});
Timer.periodic(const Duration(seconds: 1), (timer) async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
Timer.periodic(const Duration(seconds: 1), (timer) async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
CallState state = await Telephony.instance.callState;
callState = state.name;
String? ref=prefs.getString('refSms');
String? con=prefs.getString('conSms');
print("这是数据$ref");
// bool? kg= prefs.getBool("kg");
// // bool? kg= prefs.getBool("kg");
// print("这是数据${prefs.getBool("kg")}");
// print("这是数据$kg");
// kg = UserTool.userProvider.kg;
// print("这是数据${prefs.getBool("kg")}");
// print(callState!+" $flag");
print(callState+"$flag");
String? ref = prefs.getString('refSms');
String? con = prefs.getString('conSms');
if (callState == "IDLE") {
if (flag != 0) {
flag = 0;
// print("object");
final Iterable<CallLogEntry> entry = await CallLog.query();
phoneNum = entry.first.number;
@ -88,35 +74,39 @@ void onStart(ServiceInstance service) async {
// print('DURATION : ${entry.first.duration}');///
// if(callRecords!=0){
// // if(kg!){
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: ref!);
if (flag > 0) {
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: ref!);
} else {
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: con!);
}
// // }
// }else{
// print("没接通");
if (callRecords != 0) {
print("接通了");
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "接通了");
} else {
print("没接通");
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "接通了");
// if(kg!) {
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "没接通");
// }
// print('DATE : ${DateTime.fromMillisecondsSinceEpoch(entry.first.timestamp!)}');//
// print("你好$phoneNum");
// // final inbox = telephony.getInboxSms();
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "啦啦啦啦啦");
// telephony.sendSms(to: phoneNum, message: "感谢来电");
// _sendSMS('',[phoneNum]);
// print("你好123123$phoneNum");
// }
}
} else if (callState == "RINGING") {
flag++;
// print('flag $flag');
} else if (callState == "OFFHOOK") {
flag++;
// print('flag $flag');
// if (callRecords != 0) {
// print("接通了");
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "接通了");
// } else {
// print("没接通");
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "接通了");
// if(kg!) {
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "没接通");
// }
// print('DATE : ${DateTime.fromMillisecondsSinceEpoch(entry.first.timestamp!)}');//
// print("你好$phoneNum");
// // final inbox = telephony.getInboxSms();
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "啦啦啦啦啦");
// telephony.sendSms(to: phoneNum, message: "感谢来电");
// _sendSMS('',[phoneNum]);
// print("你好123123$phoneNum");
// }
flag = 0;
}
} else if (callState == "RINGING") {
flag++;
// print('flag $flag');
} else if (callState == "OFFHOOK") {
if (flag > 0) flag *= -1;
// print('flag $flag');
}
});
});
}

@ -1,5 +1,3 @@
import 'dart:async';
import 'package:bot_toast/bot_toast.dart';
import 'package:flustars/flustars.dart';
import 'package:flutter/material.dart';
@ -51,15 +49,15 @@ class _UserPageState extends State<UserPage> {
void initState() {
super.initState();
if ( UserTool.userProvider.isLogin) {
Timer.periodic(Duration(seconds: 1), (timer) {
if (UserTool.userProvider.userInfo.isVip==1 && UserTool.userProvider.userInfo.end>=DateTime.now().millisecondsSinceEpoch ) {
isVip = false;
vle =false;
} else {
vle =true;
isVip = true;
}
});
print(UserTool.userProvider.userInfo.end*1000);
print(DateTime.now().millisecondsSinceEpoch);
if (UserTool.userProvider.userInfo.end*1000<=DateTime.now().millisecondsSinceEpoch ) {
isVip = false;
vle =false;
} else {
vle =true;
isVip = true;
}
endDate=DateUtil.formatDateMs(UserTool.userProvider.userInfo.end * 1000, format: DateFormats.y_mo_d);
}else{
vle = false;
@ -291,7 +289,6 @@ class _UserPageState extends State<UserPage> {
value: vle,
onChanged: (value) async {
final service = FlutterBackgroundService();
var isRunning = await service.isRunning();
final SharedPreferences prefs = await _prefs;
// if(!value){
//
@ -299,7 +296,7 @@ class _UserPageState extends State<UserPage> {
// await prefs.setBool("kg", value);
// print("这是数据${prefs.getBool("kg")}");
setState(() {
if(!isVip){
if(isVip){
vle=value;
// prefs.setBool("kg", vle);
@ -313,7 +310,7 @@ class _UserPageState extends State<UserPage> {
// initializeService();
// UserTool.userProvider.setKg(vle)
// initializeService();
// initializeService();
initializeService();
BotToast.showText(text: " 你开启了该功能");
// initializeService();
// print("这是数据${prefs.getBool("kg")}");

Loading…
Cancel
Save