123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- package me.yoqi.app.wxredpacket.services;
- import android.accessibilityservice.AccessibilityService;
- import android.accessibilityservice.GestureDescription;
- import android.app.Notification;
- import android.app.PendingIntent;
- import android.content.ComponentName;
- import android.content.Intent;
- import android.content.SharedPreferences;
- import android.content.pm.PackageManager;
- import android.graphics.Path;
- import android.graphics.Rect;
- import android.os.Bundle;
- import android.os.Parcelable;
- import android.preference.PreferenceManager;
- import android.util.DisplayMetrics;
- import android.util.Log;
- import android.view.accessibility.AccessibilityEvent;
- import android.view.accessibility.AccessibilityNodeInfo;
- import java.util.List;
- import me.yoqi.app.wxredpacket.utils.HongbaoSignature;
- import me.yoqi.app.wxredpacket.utils.PowerUtil;
- /**
- * 红包服务,后台监听微信消息,出现红包关键词就打开微信抢红包。
- */
- public class HongbaoService extends AccessibilityService implements SharedPreferences.OnSharedPreferenceChangeListener {
- private static final String WECHAT_DETAILS_EN = "Details";
- private static final String WECHAT_DETAILS_CH = "红包详情";
- private static final String WECHAT_BETTER_LUCK_EN = "Better luck next time!";
- private static final String WECHAT_BETTER_LUCK_CH = "手慢了";
- private static final String WECHAT_EXPIRES_CH = "已超过24小时";
- private static final String WECHAT_VIEW_SELF_CH = "查看红包";
- private static final String WECHAT_VIEW_OTHERS_CH = "领取红包";
- private static final String WECHAT_NOTIFICATION_TIP = "[微信红包]";
- private static final String WECHAT_LUCKMONEY_RECEIVE_ACTIVITY = "LuckyMoneyReceiveUI";
- private static final String WECHAT_LUCKMONEY_DETAIL_ACTIVITY = "LuckyMoneyDetailUI";
- private static final String WECHAT_LUCKMONEY_GENERAL_ACTIVITY = "LauncherUI";
- private static final String WECHAT_LUCKMONEY_CHATTING_ACTIVITY = "ChattingUI";
- private String currentActivityName = WECHAT_LUCKMONEY_GENERAL_ACTIVITY;
- private AccessibilityNodeInfo rootNodeInfo, mReceiveNode, mUnpackNode;
- private boolean mLuckyMoneyPicked, mLuckyMoneyReceived;
- private int mUnpackCount = 0;
- private boolean mMutex = false, mListMutex = false, mChatMutex = false;
- private HongbaoSignature signature = new HongbaoSignature();
- private PowerUtil powerUtil;
- private SharedPreferences sharedPreferences;
- /**
- * AccessibilityEvent,收到event,过滤红包信息
- *
- * @param event 事件
- */
- @Override
- public void onAccessibilityEvent(AccessibilityEvent event) {
- if (sharedPreferences == null) return;
- setCurrentActivityName(event);
- /* 检测通知消息 */
- if (!mMutex) {
- if (sharedPreferences.getBoolean("pref_watch_notification", false) && watchNotifications(event))
- return;
- if (sharedPreferences.getBoolean("pref_watch_list", false) && watchList(event)) return;
- mListMutex = false;
- }
- if (!mChatMutex) {
- mChatMutex = true;
- if (sharedPreferences.getBoolean("pref_watch_chat", false)) watchChat(event);
- mChatMutex = false;
- }
- }
- /** 监听是否进入微信红包消息界面
- * @param event
- */
- private void watchChat(AccessibilityEvent event) {
- Log.i("hongbaoservice","watchChat");
- this.rootNodeInfo = getRootInActiveWindow();
- if (rootNodeInfo == null) return;
- mReceiveNode = null;
- mUnpackNode = null;
- checkNodeInfo(event.getEventType());
- /* 如果已经接收到红包并且还没有戳开 */
- if (mLuckyMoneyReceived && !mLuckyMoneyPicked && (mReceiveNode != null)) {
- mMutex = true;
- mReceiveNode.getParent().performAction(AccessibilityNodeInfo.ACTION_CLICK);
- mLuckyMoneyReceived = false;
- mLuckyMoneyPicked = true;
- }
- /* 如果戳开但还未领取 */
- if (mUnpackCount == 1 && (mUnpackNode != null)) {
- int delayFlag = sharedPreferences.getInt("pref_open_delay", 0) * 1000;
- new android.os.Handler().postDelayed(
- new Runnable() {
- public void run() {
- try {
- openPacket();
- } catch (Exception e) {
- mMutex = false;
- mLuckyMoneyPicked = false;
- mUnpackCount = 0;
- }
- }
- },
- delayFlag);
- }
- }
- /**
- * 点击“打开”,收红包
- */
- private void openPacket() {
- Log.i("hongbaoservice","openPacket");
- DisplayMetrics metrics = getResources().getDisplayMetrics();
- float dpi = metrics.density;
- if (android.os.Build.VERSION.SDK_INT <= 23) {
- mUnpackNode.performAction(AccessibilityNodeInfo.ACTION_CLICK);
- } else {
- if (android.os.Build.VERSION.SDK_INT > 23) {
- Path path = new Path();
- if (640 == dpi) {
- path.moveTo(720, 1575);
- } else {
- path.moveTo(540, 1060);
- }
- GestureDescription.Builder builder = new GestureDescription.Builder();
- GestureDescription gestureDescription = builder.addStroke(new GestureDescription.StrokeDescription(path, 450, 50)).build();
- dispatchGesture(gestureDescription, new GestureResultCallback() {
- @Override
- public void onCompleted(GestureDescription gestureDescription) {
- Log.d("test", "onCompleted");
- mMutex = false;
- super.onCompleted(gestureDescription);
- }
- @Override
- public void onCancelled(GestureDescription gestureDescription) {
- Log.d("test", "onCancelled");
- mMutex = false;
- super.onCancelled(gestureDescription);
- }
- }, null);
- }
- }
- }
- /**
- * 返回桌面
- */
- private void back2Home() {
- Intent home=new Intent(Intent.ACTION_MAIN);
- home.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- home.addCategory(Intent.CATEGORY_HOME);
- startActivity(home);
- }
- /**
- * @param event
- */
- private void setCurrentActivityName(AccessibilityEvent event) {
- if (event.getEventType() != AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) {
- return;
- }
- try {
- ComponentName componentName = new ComponentName(
- event.getPackageName().toString(),
- event.getClassName().toString()
- );
- getPackageManager().getActivityInfo(componentName, 0);
- currentActivityName = componentName.flattenToShortString();
- } catch (PackageManager.NameNotFoundException e) {
- currentActivityName = WECHAT_LUCKMONEY_GENERAL_ACTIVITY;
- }
- }
- /** 监视进入微信app聊天列表:case AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED
- * @param event
- * @return
- */
- private boolean watchList(AccessibilityEvent event) {
- Log.i("hongbaoservice","watchList");
- if (mListMutex) return false;
- mListMutex = true;
- AccessibilityNodeInfo eventSource = event.getSource();
- // Not a message
- if (event.getEventType() != AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED || eventSource == null)
- return false;
- List<AccessibilityNodeInfo> nodes = eventSource.findAccessibilityNodeInfosByText(WECHAT_NOTIFICATION_TIP);
- //避免当订阅号中出现标题为“[微信红包]拜年红包”(其实并非红包)的信息时误判
- //判断是否是微信聊天界面com.tencent.mm.ui.LauncherUI
- if (!nodes.isEmpty() && currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY)) {
- AccessibilityNodeInfo nodeToClick = nodes.get(0);
- if (nodeToClick == null) return false;
- CharSequence contentDescription = nodeToClick.getContentDescription();
- if (contentDescription != null && !signature.getContentDescription().equals(contentDescription)) {
- nodeToClick.performAction(AccessibilityNodeInfo.ACTION_CLICK);
- signature.setContentDescription(contentDescription.toString());
- return true;
- }
- }
- return false;
- }
- /** 监听通知栏消息,判断红包
- * @param event
- * @return
- */
- private boolean watchNotifications(AccessibilityEvent event) {
- Log.i("hongbaoservice","watchNotifications");
- // Not a notification
- if (event.getEventType() != AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED)
- return false;
- // Not a hongbao
- String tip = event.getText().toString();
- if (!tip.contains(WECHAT_NOTIFICATION_TIP)) return true;
- Parcelable parcelable = event.getParcelableData();
- if (parcelable instanceof Notification) {
- Notification notification = (Notification) parcelable;
- try {
- /* 清除signature,避免进入会话后误判 */
- signature.cleanSignature();
- // 模拟打开通知栏消息
- notification.contentIntent.send();
- } catch (PendingIntent.CanceledException e) {
- e.printStackTrace();
- }
- }
- return true;
- }
- @Override
- public void onInterrupt() {
- Log.d("HongbaoService", "抢红包服务快被终结了");
- }
- /** 找到红包节点按钮
- * @param node 输入的根节点
- * @return
- */
- private AccessibilityNodeInfo findOpenButton(AccessibilityNodeInfo node) {
- if (node == null)
- return null;
- //非layout元素
- if (node.getChildCount() == 0) {
- if ("android.widget.Button".equals(node.getClassName()))
- return node;
- else
- return null;
- }
- //layout元素,遍历找button
- AccessibilityNodeInfo button;
- for (int i = 0; i < node.getChildCount(); i++) {
- button = findOpenButton(node.getChild(i));
- if (button != null)
- return button;
- }
- return null;
- }
- /** 检测红包节点,mReceiveNode
- * @param eventType
- */
- private void checkNodeInfo(int eventType) {
- if (this.rootNodeInfo == null) return;
- if (signature.commentString != null) {
- sendComment();
- signature.commentString = null;
- }
- /* 聊天会话窗口,遍历节点匹配“领取红包”和"查看红包" */
- AccessibilityNodeInfo node1 = (sharedPreferences.getBoolean("pref_watch_self", false)) ?
- this.getTheLastNode(WECHAT_VIEW_OTHERS_CH, WECHAT_VIEW_SELF_CH) : this.getTheLastNode(WECHAT_VIEW_OTHERS_CH);
- if (node1 != null &&
- (currentActivityName.contains(WECHAT_LUCKMONEY_CHATTING_ACTIVITY)
- || currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY))) {
- String excludeWords = sharedPreferences.getString("pref_watch_exclude_words", "");
- if (this.signature.generateSignature(node1, excludeWords)) {
- mLuckyMoneyReceived = true;
- mReceiveNode = node1;
- Log.d("sig", this.signature.toString());
- }
- return;
- }
- /* 戳开红包,红包还没抢完,遍历节点匹配“拆红包” */
- AccessibilityNodeInfo node2 = findOpenButton(this.rootNodeInfo);
- if (node2 != null && "android.widget.Button".equals(node2.getClassName()) && currentActivityName.contains(WECHAT_LUCKMONEY_RECEIVE_ACTIVITY)) {
- mUnpackNode = node2;
- mUnpackCount += 1;
- return;
- }
- /* 戳开红包,红包已被抢完,遍历节点匹配“红包详情”和“手慢了” */
- boolean hasNodes = this.hasOneOfThoseNodes(
- WECHAT_BETTER_LUCK_CH, WECHAT_DETAILS_CH,
- WECHAT_BETTER_LUCK_EN, WECHAT_DETAILS_EN, WECHAT_EXPIRES_CH);
- //判断是否是红包领取后的详情界面 //判断是否是显示‘开'的那个红包界面com.tencent.mm.plugin.luckymoney.ui.LuckyMoneyReceiveUI
- if (mMutex && eventType == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED && hasNodes
- && (currentActivityName.contains(WECHAT_LUCKMONEY_DETAIL_ACTIVITY)
- || currentActivityName.contains(WECHAT_LUCKMONEY_RECEIVE_ACTIVITY))) {
- mMutex = false;
- mLuckyMoneyPicked = false;
- mUnpackCount = 0;
- performGlobalAction(GLOBAL_ACTION_BACK);
- signature.commentString = generateCommentString();
- }
- }
- /**
- * 发送回复
- */
- private void sendComment() {
- try {
- AccessibilityNodeInfo outNode =
- getRootInActiveWindow().getChild(0).getChild(0);
- AccessibilityNodeInfo nodeToInput = outNode.getChild(outNode.getChildCount() - 1).getChild(0).getChild(1);
- if ("android.widget.EditText".equals(nodeToInput.getClassName())) {
- Bundle arguments = new Bundle();
- arguments.putCharSequence(AccessibilityNodeInfo
- .ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE, signature.commentString);
- nodeToInput.performAction(AccessibilityNodeInfo.ACTION_SET_TEXT, arguments);
- }
- } catch (Exception e) {
- // Not supported
- }
- }
- /**
- * @param texts
- * @return
- */
- private boolean hasOneOfThoseNodes(String... texts) {
- List<AccessibilityNodeInfo> nodes;
- for (String text : texts) {
- if (text == null) continue;
- nodes = this.rootNodeInfo.findAccessibilityNodeInfosByText(text);
- if (nodes != null && !nodes.isEmpty()) return true;
- }
- return false;
- }
- /**
- * @param texts
- * @return
- */
- private AccessibilityNodeInfo getTheLastNode(String... texts) {
- int bottom = 0;
- AccessibilityNodeInfo lastNode = null, tempNode;
- List<AccessibilityNodeInfo> nodes;
- for (String text : texts) {
- if (text == null) continue;
- nodes = this.rootNodeInfo.findAccessibilityNodeInfosByText(text);
- if (nodes != null && !nodes.isEmpty()) {
- tempNode = nodes.get(nodes.size() - 1);
- if (tempNode == null) return null;
- Rect bounds = new Rect();
- tempNode.getBoundsInScreen(bounds);
- if (bounds.bottom > bottom) {
- bottom = bounds.bottom;
- lastNode = tempNode;
- signature.others = text.equals(WECHAT_VIEW_OTHERS_CH);
- }
- }
- }
- return lastNode;
- }
- @Override
- public void onServiceConnected() {
- super.onServiceConnected();
- this.watchFlagsFromPreference();
- }
- /**
- * 如果设置了锁屏抢则,解锁屏幕
- */
- private void watchFlagsFromPreference() {
- sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
- sharedPreferences.registerOnSharedPreferenceChangeListener(this);
- this.powerUtil = new PowerUtil(this);
- Boolean watchOnLockFlag = sharedPreferences.getBoolean("pref_watch_on_lock", false);
- this.powerUtil.handleWakeLock(watchOnLockFlag);
- }
- @Override
- public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
- if (key.equals("pref_watch_on_lock")) {
- Boolean changedValue = sharedPreferences.getBoolean(key, false);
- this.powerUtil.handleWakeLock(changedValue);
- }
- }
- @Override
- public void onDestroy() {
- this.powerUtil.handleWakeLock(false);
- super.onDestroy();
- }
- /** 获取回复字符串
- * @return 返回回复字符串
- */
- private String generateCommentString() {
- if (!signature.others) return null;
- Boolean needComment = sharedPreferences.getBoolean("pref_comment_switch", false);
- if (!needComment) return null;
- String[] wordsArray = sharedPreferences.getString("pref_comment_words", "").split(" +");
- if (wordsArray.length == 0) return null;
- Boolean atSender = sharedPreferences.getBoolean("pref_comment_at", false);
- if (atSender) {
- return "@" + signature.sender + " " + wordsArray[(int) (Math.random() * wordsArray.length)];
- } else {
- return wordsArray[(int) (Math.random() * wordsArray.length)];
- }
- }
- }
|