-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConectorJavaScript.js
239 lines (216 loc) · 10.1 KB
/
ConectorJavaScript.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
const ConectorPluginV3 = (() => {
/**
* Una clase para interactuar con el plugin v3
*
* @date 2022-09-28
* @author parzibyte
* @see https://parzibyte.me/blog
*/
class Operacion {
constructor(nombre, argumentos) {
this.nombre = nombre;
this.argumentos = argumentos;
}
}
class ConectorPlugin {
static URL_PLUGIN_POR_DEFECTO = "http://localhost:8000";
static Operacion = Operacion;
static ALINEACION_IZQUIERDA = 0;
static ALINEACION_CENTRO = 1;
static ALINEACION_DERECHA = 2;
static RECUPERACION_QR_BAJA = 0;
static RECUPERACION_QR_MEDIA = 1;
static RECUPERACION_QR_ALTA = 2;
static RECUPERACION_QR_MEJOR = 3;
static ALGORITMO_IMAGEN_RASTERIZACION = 0;
static ALGORITMO_IMAGEN_COLUMNAS = 1;
static ALGORITMO_IMAGEN_NV_GRAPHICS = 2;
constructor(ruta, serial) {
if (!ruta) ruta = ConectorPlugin.URL_PLUGIN_POR_DEFECTO;
if (!serial) serial = "";
this.ruta = ruta;
this.serial = serial;
this.operaciones = [];
return this;
}
CargarImagenLocalEImprimir(ruta, maximoAncho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("CargarImagenLocalEImprimir", Array.from(arguments)));
return this;
}
Corte(lineas) {
this.operaciones.push(new ConectorPlugin.Operacion("Corte", Array.from(arguments)));
return this;
}
CorteParcial() {
this.operaciones.push(new ConectorPlugin.Operacion("CorteParcial", Array.from(arguments)));
return this;
}
DefinirCaracterPersonalizado(caracterRemplazo, matriz) {
this.operaciones.push(new ConectorPlugin.Operacion("DefinirCaracterPersonalizado", Array.from(arguments)));
return this;
}
DescargarImagenDeInternetEImprimir(urlImagen, maximoAncho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("DescargarImagenDeInternetEImprimir", Array.from(arguments)));
return this;
}
DeshabilitarCaracteresPersonalizados() {
this.operaciones.push(new ConectorPlugin.Operacion("DeshabilitarCaracteresPersonalizados", Array.from(arguments)));
return this;
}
DeshabilitarElModoDeCaracteresChinos() {
this.operaciones.push(new ConectorPlugin.Operacion("DeshabilitarElModoDeCaracteresChinos", Array.from(arguments)));
return this;
}
EscribirTexto(texto) {
this.operaciones.push(new ConectorPlugin.Operacion("EscribirTexto", Array.from(arguments)));
return this;
}
EstablecerAlineacion(alineacion) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerAlineacion", Array.from(arguments)));
return this;
}
EstablecerEnfatizado(enfatizado) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerEnfatizado", Array.from(arguments)));
return this;
}
EstablecerFuente(fuente) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerFuente", Array.from(arguments)));
return this;
}
EstablecerImpresionAlReves(alReves) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerImpresionAlReves", Array.from(arguments)));
return this;
}
EstablecerImpresionBlancoYNegroInversa(invertir) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerImpresionBlancoYNegroInversa", Array.from(arguments)));
return this;
}
EstablecerRotacionDe90Grados(rotar) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerRotacionDe90Grados", Array.from(arguments)));
return this;
}
EstablecerSubrayado(subrayado) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerSubrayado", Array.from(arguments)));
return this;
}
EstablecerTamañoFuente(multiplicadorAncho, multiplicadorAlto) {
this.operaciones.push(new ConectorPlugin.Operacion("EstablecerTamañoFuente", Array.from(arguments)));
return this;
}
Feed(lineas) {
this.operaciones.push(new ConectorPlugin.Operacion("Feed", Array.from(arguments)));
return this;
}
HabilitarCaracteresPersonalizados() {
this.operaciones.push(new ConectorPlugin.Operacion("HabilitarCaracteresPersonalizados", Array.from(arguments)));
return this;
}
HabilitarElModoDeCaracteresChinos() {
this.operaciones.push(new ConectorPlugin.Operacion("HabilitarElModoDeCaracteresChinos", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasCodabar(contenido, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasCodabar", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasCode128(contenido, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasCode128", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasCode39(contenido, incluirSumaDeVerificacion, modoAsciiCompleto, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasCode39", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasCode93(contenido, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasCode93", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasEan(contenido, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasEan", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasEan8(contenido, alto, ancho, tamañoImagen) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasEan8", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasPdf417(contenido, nivelSeguridad, alto, ancho, tamañoImagen) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasPdf417", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasTwoOfFiveITF(contenido, intercalado, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasTwoOfFiveITF", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasUpcA(contenido, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasUpcA", Array.from(arguments)));
return this;
}
ImprimirCodigoDeBarrasUpcE(contenido, alto, ancho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoDeBarrasUpcE", Array.from(arguments)));
return this;
}
ImprimirCodigoQr(contenido, anchoMaximo, nivelRecuperacion, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirCodigoQr", Array.from(arguments)));
return this;
}
ImprimirImagenEnBase64(imagenCodificadaEnBase64, maximoAncho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("ImprimirImagenEnBase64", Array.from(arguments)));
return this;
}
Iniciar() {
this.operaciones.push(new ConectorPlugin.Operacion("Iniciar", Array.from(arguments)));
return this;
}
Pulso(pin, tiempoEncendido, tiempoApagado) {
this.operaciones.push(new ConectorPlugin.Operacion("Pulso", Array.from(arguments)));
return this;
}
TextoSegunPaginaDeCodigos(numeroPagina, pagina, texto) {
this.operaciones.push(new ConectorPlugin.Operacion("TextoSegunPaginaDeCodigos", Array.from(arguments)));
return this;
}
GenerarImagenAPartirDeHtmlEImprimir(html, anchoPagina, maximoAncho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("GenerarImagenAPartirDeHtmlEImprimir", Array.from(arguments)));
return this;
}
GenerarImagenAPartirDePaginaWebEImprimir(urlPagina, anchoPagina, maximoAncho, algoritmo) {
this.operaciones.push(new ConectorPlugin.Operacion("GenerarImagenAPartirDePaginaWebEImprimir", Array.from(arguments)));
return this;
}
static async obtenerImpresoras(ruta) {
if (ruta) ConectorPlugin.URL_PLUGIN_POR_DEFECTO = ruta;
const response = await fetch(ConectorPlugin.URL_PLUGIN_POR_DEFECTO + "/impresoras");
return await response.json();
}
static async obtenerImpresorasRemotas(ruta, rutaRemota) {
if (ruta) ConectorPlugin.URL_PLUGIN_POR_DEFECTO = ruta;
const response = await fetch(ConectorPlugin.URL_PLUGIN_POR_DEFECTO + "/reenviar?host=" + rutaRemota);
return await response.json();
}
async imprimirEnImpresoraRemota(nombreImpresora, rutaRemota) {
const payload = {
operaciones: this.operaciones,
nombreImpresora,
serial: this.serial,
};
const response = await fetch(this.ruta + "/reenviar?host=" + rutaRemota, {
method: "POST",
body: JSON.stringify(payload),
});
return await response.json();
}
async imprimirEn(nombreImpresora) {
const payload = {
operaciones: this.operaciones,
nombreImpresora,
serial: this.serial,
};
const response = await fetch(this.ruta + "/imprimir", {
method: "POST",
body: JSON.stringify(payload),
});
return await response.json();
}
}
return ConectorPlugin;
})();