-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
187 lines (167 loc) · 5.66 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// Electron
const { app, BrowserWindow, ipcMain, dialog, session, protocol } = require('electron')
// Other
var fs = require('fs');
const mm = require('music-metadata');
const path = require('path')
function createWindow() {
const mainWindow = new BrowserWindow({
minWidth: 800,
minHeight: 600,
frame: false,
transparent: true,
webPreferences: {
nodeIntegration: false,
preload: __dirname + '/preload.js',
contextIsolation: true,
partition: true,
webSecurity: true,
devTools: false
}
})
mainWindow.loadURL(`file://${path.join(__dirname, '/build/index.html')}`)
ipcMain.on('minimize', () => {
mainWindow.minimize()
})
ipcMain.on('maximize', () => {
if (mainWindow.isMaximized()) {
mainWindow.unmaximize()
} else {
mainWindow.maximize()
}
})
ipcMain.on('close', () => {
mainWindow.close()
})
// ipcMain when user wants to import a folder
ipcMain.on('request-data-folder', (event, arg) => {
dialog
.showOpenDialog({
properties: [
'openDirectory'
],
})
.then(result => {
if (!result.canceled) {
fs.readdir(
result.filePaths[0],
{ withFileTypes: true },
(err, files) => {
if (err) {
event.reply('asynchronous-reply1', [
result.canceled,
result.filePaths,
])
}
// Sort out files that are in invalid form
var acceptedFiles = []
files.map((file) => {
if (file.name.includes('.mp3') || file.name.includes('.wav') || file.name.includes('.ogg')) {
acceptedFiles.push({ name: file.name })
}
})
if (files[0]) {
let prefix = result.filePaths + '/'
let newSongs = acceptedFiles.map((song) => {
return [song.name.split('.')[0], prefix + song.name]
})
var songsUrlData = []
var songsUrlData2 = []
var songsNameData = []
var songsMetadata = []
newSongs.map((song) => {
songsUrlData.push(song[1])
songsUrlData2.push(song[1])
songsNameData.push(song[0])
})
parseFiles = (audioFiles) => {
const audioFile = audioFiles.shift();
if (audioFile) {
return mm.parseFile(audioFile, { duration: true }).then(metadata => {
songsMetadata.push(metadata)
return parseFiles(audioFiles);
})
}
return Promise.resolve('Success').then(() => {
event.sender.send('asynchronous-reply1', { path: songsUrlData2, other: [false, '', songsNameData, songsMetadata, newSongs] })
}).catch(function (err) {
console.log('catch error: ', err);
})
}
parseFiles(songsUrlData)
}
},
)
} else {
event.reply('asynchronous-reply1', [result.canceled, result.filePaths])
}
}).catch(err => {
console.log(err)
})
})
// ipcMain when user wants to import a file
ipcMain.on('request-data-file', (event, arg) => {
dialog
.showOpenDialog({
properties: [
'openFile'
],
filters: [
{ name: 'Audio', extensions: ['mp3', 'wav', 'ogg'] },
{ name: 'All Files', extensions: ['*'] }
]
})
.then(result => {
if (!result.canceled) {
let fileURL = result.filePaths[0]
// Check if file is in valid form, if not throw error in frontend
if (fileURL.includes(".mp3") || fileURL.includes(".wav") || fileURL.includes(".ogg")) {
let fileName = path.parse(result.filePaths[0]).name
parseOneFile = (audioFile) => {
if (audioFile) {
return mm.parseFile(audioFile).then(metadata => {
event.sender.send('asynchronous-reply2', { path: fileURL, other: [false, '', fileName, metadata] })
})
}
}
parseOneFile(fileURL)
} else {
event.reply('error - invalid file type', fileURL)
}
} else {
event.reply('asynchronous-reply2', [result.canceled, result.filePaths])
}
}).catch(err => {
console.log("Warning ERROR : " + err)
})
})
}
app.whenReady().then(() => {
/* session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
callback({
responseHeaders: {
...details.responseHeaders,
'Content-Security-Policy': ['default-src \'none\' \'unsafe-inline\' data: filesystem:']
}
})
}) */
protocol.registerFileProtocol('my-magic-protocol', (request, callback) => {
const url = request.url.replace('my-magic-protocol://getMediaFile/', '')
try {
return callback(url)
}
catch (error) {
console.error(error)
return callback(404)
}
})
app.commandLine.appendSwitch('enable-transparent-visuals');
app.commandLine.appendSwitch('disable-gpu');
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})