forked from mempool/mempool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into nymkappa/bugfix/update-log-indexer
- Loading branch information
Showing
10 changed files
with
174 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import * as net from 'net'; | ||
import maxmind, { CityResponse, AsnResponse } from 'maxmind'; | ||
import nodesApi from '../../../api/explorer/nodes.api'; | ||
import config from '../../../config'; | ||
import DB from '../../../database'; | ||
import logger from '../../../logger'; | ||
|
||
export async function $lookupNodeLocation(): Promise<void> { | ||
logger.info(`Running node location updater using Maxmind...`); | ||
try { | ||
const nodes = await nodesApi.$getAllNodes(); | ||
const lookupCity = await maxmind.open<CityResponse>(config.MAXMIND.GEOLITE2_CITY); | ||
const lookupAsn = await maxmind.open<AsnResponse>(config.MAXMIND.GEOLITE2_ASN); | ||
|
||
for (const node of nodes) { | ||
const sockets: string[] = node.sockets.split(','); | ||
for (const socket of sockets) { | ||
const ip = socket.substring(0, socket.lastIndexOf(':')).replace('[', '').replace(']', ''); | ||
const hasClearnet = [4, 6].includes(net.isIP(ip)); | ||
if (hasClearnet && ip !== '127.0.1.1' && ip !== '127.0.0.1') { | ||
const city = lookupCity.get(ip); | ||
const asn = lookupAsn.get(ip); | ||
if (city && asn) { | ||
const query = `UPDATE nodes SET as_number = ?, city_id = ?, country_id = ?, subdivision_id = ?, longitude = ?, latitude = ?, accuracy_radius = ? WHERE public_key = ?`; | ||
const params = [asn.autonomous_system_number, city.city?.geoname_id, city.country?.geoname_id, city.subdivisions ? city.subdivisions[0].geoname_id : null, city.location?.longitude, city.location?.latitude, city.location?.accuracy_radius, node.public_key]; | ||
await DB.query(query, params); | ||
|
||
// Store Continent | ||
if (city.continent?.geoname_id) { | ||
await DB.query( | ||
`INSERT IGNORE INTO geo_names (id, type, names) VALUES (?, 'continent', ?)`, | ||
[city.continent?.geoname_id, JSON.stringify(city.continent?.names)]); | ||
} | ||
|
||
// Store Country | ||
if (city.country?.geoname_id) { | ||
await DB.query( | ||
`INSERT IGNORE INTO geo_names (id, type, names) VALUES (?, 'country', ?)`, | ||
[city.country?.geoname_id, JSON.stringify(city.country?.names)]); | ||
} | ||
|
||
// Store Division | ||
if (city.subdivisions && city.subdivisions[0]) { | ||
await DB.query( | ||
`INSERT IGNORE INTO geo_names (id, type, names) VALUES (?, 'division', ?)`, | ||
[city.subdivisions[0].geoname_id, JSON.stringify(city.subdivisions[0]?.names)]); | ||
} | ||
|
||
// Store City | ||
if (city.city?.geoname_id) { | ||
await DB.query( | ||
`INSERT IGNORE INTO geo_names (id, type, names) VALUES (?, 'city', ?)`, | ||
[city.city?.geoname_id, JSON.stringify(city.city?.names)]); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
logger.info(`Node location data updated.`); | ||
} catch (e) { | ||
logger.err('$lookupNodeLocation() error: ' + (e instanceof Error ? e.message : e)); | ||
} | ||
} |