forked from rohenaz/bmap-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.ts
238 lines (205 loc) · 5.97 KB
/
api.ts
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
import { Transaction } from '@gorillapool/js-junglebus'
import bodyParser from 'body-parser'
import chalk from 'chalk'
import cors from 'cors'
import express from 'express'
import asyncHandler from 'express-async-handler'
import { dirname } from 'path'
import { fileURLToPath } from 'url'
import { processTransaction } from './crawler.js'
import { getDbo } from './db.js'
import { ConnectionStatus } from './index.js'
import { defaultQuery } from './queries.js'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
let connectionStatus: ConnectionStatus = ConnectionStatus.Disconnected
// let socket: net.Socket
const app = express()
app.use(bodyParser.json())
process.on('message', (data: any) => {
console.log('message received by child!', data)
switch (data.type) {
case 'block':
console.log('current block is now', data.block)
break
case 'socket':
// socket = data.socket
console.log({ socket: data.socket })
break
case 'status':
console.log('Connection status changed', data.status)
connectionStatus = data.status
break
}
})
const start = async function () {
console.log(chalk.magenta('BMAP API'), chalk.cyan('initializing machine...'))
app.set('port', process.env.PORT || 3055)
app.set('host', process.env.HOST || 'localhost')
app.set('view engine', 'ejs')
app.set('views', __dirname + '/../views')
app.use(cors())
app.use(express.static(__dirname + '/../public'))
app.get(
/^\/s\/(.+)$/,
asyncHandler(async function (req, res) {
let b64 = req.params[0]
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'X-Accel-Buffering': 'no',
Connection: 'keep-alive',
})
res.write('data: ' + JSON.stringify({ type: 'open', data: [] }) + '\n\n')
let json = Buffer.from(b64, 'base64').toString()
const db = await getDbo()
console.log(chalk.blue('New change stream subscription'))
let query = JSON.parse(json)
const pipeline = [
{
$match: {
operationType: 'insert',
},
},
]
Object.keys(query.q.find || {}).forEach(
(k) => (pipeline[0]['$match'][`fullDocument.${k}`] = query.q.find[k])
)
const changeStream = db.collection('c').watch(pipeline)
changeStream.on('change', (next) => {
console.log(
chalk.blue('New change event - pushing to SSE'),
next.fullDocument.tx?.h
)
res.write(
'data: ' +
JSON.stringify({ type: 'push', data: [next.fullDocument] }) +
'\n\n'
)
})
changeStream.on('error', () => {
changeStream.close()
})
req.on('close', () => {
changeStream.close()
})
let lastStatus = connectionStatus
// while (true) {
if (lastStatus !== connectionStatus) {
lastStatus = connectionStatus
console.log(
chalk.blue('New connection status event - pushing to SSE'),
connectionStatus
)
res.write(
'data: ' +
JSON.stringify({ type: 'status', data: connectionStatus }) +
'\n\n'
)
}
// }
})
)
app.get(
/^\/q\/(.+)$/,
asyncHandler(async function (req, res) {
let b64 = req.params[0]
console.log(chalk.magenta('BMAP API'), chalk.cyan('query', b64))
const dbo = await getDbo()
let code = Buffer.from(b64, 'base64').toString()
let j = JSON.parse(code)
if (j.q.aggregate) {
dbo
.collection('c')
.aggregate(j.q.aggregate, {
allowDiskUse: true,
cursor: { batchSize: 1000 },
})
.sort(j.q.sort || { _id: -1 })
.limit(j.q.limit ? j.q.limit : 10)
.toArray(function (err, c) {
if (err) {
res.status(500).send(err)
return
}
res.send({ c })
})
return
}
dbo
.collection('c')
.find(j.q.find)
.sort(j.q.sort || { _id: -1 })
.limit(j.q.hasOwnProperty('limit') ? j.q.limit : 10)
.project(j.q.project || { in: 0, out: 0 })
.toArray(function (err, c) {
if (err) {
res.status(500).send(err)
return
}
res.send({ c })
})
})
)
app.get('/ping', async (req, res) => {
if (req.get('Referrer')) {
console.log({
level: 'info',
message: 'Referrer: ' + req.get('Referrer'),
})
}
res.write(JSON.stringify({ Pong: req.get('Referrer') }))
res.end()
})
app.get('/query', function (req, res) {
let code = JSON.stringify(defaultQuery, null, 2)
res.render('explorer', {
name: 'BMAP',
code: code,
})
})
app.get(/^\/query\/(.+)$/, function (req, res) {
let b64 = req.params[0]
let code = Buffer.from(b64, 'base64').toString()
res.render('explorer', {
name: 'BMAP',
code: code,
})
})
app.post('/ingest', function (req, res) {
// ingest a raw tx
console.log('ingest', req.body.rawTx)
if (req.body.rawTx) {
// process.send({ rawTx: req.body.rawTx, type: 'tx' })
processTransaction({
transaction: req.body.rawTx,
} as Partial<Transaction>)
.then((tx) => {
res.status(201).send(tx)
})
.catch((e) => res.status(500).send(e))
return
} else {
return res.status(400).send()
}
})
app.get('/', function (req, res) {
res.sendFile(__dirname + '/../public/index.html')
})
if (app.get('port')) {
app.listen(app.get('port'), app.get('host'), () => {
console.log(
chalk.magenta('BMAP API'),
chalk.green(`listening on ${app.get('host')}:${app.get('port')}!`)
)
})
} else {
app.listen(app.get('port'), () => {
console.log(
chalk.magenta('BMAP API'),
chalk.green(`listening on port ${app.get('port')}!`)
)
})
}
}
start()