@dypnb/dev-tools 1.0.11 → 1.0.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,62 +0,0 @@
1
- /**
2
- * @name WXbot
3
- * @description 获取环境变量参数,执行微信消息通知函数
4
- */
5
- import { getGlobalConfig, errorLog, successLog, } from "../utils/index.js";
6
- import { getToken, postMsg } from "./api.js";
7
-
8
- async function getWxServerConfig() {
9
- return await getGlobalConfig('wxServerConfig');
10
- }
11
-
12
- // 主函数
13
- export async function wxNotify(config, wxServerConfig) {
14
- let configs= {};
15
- if (wxServerConfig && Object.keys(wxServerConfig).length !== 0) {
16
- configs = wxServerConfig;
17
- } else {
18
- configs = await getWxServerConfig();
19
- }
20
-
21
- const { WX_COMPANY_ID, WX_APP_ID, WX_APP_SECRET } = configs ;
22
-
23
- try {
24
- // 获取token
25
- const accessToken = await getToken({
26
- id: WX_COMPANY_ID,
27
- secret: WX_APP_SECRET
28
- });
29
-
30
- // 发送消息
31
- const defaultConfig = {
32
- msgtype: "text",
33
- agentid: WX_APP_ID,
34
- ...config
35
- };
36
- const option = { ...defaultConfig, ...config };
37
- const res = await postMsg(accessToken, option);
38
- successLog("wx:信息发送成功!", res);
39
- return true;
40
- } catch (error) {
41
- errorLog("wx:信息发送失败!", error);
42
- return false;
43
- }
44
- }
45
-
46
- // wxNotify({
47
- // msgtype: "text",
48
- // text: {
49
- // content: `${moment().format('lll')}`
50
- // }
51
- // });
52
-
53
- // wxNotify({
54
- // msgtype: "textcard",
55
- // textcard: {
56
- // title: "应用发布提醒",
57
- // description:
58
- // '<div class="gray">2016年9月26日</div> <div class="normal">恭喜你抽中iPhone 7一台,领奖码:xxxx</div><div class="highlight">请于2016年10月10日前联系行政同事领取</div>',
59
- // url: "www.baidu.com",
60
- // btntxt: "更多"
61
- // }
62
- // });