号码判断发送

master
王亚玲 2 years ago
parent f75a5270fb
commit c41eeea38f

@ -47,12 +47,6 @@ void onStart(ServiceInstance service) async {
service.on('stopService').listen((event) { service.on('stopService').listen((event) {
service.stopSelf(); service.stopSelf();
}); });
// setForegroundNotificationInfo(title: "你好", content: "再见");
// AndroidServiceInstance.
// service.setNotificationInfo("").listen((event){
//
// });
// Telephony.backgroundInstance.sendSms(to: "13486828191", message: "123123");
Timer.periodic(const Duration(seconds: 1), (timer) async { Timer.periodic(const Duration(seconds: 1), (timer) async {
final SharedPreferences prefs = await SharedPreferences.getInstance(); final SharedPreferences prefs = await SharedPreferences.getInstance();
CallState state = await Telephony.instance.callState; CallState state = await Telephony.instance.callState;
@ -65,54 +59,144 @@ void onStart(ServiceInstance service) async {
String? idle = prefs.getString('idleSms'); String? idle = prefs.getString('idleSms');
bool? callSw = prefs.getBool('callSwitch'); bool? callSw = prefs.getBool('callSwitch');
bool? idleSw = prefs.getBool('idleSwitch'); bool? idleSw = prefs.getBool('idleSwitch');
int? numberSet=prefs.getInt("numIndex"); int? numberSet = prefs.getInt("numIndex");
List<String>? numberList=prefs.getStringList("addressList"); List<String>? numberList = prefs.getStringList("addressList");
print("号码设置$numberSet 通讯列表$numberList"); List<String>? noNumberList = prefs.getStringList("specified");
print("号码设置$numberSet 通讯列表$numberList 指定不发送$noNumberList");
if (callState == "IDLE") { if (callState == "IDLE") {
if (flag != 0) { if (flag != 0) {
final Iterable<CallLogEntry> entry = await CallLog.query(); final Iterable<CallLogEntry> entry = await CallLog.query();
phoneNum = entry.first.number; phoneNum = entry.first.number;
callRecords = entry.first.duration; callRecords = entry.first.duration;
print(phoneNum); print(phoneNum);
if (flag > 0) { switch (numberSet) {
print("来电拒接/未接"); case 0:
print("${phoneNum!}:${ref!}"); if (!(noNumberList?.contains(phoneNum))!) {
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: ref); if (flag > 0) {
print("发送成功"); print("来电拒接/未接");
} else if(flag==-1){ print("${phoneNum!}:${ref!}");
print("来电接听"); Telephony.backgroundInstance
print("${phoneNum!}:${con!}"); .sendSms(to: phoneNum!, message: ref);
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: con); print("发送成功");
} } else if (flag == -1) {
else { print("来电接听");
if(entry.first.duration!>0){ print("${phoneNum!}:${con!}");
if(callSw!){ Telephony.backgroundInstance
print(callSw); .sendSms(to: phoneNum!, message: con);
print("${phoneNum!}:${call!}"); } else {
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: call); if (entry.first.duration! > 0) {
if (callSw!) {
print(callSw);
print("${phoneNum!}:${call!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: call);
}
print("去电接听");
} else {
if (idleSw!) {
print(idleSw);
print("${phoneNum!}:${idle!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: idle);
}
print("去电未接");
}
print("发送成功");
}
flag = 0;
}else{
print("123412434124132312232341241242321312312323123323");
}
break;
case 1:
if ((numberList?.contains(phoneNum))! ||
!(noNumberList?.contains(phoneNum))!) {
if (flag > 0) {
print("来电拒接/未接");
print("${phoneNum!}:${ref!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: ref);
print("发送成功");
} else if (flag == -1) {
print("来电接听");
print("${phoneNum!}:${con!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: con);
} else {
if (entry.first.duration! > 0) {
if (callSw!) {
print(callSw);
print("${phoneNum!}:${call!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: call);
}
print("去电接听");
} else {
if (idleSw!) {
print(idleSw);
print("${phoneNum!}:${idle!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: idle);
}
print("去电未接");
}
print("发送成功");
}
flag = 0;
}else{
print("123412434124132312232341241242321312312323123323");
} }
print("去电接听"); break;
}else{ case 2:
if(idleSw!){ if (!(numberList?.contains(phoneNum))! ||
print(idleSw); !(noNumberList?.contains(phoneNum))!) {
print("${phoneNum!}:${idle!}"); if (flag > 0) {
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: idle); print("来电拒接/未接");
print("${phoneNum!}:${ref!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: ref);
print("发送成功");
} else if (flag == -1) {
print("来电接听");
print("${phoneNum!}:${con!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: con);
} else {
if (entry.first.duration! > 0) {
if (callSw!) {
print(callSw);
print("${phoneNum!}:${call!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: call);
}
print("去电接听");
} else {
if (idleSw!) {
print(idleSw);
print("${phoneNum!}:${idle!}");
Telephony.backgroundInstance
.sendSms(to: phoneNum!, message: idle);
}
print("去电未接");
}
print("发送成功");
}
flag = 0;
}else{
print("123412434124132312232341241242321312312323123323");
} }
print("去电未接"); break;
}
print("发送成功");
} }
flag = 0;
} }
} else if (callState == "RINGING") { } else if (callState == "RINGING") {
// //
flag=1; flag = 1;
print('通话'); print('通话');
} else if (callState == "OFFHOOK") { } else if (callState == "OFFHOOK") {
// //
if (flag > 0) flag *= -1; if (flag > 0) flag *= -1;
if(flag==0)flag=-2; if (flag == 0) flag = -2;
print('不通话'); print('不通话');
} }
}); });
} }

@ -97,7 +97,8 @@ class _CallRecordsListState extends State<CallRecordsList> {
} else { } else {
print(phoneNum3); print(phoneNum3);
var res = await ExcludeFunc.getContactsList(phoneNum3); var res = await ExcludeFunc.getContactsList(phoneNum3);
print(res); if(res) Get.back();
} }
// _easyRefreshController.callRefresh(); // _easyRefreshController.callRefresh();
// phoneNum3.clear(); // phoneNum3.clear();

@ -1,13 +1,13 @@
import 'package:call_log/call_log.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_background_service/flutter_background_service.dart'; import 'package:flutter_background_service/flutter_background_service.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'package:project_telephony/ui/home/set/func/exclude_contacts_func.dart';
import 'package:project_telephony/ui/home/set/specify_phone_page.dart'; import 'package:project_telephony/ui/home/set/specify_phone_page.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
import 'package:shared_preferences/shared_preferences.dart'; import 'package:shared_preferences/shared_preferences.dart';
import 'package:flutter_contacts/flutter_contacts.dart'; import 'package:flutter_contacts/flutter_contacts.dart';
import '../../../base/base_style.dart'; import '../../../base/base_style.dart';
import '../../../model/phone_num_model.dart';
import '../../widget/plone_back_button.dart'; import '../../widget/plone_back_button.dart';
// class setItem{ // class setItem{
@ -15,7 +15,6 @@ import '../../widget/plone_back_button.dart';
// } // }
class PhoneSetPage extends StatefulWidget { class PhoneSetPage extends StatefulWidget {
const PhoneSetPage({Key? key}) : super(key: key); const PhoneSetPage({Key? key}) : super(key: key);
@override @override
@ -26,10 +25,8 @@ class _PhoneSetPageState extends State<PhoneSetPage> {
int select = 0; int select = 0;
List<Contact>? contact; List<Contact>? contact;
List<String> numbers = []; List<String> numbers = [];
List<String>? numList=[]; List<String>? numList = [];
List<String> numList2=[]; final EasyRefreshController _refreshController = EasyRefreshController();
List<String>? numList3=[];
List setList = [ List setList = [
{ {
"icon": Assets.icons.rylyphone.path, "icon": Assets.icons.rylyphone.path,
@ -50,67 +47,90 @@ class _PhoneSetPageState extends State<PhoneSetPage> {
// "select": false, // "select": false,
}, },
]; ];
@override
@override
void initState() { void initState() {
_viewLoading();
super.initState(); super.initState();
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
elevation: 0, elevation: 0,
title: Text( title: Text(
'发送号码设置', '发送号码设置',
style: TextStyle( style: TextStyle(
fontSize: BaseStyle.fontSize34, fontSize: BaseStyle.fontSize34,
color: BaseStyle.color333333, color: BaseStyle.color333333,
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
),
titleSpacing: 162.w,
leading: const CloudBackButton(isSpecial: true),
backgroundColor: kForeGroundColor),
backgroundColor: kForeGroundColor,
body: Column(
children: [
_getList(),
24.hb,
GestureDetector(
onTap: () {
Get.to(()=>const SpecifyPhonePage());
},
child: Container(
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 30.w),
height: 144.w,
child: ListTile(
leading: SizedBox(
width: 72.w,
height: 72.w,
child: Image.asset(
Assets.icons.zdphone.path,
fit: BoxFit.fill,
),
),
title: Text(
"指定号码不发送",
style:
TextStyle(fontSize: 32.sp, fontWeight: FontWeight.bold),
),
subtitle: Text(
"通过添加指定号码来设置不发送",
style: TextStyle(
fontSize: 28.sp, color: const Color(0xFF999999)),
),
trailing: SizedBox(
width: 48.w,
height: 48.w,
child: const Icon(Icons.arrow_forward_ios),
)),
), ),
) titleSpacing: 162.w,
], leading: const CloudBackButton(isSpecial: true),
), backgroundColor: kForeGroundColor),
); backgroundColor: kForeGroundColor,
body: EasyRefresh(
firstRefresh: true,
controller: _refreshController,
header: MaterialHeader(),
// footer: MaterialFooter(),
onRefresh: () async {
final SharedPreferences prefs =
await SharedPreferences.getInstance();
select = (prefs.getInt("numIndex"))!;
_viewLoading();
setState(() {});
},
child: ListView(
children: [
_getList(),
24.hb,
GestureDetector(
onTap: () {
Get.to(() => const SpecifyPhonePage());
},
child: Container(
padding:
EdgeInsets.symmetric(horizontal: 32.w, vertical: 30.w),
height: 144.w,
child: ListTile(
leading: SizedBox(
width: 72.w,
height: 72.w,
child: Image.asset(
Assets.icons.zdphone.path,
fit: BoxFit.fill,
),
),
title: Text(
"指定号码不发送",
style: TextStyle(
fontSize: 32.sp, fontWeight: FontWeight.bold),
),
subtitle: Text(
"通过添加指定号码来设置不发送",
style: TextStyle(
fontSize: 28.sp, color: const Color(0xFF999999)),
),
trailing: SizedBox(
width: 48.w,
height: 48.w,
child: const Icon(Icons.arrow_forward_ios),
)),
),
)
],
),
)
// Column(
// children: [
//
//
//
// ],
// ),
);
} }
_getList() { _getList() {
@ -125,15 +145,20 @@ class _PhoneSetPageState extends State<PhoneSetPage> {
), ),
); );
} }
Future _viewLoading() async {
Future _viewLoading() async {
final SharedPreferences prefs = await SharedPreferences.getInstance(); final SharedPreferences prefs = await SharedPreferences.getInstance();
contact = await FlutterContacts.getContacts(); contact = await FlutterContacts.getContacts();
for (var element in contact!) { for (var element in contact!) {
final full = await FlutterContacts.getContact(element.id); final full = await FlutterContacts.getContact(element.id);
numbers.add(full!.phones.first.number.replaceAll(" ","")); numbers.add(full!.phones.first.number.replaceAll(" ", ""));
// status.add(false); // status.add(false);
} }
var numberList = await ExcludeFunc.getContacts();
for (int i = 0; i < numberList.length; i++) {
numList?.add(numberList[i].phone);
}
await prefs.setStringList("specified", numList!);
await prefs.setStringList("addressList", numbers); await prefs.setStringList("addressList", numbers);
// phoneNum.clear(); // phoneNum.clear();
// final Iterable<CallLogEntry> entries = await CallLog.query(); // final Iterable<CallLogEntry> entries = await CallLog.query();
@ -159,24 +184,28 @@ class _PhoneSetPageState extends State<PhoneSetPage> {
// } // }
setState(() {}); setState(() {});
} }
_getListBox(List item, int index) { _getListBox(List item, int index) {
final service = FlutterBackgroundService(); final service = FlutterBackgroundService();
return GestureDetector( return GestureDetector(
onTap: () async{ onTap: () async {
final SharedPreferences prefs = await SharedPreferences.getInstance(); final SharedPreferences prefs = await SharedPreferences.getInstance();
select = index; select = index;
await prefs.setInt("numIndex", index); await prefs.setInt("numIndex", index);
if(await service.isRunning()){ print(await service.isRunning());
if (await service.isRunning()) {
service.invoke("stopService"); service.invoke("stopService");
Future.delayed(const Duration(seconds: 1), () async { Future.delayed(const Duration(seconds: 1), () async {
service.startService(); service.startService();
}); });
}else{ } else {
service.startService(); service.startService();
Future.delayed(const Duration(seconds: 1), () async { Future.delayed(const Duration(seconds: 2), () async {
service.invoke("stopService"); service.invoke("stopService");
}); });
} }
print( prefs.getStringList("specified"));
_refreshController.callRefresh();
// print(_selectIndex); // print(_selectIndex);
setState(() {}); setState(() {});
}, },

@ -78,6 +78,7 @@ class _MembersPageState extends State<MembersPage> {
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
body: EasyRefresh( body: EasyRefresh(
firstRefresh: true, firstRefresh: true,
@ -86,7 +87,6 @@ class _MembersPageState extends State<MembersPage> {
controller: _easyRefreshController, controller: _easyRefreshController,
onRefresh: () async { onRefresh: () async {
await UserTool.userProvider.updateUserInfo(); await UserTool.userProvider.updateUserInfo();
setState(() {}); setState(() {});
}, },
child: Stack( child: Stack(

@ -151,9 +151,7 @@ class PayUtil {
_wxPayStream?.cancel(); _wxPayStream?.cancel();
} }
Future callWxPay({ Future callWxPay({required WxPayModel payModel, }) async {
required WxPayModel payModel,
}) async {
await payWithWeChat( await payWithWeChat(
appId: 'wx3a0b41d12afef4e2', appId: 'wx3a0b41d12afef4e2',
partnerId: payModel.partnerId, partnerId: payModel.partnerId,

Loading…
Cancel
Save