-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
122 lines (109 loc) · 4.01 KB
/
index.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
import express from 'express'
import cors from 'cors'
import fetch from 'node-fetch'
import https from 'https'
import fs from 'fs'
import * as dotenv from 'dotenv';
const app = express();
dotenv.config();
app.use(cors());
app.use(express.json({ type: '*/*' }));
app.get('/default', (req, res) => {
console.log('GET request for /default recieved')
res.json({
"deviceType": "printer",
"uid": "Zebra ZP 500 (ZPL)",
"provider": "com.zebra.ds.webdriver.desktop.provider.DefaultDeviceProvider",
"name": "Zebra ZP 500 (ZPL)",
"connection": "driver",
"version": 3,
"manufacturer": "Zebra Technologies"
})
})
app.post('/convert', (req, res) => {
// TODO: set content-type to "text/plain"?
// this is for PDF. the other ones would work. you should not need it. see:
// https://developer.zebra.com/forum/25874
res.send('The format conversion attempted requires a licensing key and none was provided');
})
app.get('/config', (req, res) => {
res.json({
"application": {
"supportedConversions": {
"jpg": ["cpcl", "zpl", "kpl"],
"tif": ["cpcl", "zpl", "kpl"],
"pdf": ["cpcl", "zpl", "kpl"],
"bmp": ["cpcl", "zpl", "kpl"],
"pcx": ["cpcl", "zpl", "kpl"],
"gif": ["cpcl", "zpl", "kpl"],
"png": ["cpcl", "zpl", "kpl"],
"jpeg": ["cpcl", "zpl", "kpl"]
},
"version": "1.3.2.489",
"apiLevel": 5,
"buildNumber": 489,
"platform": "windows"
}
})
})
app.get('/available', (req, res) => {
console.log('GET request for /available recieved')
res.json({
"deviceList": [
{
"uid": "Zebra ZP 500 (ZPL)",
"name": "Zebra ZP 500 (ZPL)"
}
]
})
})
app.post('/read', (req, res) => {
console.log('POST request for /read recieved')
res.status(200).send();
})
app.post('/write', (req, res) => {
console.log('POST request for /write recieved')
console.log('data:', (req && req.body) ? req.body.data : '"data" missing req.body');
console.log('---------------------------------------\n')
if (process.env.CHROME_EXTENSION_ENABLED === String(true)) {
const port = process.env.CHROME_EXTENSION_PORT ?? '9102';
// const payload = typeof req.body.data === 'string' ? req.body.data : Buffer.from(req.body.data);
fetch(`http://localhost:${port}`, { method: 'POST', body: '{"mode":"print","epl":"' + Buffer.from(req.body.data) + '"}' })
.catch((e) => {
// do nothing, keep the console clean
});
}
res.json({})
})
const SERVER_PORT = 9100;
const SERVER_PORT_SSL = 9101;
const EXTENSION_PORT = process.env.CHROME_EXTENSION_PORT ?? '9101';
//SSL key and cert
var option = {
key: fs.readFileSync('ssl/server.key'),
cert: fs.readFileSync('ssl/server.cert')
};
https.createServer(option, app).listen(SERVER_PORT_SSL, () => {
console.log(`\nBrowser Print Fake Server running on https://localhost:${SERVER_PORT}\n\n`)
console.log('******************************************************************************')
if (process.env.CHROME_EXTENSION_ENABLED === String(true)) {
console.log(
' TIP: If you want to preview the label you can install the Zpl Printer\n extension from the chrome web store and set it up to listen on port ' + EXTENSION_PORT
)
} else {
console.log('Chrome extension support not enabled.');
}
console.log('******************************************************************************\n')
});
app.listen(SERVER_PORT, '127.0.0.1', () => {
console.log(`\nBrowser Print Fake Server running on http://localhost:${SERVER_PORT}\n\n`)
console.log('******************************************************************************')
if (process.env.CHROME_EXTENSION_ENABLED === String(true)) {
console.log(
' TIP: If you want to preview the label you can install the Zpl Printer\n extension from the chrome web store and set it up to listen on port ' + EXTENSION_PORT
)
} else {
console.log('Chrome extension support not enabled.');
}
console.log('******************************************************************************\n')
});