This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
appcat
/
sonist
Archived
1
0
Fork 0
sonist/src/main.js

123 lines
3.0 KiB
JavaScript
Raw Normal View History

/**
* 主入口
* @author yutent<yutent@doui.cc>
* @date 2019/12/13 00:37:04
*/
'use strict'
const { app, BrowserWindow, session } = require('electron')
2018-12-26 23:58:24 +08:00
const path = require('path')
const fs = require('iofs')
const { exec } = require('child_process')
2018-12-26 23:58:24 +08:00
const log = console.log
2019-01-21 21:42:44 +08:00
const createTray = require('./tools/tray')
const createMenu = require('./tools/menu')
const createServer = require('./tools/server')
2019-01-21 21:42:44 +08:00
/* ******************************* */
/* **********修复环境变量*********** */
/* ******************************* */
let PATH_SET = new Set()
process.env.PATH.split(':').forEach(_ => {
PATH_SET.add(_)
})
PATH_SET.add('/usr/local/bin')
PATH_SET.add('/usr/local/sbin')
process.env.PATH = Array.from(PATH_SET).join(':')
PATH_SET = null
2018-12-26 23:58:24 +08:00
const ROOT = __dirname
const HOME = app.getPath('home')
2019-01-19 22:19:55 +08:00
/* ----------------------------------------------------- */
2019-01-21 21:42:44 +08:00
app.commandLine.appendSwitch('--lang', 'zh-CN')
app.commandLine.appendSwitch('--autoplay-policy', 'no-user-gesture-required')
2019-01-19 22:19:55 +08:00
2019-01-21 21:42:44 +08:00
app.setPath('appData', path.resolve(HOME, '.sonist/'))
// protocol.registerStandardSchemes(['app'], { secure: true })
2019-01-19 02:53:59 +08:00
2019-01-21 21:42:44 +08:00
let appPath = app.getPath('appData')
if (!fs.exists(appPath)) {
fs.mkdir(appPath)
fs.mkdir(path.join(appPath, 'lyrics'))
fs.mkdir(path.join(appPath, 'cache'))
fs.echo('{}', path.join(appPath, 'app.ini'))
fs.echo('[]', path.join(appPath, 'music.db'))
2019-01-19 02:53:59 +08:00
}
2019-01-19 22:19:55 +08:00
/* ----------------------------------------------------- */
createServer(ROOT)
// throw new Error('hee')
2019-01-21 21:42:44 +08:00
let win = null
2019-01-19 02:53:59 +08:00
2018-12-26 23:58:24 +08:00
function createWindow() {
// 创建浏览器窗口
win = new BrowserWindow({
title: 'sonist',
width: 1024,
2018-12-29 20:00:19 +08:00
height: 640,
2018-12-26 23:58:24 +08:00
frame: false,
resizable: false,
2019-01-19 04:33:34 +08:00
icon: path.resolve(ROOT, './images/app.png'),
2018-12-26 23:58:24 +08:00
webPreferences: {
webSecurity: false,
experimentalFeatures: true
},
show: false
2018-12-26 23:58:24 +08:00
})
// 然后加载应用的 index.html。
// win.loadURL('https://yutent.me')
win.loadURL(`http://127.0.0.1:10240/index.html`)
// win.loadURL('app://sonist/index.html')
2018-12-26 23:58:24 +08:00
}
2019-01-21 21:42:44 +08:00
/* ****************************************** */
/* ************* init ******************* */
/* ****************************************** */
2018-12-26 23:58:24 +08:00
// 创建窗口
2019-01-19 23:29:34 +08:00
app.once('ready', () => {
exec('which ffprobe', (err, res) => {
if (res) {
session.defaultSession.setUserAgent(
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'
)
createWindow()
2019-01-21 21:42:44 +08:00
createTray(win)
createMenu(win)
win.on('ready-to-show', _ => {
win.show()
})
2019-01-21 21:42:44 +08:00
win.openDevTools()
} else {
win = new BrowserWindow({
width: 600,
height: 360,
skipTaskbar: true,
maximizable: false,
minimizable: false,
resizable: false,
titleBarStyle: 'hiddenInset'
})
win.setMenuBarVisibility(false)
win.loadURL('http://127.0.0.1:10240/depends.html')
win.on('closed', _ => {
app.exit()
})
}
})
2018-12-26 23:58:24 +08:00
})
app.on('activate', _ => {
if (win) {
win.show()
}
})