forked from sunxcode/douyin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
153 lines (136 loc) · 3.13 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
const {
app,
BrowserWindow
} = require("electron");
const ipc = require('electron').ipcMain
const electronLocalshortcut = require("electron-localshortcut");
const axios = require('axios');
var userData = app.getPath('userData');
let Datastore = require('nedb'),
db = new Datastore({
filename: userData + '/love.db',
autoload: true
});
let win, pageUrl;
function getPageUrl() {
axios.get('https://dy.lujianqiang.com', {
timeout: 4000
})
.then(function (response) {
if (response.data.code === 0) {
win.webContents.send('refresh', {
url: response.data.url,
comments: response.data.comments
});
isLoved(response.data.url);
} else {
win.webContents.send('error', response.data.message);
}
})
.catch(function (error) {
win.webContents.send('error', '请求失败,请检查网络环境以及与服务器连接是否正常');
});
}
function checkUpdate() {
axios.get('https://dy.lujianqiang.com/version', {
timeout: 4000
})
.then(function (response) {
var package = require("./package.json");
if (package.version < response.data.currentVersion) {
if (package.version < response.data.supportedVersion) {
win.loadFile("update.html");
} else {
win.webContents.send('version', null);
}
}
});
}
function createWindow() {
win = new BrowserWindow({
width: 350,
height: 750,
webPreferences: {
webSecurity: false
}
});
electronLocalshortcut.register(win, "Down", () => {
getPageUrl();
});
win.on("closed", () => {
win = null;
});
}
function isLoved(url) {
db.find({
url
}, function (err, docs) {
if (docs.length > 0) {
win.webContents.send('isLoved', true);
} else {
win.webContents.send('isLoved', false);
}
});
}
app.on("ready", () => {
createWindow();
win.loadFile("recommend.html");
});
app.on("activate", () => {
if (win === null) {
createWindow();
win.loadFile("recommend.html");
}
});
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});
ipc.on('checkUpdate', function (event, message) {
checkUpdate();
});
ipc.on('refresh', function (event, message) {
if (pageUrl == null) {
getPageUrl();
} else {
win.webContents.send('refresh', {
url: pageUrl,
comments: []
});
isLoved(pageUrl);
pageUrl = null;
}
});
ipc.on('changeTab', function (event, message) {
win.loadFile(message);
});
ipc.on('play', function (event, url) {
if (url !== '') {
pageUrl = url;
}
win.loadFile("recommend.html");
});
ipc.on('love', function (event, message) {
var doc = {
"url": message.url,
"description": message.description,
"cover": message.cover,
"time": Date.now()
};
db.insert(doc, function (err, newDoc) {
isLoved(message.url);
});
});
ipc.on('unlove', function (event, url) {
db.remove({
url
}, {}, function (err, numRemoved) {
isLoved(url);
});
});
ipc.on('listLove', function (event, message) {
db.find({}, function (err, docs) {
win.webContents.send('listLove', docs);
})
});