node-minecraft-protocol/examples/client_electron/main.js
extremeheat 8f2a027812
Msa device code auth (#806)
* initial msa work

* rm debug code

* Update package.json

* lint, seperate constants, create missing msa cache

* support multiple profiles

* lint

* use shared constants

* fix path issues

* fix token variable

* fix caching msa profile data

* switch clientId to one from microsoft

* store caches in .minecraft, fallback to dev code auth when user+pass fails

* update electron demo, fix error handling, add docs

* fix caching dir

* fix lint

* move to class scope, token fixes

* retry on fail, terminology fixes

* fix promise bug

* cleanup
2021-01-30 01:21:03 +01:00

56 lines
1.4 KiB
JavaScript

'use strict'
const path = require('path')
const { app, ipcMain, dialog } = require('electron')
const mc = require('minecraft-protocol')
const Window = require('./Window')
require('electron-reload')(__dirname)
function main () {
const mainWindow = new Window({
file: path.join('renderer', 'index.html')
})
mainWindow.once('show', () => {
})
ipcMain.on('connect', (e, data) => {
data.onMsaCode = (data) => {
dialog.showMessageBoxSync({
type: 'info',
message: 'Please authenticate now:\n' + data.message
})
}
const client = mc.createClient(data)
client.on('login', () => mainWindow.send('content', 'connected'))
client.on('error', (err) => {
dialog.showMessageBoxSync({
type: 'error',
message: err.stack
})
})
let chat = ''
client.on('chat', function (packet) {
const jsonMsg = JSON.parse(packet.message)
if (jsonMsg.translate === 'chat.type.announcement' || jsonMsg.translate === 'chat.type.text') {
const username = jsonMsg.with[0].text
const msg = jsonMsg.with[1]
chat += `${username} > ${msg}<br />`
mainWindow.send('content', chat)
}
})
ipcMain.on('chat', (e, chat2) => {
client.write('chat', { message: chat2 })
})
})
}
app.on('ready', main)
app.on('window-all-closed', function () {
app.quit()
})