|
@ -1,11 +1,17 @@ |
|
|
import express from 'express'; |
|
|
import express from 'express'; |
|
|
|
|
|
import morgan from 'morgan'; |
|
|
import _ from 'lodash'; |
|
|
import _ from 'lodash'; |
|
|
|
|
|
import fs from 'fs'; |
|
|
|
|
|
import path from 'path'; |
|
|
import isReachable from 'is-reachable'; |
|
|
import isReachable from 'is-reachable'; |
|
|
import { pinnerApiPort } from 'concordia-shared/src/environment/interpolated/pinner'; |
|
|
import { pinnerApiPort } from 'concordia-shared/src/environment/interpolated/pinner'; |
|
|
import getWeb3ProviderUrl from 'concordia-shared/src/utils/web3'; |
|
|
import getWeb3ProviderUrl from 'concordia-shared/src/utils/web3'; |
|
|
import { getResolvedRendezvousUrl } from './utils/ipfsUtils'; |
|
|
import { getResolvedRendezvousUrl } from './utils/ipfsUtils'; |
|
|
|
|
|
import { logger, logsDirectoryPath } from './utils/logger'; |
|
|
|
|
|
|
|
|
const POLLING_INTERVAL = 1000; |
|
|
const POLLING_INTERVAL = 1000; |
|
|
|
|
|
const accessLogStream = fs.createWriteStream(path.join(logsDirectoryPath, 'access.log'), { flags: 'a' }); |
|
|
|
|
|
logger.info('Service setting up.'); |
|
|
|
|
|
|
|
|
const responseBody = { |
|
|
const responseBody = { |
|
|
ipfs: { |
|
|
ipfs: { |
|
@ -18,11 +24,12 @@ const responseBody = { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
getResolvedRendezvousUrl().then(({ address }) => { |
|
|
getResolvedRendezvousUrl().then(({ address }) => { |
|
|
|
|
|
logger.info(`Resolved rendezvous URL to: ${address}`); |
|
|
responseBody.rendezvous.url = address; |
|
|
responseBody.rendezvous.url = address; |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
const getStats = async (orbit) => { |
|
|
const getStats = async (orbit) => { |
|
|
const { address: resolvedRendezvousUrl } = await getResolvedRendezvousUrl(); |
|
|
logger.info('Gathering stats.'); |
|
|
|
|
|
|
|
|
try { |
|
|
try { |
|
|
const ipfs = orbit._ipfs; |
|
|
const ipfs = orbit._ipfs; |
|
@ -34,7 +41,7 @@ const getStats = async (orbit) => { |
|
|
const orbitIdentity = orbit.identity; |
|
|
const orbitIdentity = orbit.identity; |
|
|
const databases = Object.keys(orbit.stores); |
|
|
const databases = Object.keys(orbit.stores); |
|
|
const isWeb3Reachable = await isReachable(getWeb3ProviderUrl()); |
|
|
const isWeb3Reachable = await isReachable(getWeb3ProviderUrl()); |
|
|
const isRendezvousReachable = await isReachable(resolvedRendezvousUrl.address); |
|
|
const isRendezvousReachable = responseBody.rendezvous.url ? await isReachable(responseBody.rendezvous.url) : false; |
|
|
const timestamp = +new Date(); |
|
|
const timestamp = +new Date(); |
|
|
|
|
|
|
|
|
responseBody.ipfs.id = id; |
|
|
responseBody.ipfs.id = id; |
|
@ -48,18 +55,21 @@ const getStats = async (orbit) => { |
|
|
responseBody.rendezvous.reachable = isRendezvousReachable; |
|
|
responseBody.rendezvous.reachable = isRendezvousReachable; |
|
|
responseBody.timestamp = timestamp; |
|
|
responseBody.timestamp = timestamp; |
|
|
} catch (err) { |
|
|
} catch (err) { |
|
|
console.error('Error while getting stats:', err); |
|
|
logger.error('Error while getting stats:', err); |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
const startAPI = (orbit) => { |
|
|
const startAPI = (orbit) => { |
|
|
const app = express(); |
|
|
const app = express(); |
|
|
|
|
|
|
|
|
|
|
|
app.use(morgan('combined', { stream: accessLogStream })); |
|
|
|
|
|
|
|
|
app.get('/', async (req, res) => { |
|
|
app.get('/', async (req, res) => { |
|
|
res.send(responseBody); |
|
|
res.send(responseBody); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
app.listen(pinnerApiPort, () => { |
|
|
app.listen(pinnerApiPort, () => { |
|
|
console.log(`Pinner API at http://localhost:${pinnerApiPort}!`); |
|
|
logger.info(`Pinner API at http://localhost:${pinnerApiPort}!`); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
setInterval(getStats, POLLING_INTERVAL, orbit); |
|
|
setInterval(getStats, POLLING_INTERVAL, orbit); |
|
|