api init
This commit is contained in:
parent
ddea84624b
commit
f76d9a179a
|
@ -0,0 +1,25 @@
|
||||||
|
import fetch from 'node-fetch'
|
||||||
|
import express from 'express'
|
||||||
|
const app = express()
|
||||||
|
const db = '../db'
|
||||||
|
const port = 3102
|
||||||
|
|
||||||
|
app.get('/ETH/:date', async (req, res) => {
|
||||||
|
const response = await fetch(`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${req.params.date}`)
|
||||||
|
const data = await response.json()
|
||||||
|
res.send(data.market_data.current_price.rub.toString())
|
||||||
|
})
|
||||||
|
|
||||||
|
app.get('/TRX/:date', async (req, res) => {
|
||||||
|
const response = await fetch(`https://api.coingecko.com/api/v3/coins/tron/history?date=${req.params.date}`)
|
||||||
|
const data = await response.json()
|
||||||
|
res.send(data.market_data.current_price.rub.toString())
|
||||||
|
})
|
||||||
|
|
||||||
|
app.listen(port, () => {
|
||||||
|
console.log(`App listening on port ${port}`)
|
||||||
|
})
|
||||||
|
|
||||||
|
process
|
||||||
|
.on('unhandledRejection', () => {})
|
||||||
|
.on('uncaughtException', () => {})
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "assets",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"express": "^4.21.2",
|
||||||
|
"node-fetch": "^3.3.2",
|
||||||
|
"nodemon": "^3.1.9"
|
||||||
|
},
|
||||||
|
"type": "module"
|
||||||
|
}
|
||||||
|
|
|
@ -200,13 +200,13 @@ db.serialize(async () => {
|
||||||
const param = params[i]
|
const param = params[i]
|
||||||
const date = new Date(param)
|
const date = new Date(param)
|
||||||
const formattedDate= formatDate(date)
|
const formattedDate= formatDate(date)
|
||||||
const response = await fetch(`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${formattedDate}`)
|
const response = await fetch(`https://api.coingecko.com/api/v3/coins/tron/history?date=${formattedDate}`)
|
||||||
const data = await response.json()
|
const data = await response.json()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const stmt = db.prepare("INSERT INTO assets VALUES (?, ?, ?)")
|
const stmt = db.prepare("INSERT INTO assets VALUES (?, ?, ?)")
|
||||||
const price = Number(data.market_data.current_price.rub)
|
const price = Number(data.market_data.current_price.rub)
|
||||||
stmt.run("ETH", price, date)
|
stmt.run("TRX", price, date)
|
||||||
stmt.finalize()
|
stmt.finalize()
|
||||||
console.log(param)
|
console.log(param)
|
||||||
} catch {
|
} catch {
|
Loading…
Reference in New Issue