fix: 重构加速服务传参方式,修复用户名中间有空格时安装根证书目录位置不对的bug

pull/180/head
xiaojunnuo 2020-11-25 01:25:47 +08:00
parent f085bfbbaf
commit c782d11816
22 changed files with 115 additions and 61 deletions

View File

@ -1,7 +1,7 @@
const Shell = require('./shell') const Shell = require('./shell')
const lodash = require('lodash') const lodash = require('lodash')
const defConfig = require('./config/index.js') const defConfig = require('./config/index.js')
const proxyServer = require('@docmirror/mitmproxy')
let configTarget = lodash.cloneDeep(defConfig) let configTarget = lodash.cloneDeep(defConfig)
function _deleteDisabledItem (target) { function _deleteDisabledItem (target) {
lodash.forEach(target, (item, key) => { lodash.forEach(target, (item, key) => {
@ -13,6 +13,7 @@ function _deleteDisabledItem (target) {
} }
}) })
} }
const configApi = { const configApi = {
get () { get () {
return configTarget return configTarget
@ -68,7 +69,7 @@ const configApi = {
}) })
if (list.length > 0) { if (list.length > 0) {
const context = { const context = {
ca_cert_path: proxyServer.config.getDefaultCACertPath() root_ca_cert_path: configApi.get().server.setting.rootCaFile.certPath
} }
for (const item of noSetList) { for (const item of noSetList) {
if (item.value.indexOf('${') >= 0) { if (item.value.indexOf('${') >= 0) {

View File

@ -1,3 +1,14 @@
const path = require('path')
function getUserBasePath () {
const userHome = process.env.USERPROFILE
return path.resolve(userHome, './.dev-sidecar')
}
function getRootCaCertPath () {
return getUserBasePath() + '/dev-sidecar.ca.crt'
}
function getRootCaKeyPath () {
return getUserBasePath() + '/dev-sidecar.ca.key.pem'
}
module.exports = { module.exports = {
server: { server: {
enabled: true, enabled: true,
@ -7,6 +18,11 @@ module.exports = {
script: { script: {
enabled: true, enabled: true,
defaultDir: '../../../scripts/' defaultDir: '../../../scripts/'
},
userBasePath: getUserBasePath(),
rootCaFile: {
certPath: getRootCaCertPath(),
keyPath: getRootCaKeyPath()
} }
}, },
intercepts: { intercepts: {

View File

@ -4,15 +4,12 @@ const event = require('./event')
const shell = require('./shell') const shell = require('./shell')
const modules = require('./modules') const modules = require('./modules')
const lodash = require('lodash') const lodash = require('lodash')
const proxyServer = require('@docmirror/mitmproxy')
const proxyConfig = proxyServer.config
const log = require('./utils/util.log') const log = require('./utils/util.log')
const context = { const context = {
config, config,
shell, shell,
status, status,
event, event,
rootCaFile: proxyConfig.getDefaultCACertPath(),
log log
} }
@ -127,6 +124,7 @@ module.exports = {
shell, shell,
server, server,
proxy, proxy,
plugin plugin,
log
} }
} }

View File

@ -1,6 +1,6 @@
const nodeConfig = require('./config') const nodeConfig = require('./config')
const NodePlugin = function (context) { const NodePlugin = function (context) {
const { config, shell, event, rootCaFile, log } = context const { config, shell, event, log } = context
const nodeApi = { const nodeApi = {
async start () { async start () {
try { try {
@ -101,16 +101,17 @@ const NodePlugin = function (context) {
NODE_TLS_REJECT_UNAUTHORIZED: false NODE_TLS_REJECT_UNAUTHORIZED: false
*/ */
const nodeConfig = config.get().plugin.node const nodeConfig = config.get().plugin.node
const rootCaCertFile = config.get().server.setting.rootCaFile.certPath
if (nodeConfig.setting['strict-ssl']) { if (nodeConfig.setting['strict-ssl']) {
cmds.push('npm config set strict-ssl false') cmds.push('npm config set strict-ssl false')
} }
if (nodeConfig.setting.cafile) { if (nodeConfig.setting.cafile) {
cmds.push(`npm config set cafile "${rootCaFile}"`) cmds.push(`npm config set cafile "${rootCaCertFile}"`)
} }
if (nodeConfig.setting.NODE_EXTRA_CA_CERTS) { if (nodeConfig.setting.NODE_EXTRA_CA_CERTS) {
cmds.push(`npm config set NODE_EXTRA_CA_CERTS "${rootCaFile}"`) cmds.push(`npm config set NODE_EXTRA_CA_CERTS "${rootCaCertFile}"`)
env.push({ key: 'NODE_EXTRA_CA_CERTS', value: rootCaFile }) env.push({ key: 'NODE_EXTRA_CA_CERTS', value: rootCaCertFile })
} }
if (nodeConfig.setting.NODE_TLS_REJECT_UNAUTHORIZED) { if (nodeConfig.setting.NODE_TLS_REJECT_UNAUTHORIZED) {

View File

@ -4,6 +4,7 @@ const status = require('../../status')
const lodash = require('lodash') const lodash = require('lodash')
const fork = require('child_process').fork const fork = require('child_process').fork
const log = require('../../utils/util.log') const log = require('../../utils/util.log')
const fs = require('fs')
let server let server
function fireStatus (status) { function fireStatus (status) {
event.fire('status', { key: 'server.enabled', value: status }) event.fire('status', { key: 'server.enabled', value: status })
@ -45,7 +46,10 @@ const serverApi = {
}) })
} }
// fireStatus('ing') // 启动中 // fireStatus('ing') // 启动中
const serverProcess = fork(mitmproxyPath, [JSON.stringify(serverConfig)]) const basePath = serverConfig.setting.userBasePath
const runningConfig = basePath + '/running.json'
fs.writeFileSync(runningConfig, JSON.stringify(serverConfig))
const serverProcess = fork(mitmproxyPath, [runningConfig])
server = { server = {
id: serverProcess.pid, id: serverProcess.pid,
process: serverProcess, process: serverProcess,
@ -64,7 +68,7 @@ const serverApi = {
event.fire('error', { key: 'server', value: 'EADDRINUSE', error: msg.event }) event.fire('error', { key: 'server', value: 'EADDRINUSE', error: msg.event })
} }
}) })
return { port: config.port } return { port: runningConfig.port }
}, },
async kill () { async kill () {
if (server) { if (server) {

View File

@ -1,17 +1,16 @@
const Shell = require('../shell') const Shell = require('../shell')
const execute = Shell.execute const execute = Shell.execute
const proxyServer = require('@docmirror/mitmproxy')
const executor = { const executor = {
async windows (exec) { async windows (exec, { certPath }) {
const cmds = ['start ' + proxyServer.config.getDefaultCACertPath()] const cmds = ['start "" "' + certPath + '"']
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars
const ret = await exec(cmds, { type: 'cmd' }) const ret = await exec(cmds, { type: 'cmd' })
return true return true
}, },
async linux (exec, { port }) { async linux (exec, { certPath }) {
throw Error('暂未实现此功能') throw Error('暂未实现此功能')
}, },
async mac (exec, { port }) { async mac (exec, { certPath }) {
throw Error('暂未实现此功能') throw Error('暂未实现此功能')
} }
} }

View File

@ -1,8 +1,7 @@
const log4js = require('log4js') const log4js = require('log4js')
const path = require('path') const config = require('../config/index')
const getDefaultConfigBasePath = function () { function getDefaultConfigBasePath () {
const userHome = process.env.USERPROFILE return config.server.setting.userBasePath
return path.resolve(userHome, './.dev-sidecar')
} }
log4js.configure({ log4js.configure({
appenders: { std: { type: 'stdout' }, file: { type: 'file', pattern: 'yyyy-MM-dd', daysToKeep: 3, filename: getDefaultConfigBasePath() + '/logs/core.log' } }, appenders: { std: { type: 'stdout' }, file: { type: 'file', pattern: 'yyyy-MM-dd', daysToKeep: 3, filename: getDefaultConfigBasePath() + '/logs/core.log' } },

View File

@ -0,0 +1,3 @@
const proxyConfig = require('@docmirror/mitmproxy/config.js')
module.exports = {
}

View File

@ -1,7 +1,10 @@
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars
const server = require('@docmirror/mitmproxy') const server = require('@docmirror/mitmproxy')
const config = JSON.parse(process.argv[2]) const configPath = process.argv[2]
const fs = require('fs')
const path = require('path') const path = require('path')
const configJson = fs.readFileSync(configPath)
const config = JSON.parse(configJson)
const scriptDir = '../../gui/extra/scripts/' const scriptDir = '../../gui/extra/scripts/'
config.setting.script.defaultDir = path.join(__dirname, scriptDir) config.setting.script.defaultDir = path.join(__dirname, scriptDir)
server.start(config) server.start(config)

View File

@ -6,7 +6,7 @@
abort: true abort: true
}, },
} }
} },
}, },
plugin: { plugin: {
node: { node: {

View File

@ -8,8 +8,7 @@ const pk = require('../../package.json')
const mitmproxyPath = path.join(__dirname, 'mitmproxy.js') const mitmproxyPath = path.join(__dirname, 'mitmproxy.js')
const log = require('../utils/util.log') const log = require('../utils/util.log')
const getDefaultConfigBasePath = function () { const getDefaultConfigBasePath = function () {
const userHome = process.env.USERPROFILE return DevSidecar.api.config.get().server.setting.userBasePath
return path.resolve(userHome, './.dev-sidecar')
} }
const localApi = { const localApi = {
/** /**

View File

@ -1,12 +1,15 @@
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars
const server = require('@docmirror/mitmproxy') const server = require('@docmirror/mitmproxy')
const config = JSON.parse(process.argv[2]) const configPath = process.argv[2]
const fs = require('fs')
const path = require('path') const path = require('path')
const log = require('../utils/util.log') const configJson = fs.readFileSync(configPath)
const config = JSON.parse(configJson)
let scriptDir = '../extra/scripts/' let scriptDir = '../extra/scripts/'
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
scriptDir = '../extra/scripts/' scriptDir = '../extra/scripts/'
} }
config.setting.script.defaultDir = path.join(__dirname, scriptDir) config.setting.script.defaultDir = path.join(__dirname, scriptDir)
log.debug('scriptDir', config.setting.script.defaultDir)
server.start(config) server.start(config)

View File

@ -1,8 +1,7 @@
const log4js = require('log4js') const log4js = require('log4js')
const path = require('path') const DevSidecar = require('@docmirror/dev-sidecar')
const getDefaultConfigBasePath = function () { const getDefaultConfigBasePath = function () {
const userHome = process.env.USERPROFILE return DevSidecar.api.config.get().server.setting.userBasePath
return path.resolve(userHome, './.dev-sidecar')
} }
log4js.configure({ log4js.configure({
appenders: { std: { type: 'stdout' }, file: { type: 'file', pattern: 'yyyy-MM-dd', daysToKeep: 3, filename: getDefaultConfigBasePath() + '/logs/gui.log' } }, appenders: { std: { type: 'stdout' }, file: { type: 'file', pattern: 'yyyy-MM-dd', daysToKeep: 3, filename: getDefaultConfigBasePath() + '/logs/gui.log' } },

View File

@ -24,7 +24,6 @@
</template> </template>
<script> <script>
import api from '../api'
export default { export default {
name: 'setup-ca', name: 'setup-ca',
components: { components: {
@ -55,7 +54,6 @@ export default {
this.$emit('update:visible', false) this.$emit('update:visible', false)
}, },
async doSetup () { async doSetup () {
await api.shell.setupCa()
this.$emit('setup') this.$emit('setup')
} }
} }

View File

@ -151,7 +151,9 @@ export default {
openSetupCa () { openSetupCa () {
this.setupCa.visible = true this.setupCa.visible = true
}, },
handleCaSetuped () { async handleCaSetuped () {
console.log('this.config.server.setting.rootCaFile.certPath', this.config.server.setting.rootCaFile.certPath)
await this.$api.shell.setupCa({ certPath: this.config.server.setting.rootCaFile.certPath })
this.setting.rootCa = this.setting.rootCa || {} this.setting.rootCa = this.setting.rootCa || {}
const rootCa = this.setting.rootCa const rootCa = this.setting.rootCa
rootCa.setuped = true rootCa.setuped = true
@ -226,8 +228,7 @@ export default {
}) })
}, },
doCheckUpdate (fromUser = true) { doCheckUpdate (fromUser = true) {
this.update.fromUser = fromUser this.$api.update.checkForUpdate(fromUser)
this.$api.update.checkForUpdate(this)
}, },
openExternal (url) { openExternal (url) {
this.$api.ipc.openExternal(url) this.$api.ipc.openExternal(url)

View File

@ -37,6 +37,10 @@
</a-checkbox> </a-checkbox>
<div>开启此项之后被代理应用关闭SSL校验也问题不大了</div> <div>开启此项之后被代理应用关闭SSL校验也问题不大了</div>
</a-form-item> </a-form-item>
<a-form-item label="根证书:" :label-col="labelCol" :wrapper-col="wrapperCol">
<a-input addon-before="Cert" addon-after="" v-model="config.server.setting.rootCaFile.certPath" ></a-input>
<a-input addon-before="Key" addon-after="" v-model="config.server.setting.rootCaFile.keyPath" ></a-input>
</a-form-item>
<a-form-item label="启用脚本" :label-col="labelCol" :wrapper-col="wrapperCol"> <a-form-item label="启用脚本" :label-col="labelCol" :wrapper-col="wrapperCol">
<a-tooltip title="关闭后github的clone加速链接复制也将关闭"> <a-tooltip title="关闭后github的clone加速链接复制也将关闭">
<a-checkbox v-model="config.server.setting.script.enabled" > <a-checkbox v-model="config.server.setting.script.enabled" >

View File

@ -1,13 +1,8 @@
const mitmproxy = require('./lib/proxy') const mitmproxy = require('./lib/proxy')
const ProxyOptions = require('./options') const ProxyOptions = require('./options')
const config = require('./lib/proxy/common/config') const proxyConfig = require('./lib/proxy/common/config')
const log = require('./utils/util.log') const log = require('./utils/util.log')
function fireError (e) { const { fireError, fireStatus } = require('./utils/util.process')
process.send({ type: 'error', event: e })
}
function fireStatus (status) {
process.send({ type: 'status', event: status })
}
let server let server
@ -42,6 +37,13 @@ function registerProcessListener () {
const api = { const api = {
async start (config) { async start (config) {
const proxyOptions = ProxyOptions(config) const proxyOptions = ProxyOptions(config)
const setting = config.setting
if (setting) {
if (setting.userBasePath) {
proxyConfig.setDefaultCABasePath(setting.userBasePath)
}
}
if (proxyOptions.setting && proxyOptions.setting.NODE_TLS_REJECT_UNAUTHORIZED === false) { if (proxyOptions.setting && proxyOptions.setting.NODE_TLS_REJECT_UNAUTHORIZED === false) {
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0' process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
} else { } else {
@ -95,5 +97,6 @@ const api = {
module.exports = { module.exports = {
...api, ...api,
config config: proxyConfig,
log
} }

View File

@ -9,7 +9,15 @@ config.defaultPort = 1181
config.caName = 'This certificate is generated locally' config.caName = 'This certificate is generated locally'
config.caBasePath = buildDefaultCABasePath()
config.getDefaultCABasePath = function () { config.getDefaultCABasePath = function () {
return config.caBasePath
}
config.setDefaultCABasePath = function (path) {
config.caBasePath = path
}
function buildDefaultCABasePath () {
const userHome = process.env.USERPROFILE const userHome = process.env.USERPROFILE
return path.resolve(userHome, './.dev-sidecar') return path.resolve(userHome, './.dev-sidecar')
} }

View File

@ -21,16 +21,19 @@ module.exports = {
}, callback) { }, callback) {
// Don't reject unauthorized // Don't reject unauthorized
// process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0' // process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
log.info(`CA Cert read in: ${caCertPath}`)
if (!caCertPath && !caKeyPath) { log.info(`CA private key read in: ${caKeyPath}`)
const rs = this.createCA() if (!caCertPath) {
caCertPath = rs.caCertPath caCertPath = config.getDefaultCACertPath()
caKeyPath = rs.caKeyPath }
if (!caKeyPath) {
caKeyPath = config.getDefaultCAKeyPath()
}
const rs = this.createCA({ caCertPath, caKeyPath })
if (rs.create) { if (rs.create) {
log.info(`CA Cert saved in: ${caCertPath}`) log.info(`CA Cert saved in: ${caCertPath}`)
log.info(`CA private key saved in: ${caKeyPath}`) log.info(`CA private key saved in: ${caKeyPath}`)
} }
}
port = ~~port port = ~~port
const requestHandler = createRequestHandler( const requestHandler = createRequestHandler(
@ -88,7 +91,7 @@ module.exports = {
}) })
return server return server
}, },
createCA (caBasePath = config.getDefaultCABasePath()) { createCA (caPaths) {
return tlsUtils.initCA(caBasePath) return tlsUtils.initCA(caPaths)
} }
} }

View File

@ -237,10 +237,7 @@ utils.getMappingHostNamesFormCert = function (cert) {
} }
// sync // sync
utils.initCA = function (basePath = config.getDefaultCABasePath()) { utils.initCA = function ({ caCertPath, caKeyPath }) {
const caCertPath = path.resolve(basePath, config.caCertFileName)
const caKeyPath = path.resolve(basePath, config.caKeyFileName)
try { try {
fs.accessSync(caCertPath, fs.F_OK) fs.accessSync(caCertPath, fs.F_OK)
fs.accessSync(caKeyPath, fs.F_OK) fs.accessSync(caKeyPath, fs.F_OK)

View File

@ -48,13 +48,14 @@ module.exports = (config) => {
const dnsMapping = config.dns.mapping const dnsMapping = config.dns.mapping
const serverConfig = config const serverConfig = config
return { const setting = serverConfig.setting
const options = {
port: serverConfig.port, port: serverConfig.port,
dnsConfig: { dnsConfig: {
providers: dnsUtil.initDNS(serverConfig.dns.providers), providers: dnsUtil.initDNS(serverConfig.dns.providers),
mapping: dnsMapping mapping: dnsMapping
}, },
setting: serverConfig.setting, setting,
sslConnectInterceptor: (req, cltSocket, head) => { sslConnectInterceptor: (req, cltSocket, head) => {
const hostname = req.url.split(':')[0] const hostname = req.url.split(':')[0]
const inWhiteList = matchHostname(whiteList, hostname) != null const inWhiteList = matchHostname(whiteList, hostname) != null
@ -103,4 +104,10 @@ module.exports = (config) => {
return matchIntercepts return matchIntercepts
} }
} }
if (setting.rootCaFile) {
options.caCertPath = setting.rootCaFile.certPath
options.caKeyPath = setting.rootCaFile.keyPath
}
return options
} }

View File

@ -0,0 +1,8 @@
module.exports = {
fireError (e) {
process.send({ type: 'error', event: e })
},
fireStatus (status) {
process.send({ type: 'status', event: status })
}
}