HongbaoService.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. package me.yoqi.app.wxredpacket.services;
  2. import android.accessibilityservice.AccessibilityService;
  3. import android.accessibilityservice.GestureDescription;
  4. import android.app.Notification;
  5. import android.app.PendingIntent;
  6. import android.content.ComponentName;
  7. import android.content.Intent;
  8. import android.content.SharedPreferences;
  9. import android.content.pm.PackageManager;
  10. import android.graphics.Path;
  11. import android.graphics.Rect;
  12. import android.os.Bundle;
  13. import android.os.Parcelable;
  14. import android.preference.PreferenceManager;
  15. import android.util.DisplayMetrics;
  16. import android.util.Log;
  17. import android.view.accessibility.AccessibilityEvent;
  18. import android.view.accessibility.AccessibilityNodeInfo;
  19. import java.util.List;
  20. import me.yoqi.app.wxredpacket.utils.HongbaoSignature;
  21. import me.yoqi.app.wxredpacket.utils.PowerUtil;
  22. /**
  23. * 红包服务,后台监听微信消息,出现红包关键词就打开微信抢红包。
  24. */
  25. public class HongbaoService extends AccessibilityService implements SharedPreferences.OnSharedPreferenceChangeListener {
  26. private static final String WECHAT_DETAILS_EN = "Details";
  27. private static final String WECHAT_DETAILS_CH = "红包详情";
  28. private static final String WECHAT_BETTER_LUCK_EN = "Better luck next time!";
  29. private static final String WECHAT_BETTER_LUCK_CH = "手慢了";
  30. private static final String WECHAT_EXPIRES_CH = "已超过24小时";
  31. private static final String WECHAT_VIEW_SELF_CH = "查看红包";
  32. private static final String WECHAT_VIEW_OTHERS_CH = "领取红包";
  33. private static final String WECHAT_NOTIFICATION_TIP = "[微信红包]";
  34. private static final String WECHAT_LUCKMONEY_RECEIVE_ACTIVITY = "LuckyMoneyReceiveUI";
  35. private static final String WECHAT_LUCKMONEY_DETAIL_ACTIVITY = "LuckyMoneyDetailUI";
  36. private static final String WECHAT_LUCKMONEY_GENERAL_ACTIVITY = "LauncherUI";
  37. private static final String WECHAT_LUCKMONEY_CHATTING_ACTIVITY = "ChattingUI";
  38. private String currentActivityName = WECHAT_LUCKMONEY_GENERAL_ACTIVITY;
  39. private AccessibilityNodeInfo rootNodeInfo, mReceiveNode, mUnpackNode;
  40. private boolean mLuckyMoneyPicked, mLuckyMoneyReceived;
  41. private int mUnpackCount = 0;
  42. private boolean mMutex = false, mListMutex = false, mChatMutex = false;
  43. private HongbaoSignature signature = new HongbaoSignature();
  44. private PowerUtil powerUtil;
  45. private SharedPreferences sharedPreferences;
  46. /**
  47. * AccessibilityEvent,收到event,过滤红包信息
  48. *
  49. * @param event 事件
  50. */
  51. @Override
  52. public void onAccessibilityEvent(AccessibilityEvent event) {
  53. if (sharedPreferences == null) return;
  54. setCurrentActivityName(event);
  55. /* 检测通知消息 */
  56. if (!mMutex) {
  57. if (sharedPreferences.getBoolean("pref_watch_notification", false) && watchNotifications(event))
  58. return;
  59. if (sharedPreferences.getBoolean("pref_watch_list", false) && watchList(event)) return;
  60. mListMutex = false;
  61. }
  62. if (!mChatMutex) {
  63. mChatMutex = true;
  64. if (sharedPreferences.getBoolean("pref_watch_chat", false)) watchChat(event);
  65. mChatMutex = false;
  66. }
  67. }
  68. /** 监听是否进入微信红包消息界面
  69. * @param event
  70. */
  71. private void watchChat(AccessibilityEvent event) {
  72. Log.i("hongbaoservice","watchChat");
  73. this.rootNodeInfo = getRootInActiveWindow();
  74. if (rootNodeInfo == null) return;
  75. mReceiveNode = null;
  76. mUnpackNode = null;
  77. checkNodeInfo(event.getEventType());
  78. /* 如果已经接收到红包并且还没有戳开 */
  79. if (mLuckyMoneyReceived && !mLuckyMoneyPicked && (mReceiveNode != null)) {
  80. mMutex = true;
  81. mReceiveNode.getParent().performAction(AccessibilityNodeInfo.ACTION_CLICK);
  82. mLuckyMoneyReceived = false;
  83. mLuckyMoneyPicked = true;
  84. }
  85. /* 如果戳开但还未领取 */
  86. if (mUnpackCount == 1 && (mUnpackNode != null)) {
  87. int delayFlag = sharedPreferences.getInt("pref_open_delay", 0) * 1000;
  88. new android.os.Handler().postDelayed(
  89. new Runnable() {
  90. public void run() {
  91. try {
  92. openPacket();
  93. } catch (Exception e) {
  94. mMutex = false;
  95. mLuckyMoneyPicked = false;
  96. mUnpackCount = 0;
  97. }
  98. }
  99. },
  100. delayFlag);
  101. }
  102. }
  103. /**
  104. * 点击“打开”,收红包
  105. */
  106. private void openPacket() {
  107. Log.i("hongbaoservice","openPacket");
  108. DisplayMetrics metrics = getResources().getDisplayMetrics();
  109. float dpi = metrics.density;
  110. if (android.os.Build.VERSION.SDK_INT <= 23) {
  111. mUnpackNode.performAction(AccessibilityNodeInfo.ACTION_CLICK);
  112. } else {
  113. if (android.os.Build.VERSION.SDK_INT > 23) {
  114. Path path = new Path();
  115. if (640 == dpi) {
  116. path.moveTo(720, 1575);
  117. } else {
  118. path.moveTo(540, 1060);
  119. }
  120. GestureDescription.Builder builder = new GestureDescription.Builder();
  121. GestureDescription gestureDescription = builder.addStroke(new GestureDescription.StrokeDescription(path, 450, 50)).build();
  122. dispatchGesture(gestureDescription, new GestureResultCallback() {
  123. @Override
  124. public void onCompleted(GestureDescription gestureDescription) {
  125. Log.d("test", "onCompleted");
  126. mMutex = false;
  127. super.onCompleted(gestureDescription);
  128. }
  129. @Override
  130. public void onCancelled(GestureDescription gestureDescription) {
  131. Log.d("test", "onCancelled");
  132. mMutex = false;
  133. super.onCancelled(gestureDescription);
  134. }
  135. }, null);
  136. }
  137. }
  138. }
  139. /**
  140. * 返回桌面
  141. */
  142. private void back2Home() {
  143. Intent home=new Intent(Intent.ACTION_MAIN);
  144. home.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  145. home.addCategory(Intent.CATEGORY_HOME);
  146. startActivity(home);
  147. }
  148. /**
  149. * @param event
  150. */
  151. private void setCurrentActivityName(AccessibilityEvent event) {
  152. if (event.getEventType() != AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) {
  153. return;
  154. }
  155. try {
  156. ComponentName componentName = new ComponentName(
  157. event.getPackageName().toString(),
  158. event.getClassName().toString()
  159. );
  160. getPackageManager().getActivityInfo(componentName, 0);
  161. currentActivityName = componentName.flattenToShortString();
  162. } catch (PackageManager.NameNotFoundException e) {
  163. currentActivityName = WECHAT_LUCKMONEY_GENERAL_ACTIVITY;
  164. }
  165. }
  166. /** 监视进入微信app聊天列表:case AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED
  167. * @param event
  168. * @return
  169. */
  170. private boolean watchList(AccessibilityEvent event) {
  171. Log.i("hongbaoservice","watchList");
  172. if (mListMutex) return false;
  173. mListMutex = true;
  174. AccessibilityNodeInfo eventSource = event.getSource();
  175. // Not a message
  176. if (event.getEventType() != AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED || eventSource == null)
  177. return false;
  178. List<AccessibilityNodeInfo> nodes = eventSource.findAccessibilityNodeInfosByText(WECHAT_NOTIFICATION_TIP);
  179. //避免当订阅号中出现标题为“[微信红包]拜年红包”(其实并非红包)的信息时误判
  180. //判断是否是微信聊天界面com.tencent.mm.ui.LauncherUI
  181. if (!nodes.isEmpty() && currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY)) {
  182. AccessibilityNodeInfo nodeToClick = nodes.get(0);
  183. if (nodeToClick == null) return false;
  184. CharSequence contentDescription = nodeToClick.getContentDescription();
  185. if (contentDescription != null && !signature.getContentDescription().equals(contentDescription)) {
  186. nodeToClick.performAction(AccessibilityNodeInfo.ACTION_CLICK);
  187. signature.setContentDescription(contentDescription.toString());
  188. return true;
  189. }
  190. }
  191. return false;
  192. }
  193. /** 监听通知栏消息,判断红包
  194. * @param event
  195. * @return
  196. */
  197. private boolean watchNotifications(AccessibilityEvent event) {
  198. Log.i("hongbaoservice","watchNotifications");
  199. // Not a notification
  200. if (event.getEventType() != AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED)
  201. return false;
  202. // Not a hongbao
  203. String tip = event.getText().toString();
  204. if (!tip.contains(WECHAT_NOTIFICATION_TIP)) return true;
  205. Parcelable parcelable = event.getParcelableData();
  206. if (parcelable instanceof Notification) {
  207. Notification notification = (Notification) parcelable;
  208. try {
  209. /* 清除signature,避免进入会话后误判 */
  210. signature.cleanSignature();
  211. // 模拟打开通知栏消息
  212. notification.contentIntent.send();
  213. } catch (PendingIntent.CanceledException e) {
  214. e.printStackTrace();
  215. }
  216. }
  217. return true;
  218. }
  219. @Override
  220. public void onInterrupt() {
  221. Log.d("HongbaoService", "抢红包服务快被终结了");
  222. }
  223. /** 找到红包节点按钮
  224. * @param node 输入的根节点
  225. * @return
  226. */
  227. private AccessibilityNodeInfo findOpenButton(AccessibilityNodeInfo node) {
  228. if (node == null)
  229. return null;
  230. //非layout元素
  231. if (node.getChildCount() == 0) {
  232. if ("android.widget.Button".equals(node.getClassName()))
  233. return node;
  234. else
  235. return null;
  236. }
  237. //layout元素,遍历找button
  238. AccessibilityNodeInfo button;
  239. for (int i = 0; i < node.getChildCount(); i++) {
  240. button = findOpenButton(node.getChild(i));
  241. if (button != null)
  242. return button;
  243. }
  244. return null;
  245. }
  246. /** 检测红包节点,mReceiveNode
  247. * @param eventType
  248. */
  249. private void checkNodeInfo(int eventType) {
  250. if (this.rootNodeInfo == null) return;
  251. if (signature.commentString != null) {
  252. sendComment();
  253. signature.commentString = null;
  254. }
  255. /* 聊天会话窗口,遍历节点匹配“领取红包”和"查看红包" */
  256. AccessibilityNodeInfo node1 = (sharedPreferences.getBoolean("pref_watch_self", false)) ?
  257. this.getTheLastNode(WECHAT_VIEW_OTHERS_CH, WECHAT_VIEW_SELF_CH) : this.getTheLastNode(WECHAT_VIEW_OTHERS_CH);
  258. if (node1 != null &&
  259. (currentActivityName.contains(WECHAT_LUCKMONEY_CHATTING_ACTIVITY)
  260. || currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY))) {
  261. String excludeWords = sharedPreferences.getString("pref_watch_exclude_words", "");
  262. if (this.signature.generateSignature(node1, excludeWords)) {
  263. mLuckyMoneyReceived = true;
  264. mReceiveNode = node1;
  265. Log.d("sig", this.signature.toString());
  266. }
  267. return;
  268. }
  269. /* 戳开红包,红包还没抢完,遍历节点匹配“拆红包” */
  270. AccessibilityNodeInfo node2 = findOpenButton(this.rootNodeInfo);
  271. if (node2 != null && "android.widget.Button".equals(node2.getClassName()) && currentActivityName.contains(WECHAT_LUCKMONEY_RECEIVE_ACTIVITY)) {
  272. mUnpackNode = node2;
  273. mUnpackCount += 1;
  274. return;
  275. }
  276. /* 戳开红包,红包已被抢完,遍历节点匹配“红包详情”和“手慢了” */
  277. boolean hasNodes = this.hasOneOfThoseNodes(
  278. WECHAT_BETTER_LUCK_CH, WECHAT_DETAILS_CH,
  279. WECHAT_BETTER_LUCK_EN, WECHAT_DETAILS_EN, WECHAT_EXPIRES_CH);
  280. //判断是否是红包领取后的详情界面 //判断是否是显示‘开'的那个红包界面com.tencent.mm.plugin.luckymoney.ui.LuckyMoneyReceiveUI
  281. if (mMutex && eventType == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED && hasNodes
  282. && (currentActivityName.contains(WECHAT_LUCKMONEY_DETAIL_ACTIVITY)
  283. || currentActivityName.contains(WECHAT_LUCKMONEY_RECEIVE_ACTIVITY))) {
  284. mMutex = false;
  285. mLuckyMoneyPicked = false;
  286. mUnpackCount = 0;
  287. performGlobalAction(GLOBAL_ACTION_BACK);
  288. signature.commentString = generateCommentString();
  289. }
  290. }
  291. /**
  292. * 发送回复
  293. */
  294. private void sendComment() {
  295. try {
  296. AccessibilityNodeInfo outNode =
  297. getRootInActiveWindow().getChild(0).getChild(0);
  298. AccessibilityNodeInfo nodeToInput = outNode.getChild(outNode.getChildCount() - 1).getChild(0).getChild(1);
  299. if ("android.widget.EditText".equals(nodeToInput.getClassName())) {
  300. Bundle arguments = new Bundle();
  301. arguments.putCharSequence(AccessibilityNodeInfo
  302. .ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE, signature.commentString);
  303. nodeToInput.performAction(AccessibilityNodeInfo.ACTION_SET_TEXT, arguments);
  304. }
  305. } catch (Exception e) {
  306. // Not supported
  307. }
  308. }
  309. /**
  310. * @param texts
  311. * @return
  312. */
  313. private boolean hasOneOfThoseNodes(String... texts) {
  314. List<AccessibilityNodeInfo> nodes;
  315. for (String text : texts) {
  316. if (text == null) continue;
  317. nodes = this.rootNodeInfo.findAccessibilityNodeInfosByText(text);
  318. if (nodes != null && !nodes.isEmpty()) return true;
  319. }
  320. return false;
  321. }
  322. /**
  323. * @param texts
  324. * @return
  325. */
  326. private AccessibilityNodeInfo getTheLastNode(String... texts) {
  327. int bottom = 0;
  328. AccessibilityNodeInfo lastNode = null, tempNode;
  329. List<AccessibilityNodeInfo> nodes;
  330. for (String text : texts) {
  331. if (text == null) continue;
  332. nodes = this.rootNodeInfo.findAccessibilityNodeInfosByText(text);
  333. if (nodes != null && !nodes.isEmpty()) {
  334. tempNode = nodes.get(nodes.size() - 1);
  335. if (tempNode == null) return null;
  336. Rect bounds = new Rect();
  337. tempNode.getBoundsInScreen(bounds);
  338. if (bounds.bottom > bottom) {
  339. bottom = bounds.bottom;
  340. lastNode = tempNode;
  341. signature.others = text.equals(WECHAT_VIEW_OTHERS_CH);
  342. }
  343. }
  344. }
  345. return lastNode;
  346. }
  347. @Override
  348. public void onServiceConnected() {
  349. super.onServiceConnected();
  350. this.watchFlagsFromPreference();
  351. }
  352. /**
  353. * 如果设置了锁屏抢则,解锁屏幕
  354. */
  355. private void watchFlagsFromPreference() {
  356. sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
  357. sharedPreferences.registerOnSharedPreferenceChangeListener(this);
  358. this.powerUtil = new PowerUtil(this);
  359. Boolean watchOnLockFlag = sharedPreferences.getBoolean("pref_watch_on_lock", false);
  360. this.powerUtil.handleWakeLock(watchOnLockFlag);
  361. }
  362. @Override
  363. public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
  364. if (key.equals("pref_watch_on_lock")) {
  365. Boolean changedValue = sharedPreferences.getBoolean(key, false);
  366. this.powerUtil.handleWakeLock(changedValue);
  367. }
  368. }
  369. @Override
  370. public void onDestroy() {
  371. this.powerUtil.handleWakeLock(false);
  372. super.onDestroy();
  373. }
  374. /** 获取回复字符串
  375. * @return 返回回复字符串
  376. */
  377. private String generateCommentString() {
  378. if (!signature.others) return null;
  379. Boolean needComment = sharedPreferences.getBoolean("pref_comment_switch", false);
  380. if (!needComment) return null;
  381. String[] wordsArray = sharedPreferences.getString("pref_comment_words", "").split(" +");
  382. if (wordsArray.length == 0) return null;
  383. Boolean atSender = sharedPreferences.getBoolean("pref_comment_at", false);
  384. if (atSender) {
  385. return "@" + signature.sender + " " + wordsArray[(int) (Math.random() * wordsArray.length)];
  386. } else {
  387. return wordsArray[(int) (Math.random() * wordsArray.length)];
  388. }
  389. }
  390. }