This repository was archived by the owner on Apr 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
175 lines (149 loc) · 5.38 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
const { app, BrowserWindow, Notification } = require('electron');
const path = require('path');
const rpc = require('discord-rpc');
const { registerShortcuts, unregisterShortcuts } = require('./src/resources/extensions/keyboard'); // Importar las funciones del archivo keyboard.js
const { createContextMenu } = require('./src/resources/extensions/contextMenu'); // Importar la función para el menú contextual
let mainWindow;
let loadingWindow;
// Discord Rich Presence
const _0x3f2a=['Client','ipc'];const clientId=Buffer.from('MTI4NzMwNDQ0ODU0ODQwOTM3NA==','base64').toString();const rpcClient=new rpc[_0x3f2a[0x0]]({transport:_0x3f2a[0x1]});
// Título fijo de la notificación
const notificationTitle = 'NakamaStream Desktop';
// Función para mostrar una notificación del sistema
function showNotification(body, icon = null) {
if (Notification.isSupported()) {
const notificationOptions = {
title: notificationTitle, // Usamos el título fijo
body: body,
silent: false,
};
if (icon) {
notificationOptions.icon = icon;
}
const notification = new Notification(notificationOptions);
notification.show();
} else {
console.log('Notificaciones no soportadas en este sistema.');
}
}
// Función para iniciar Discord RPC
function initializeDiscordRPC() {
rpcClient.on('ready', () => {
console.log('Discord RPC conectado.');
showNotification('Tu estado se está compartiendo en Discord.', path.join(__dirname, 'src/resources/img/NakamaStreamIcon.png'));
updateDiscordActivity('Iniciando sesión');
});
rpcClient.on('disconnected', () => {
console.log('Discord no está abierto o se desconectó.');
showNotification('Rich Presence está inactivo.', path.join(__dirname, 'src/resources/img/NakamaStreamIcon.png'));
});
rpcClient.login({ clientId }).catch((err) => {
console.error('Error al conectar Discord RPC:', err.message);
showNotification('No se pudo conectar a Discord.', path.join(__dirname, 'src/resources/img/NakamaStreamIcon.png'));
});
}
// Función para actualizar la actividad de Discord
function updateDiscordActivity(pageTitle) {
if (rpcClient && rpcClient.transport.socket) {
rpcClient.setActivity({
details: 'Navegando por la aplicación',
state: `En: ${pageTitle}`,
startTimestamp: new Date(),
largeImageKey: 'logo',
largeImageText: 'NakamaStream',
});
}
}
// Función para crear la ventana de carga
function createLoadingWindow() {
loadingWindow = new BrowserWindow({
width: 400,
height: 300,
frame: false,
transparent: true,
alwaysOnTop: true,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
contextIsolation: true,
enableRemoteModule: false,
nodeIntegration: false,
partition: 'persist:myAppCache',
cache: true,
},
resizable: false,
scrollBounce: false,
});
loadingWindow.loadFile(path.join(__dirname, 'src/resources/html/loading.html'));
loadingWindow.show();
}
// Función para crear la ventana principal
function createMainWindow() {
mainWindow = new BrowserWindow({
width: 1000,
height: 800,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
contextIsolation: true,
enableRemoteModule: false,
nodeIntegration: false,
partition: 'persist:myAppCache',
cache: true,
webSecurity: true,
},
autoHideMenuBar: true,
frame: true,
resizable: true,
minimizable: true,
maximizable: true,
closable: true,
});
mainWindow.loadURL('https://nakamastream.lat/login');
// Configurar el menú contextual para el webview
mainWindow.webContents.on('context-menu', (e, params) => {
const contextMenu = createContextMenu(mainWindow); // Usar la función importada
contextMenu.popup({ window: mainWindow });
});
mainWindow.webContents.on('did-finish-load', () => {
try {
if (loadingWindow && !loadingWindow.isDestroyed()) {
loadingWindow.close();
}
mainWindow.webContents.executeJavaScript('document.title').then(title => {
updateDiscordActivity(title);
});
} catch (error) {
console.error('Error al cerrar la ventana de carga:', error);
}
});
mainWindow.webContents.on('page-title-updated', (event, title) => {
updateDiscordActivity(title);
});
mainWindow.on('closed', () => {
mainWindow = null;
});
}
// Cuando la aplicación esté lista
app.on('ready', () => {
// Crear ventana de carga
createLoadingWindow();
// Crear la ventana principal
createMainWindow();
// Registrar atajos de teclado
registerShortcuts(mainWindow);
// Iniciar Discord Rich Presence
initializeDiscordRPC();
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
unregisterShortcuts(); // Desregistrar los atajos de teclado
if (rpcClient) {
rpcClient.destroy();
}
app.quit();
}
});
app.on('activate', () => {
if (mainWindow === null) {
createMainWindow();
}
});