import { Common } from '../api/common'; import { DB } from '../database'; import logger from '../logger'; import PoolsRepository from './PoolsRepository'; class HashratesRepository { /** * Save indexed block data in the database */ public async $saveHashrates(hashrates: any) { if (hashrates.length === 0) { return; } let query = `INSERT INTO hashrates(hashrate_timestamp, avg_hashrate, pool_id, share, type) VALUES`; for (const hashrate of hashrates) { query += ` (FROM_UNIXTIME(${hashrate.hashrateTimestamp}), ${hashrate.avgHashrate}, ${hashrate.poolId}, ${hashrate.share}, "${hashrate.type}"),`; } query = query.slice(0, -1); const connection = await DB.pool.getConnection(); try { // logger.debug(query); await connection.query(query); connection.release(); } catch (e: any) { connection.release(); logger.err('$saveHashrateInDatabase() error' + (e instanceof Error ? e.message : e)); throw e; } } public async $getNetworkDailyHashrate(interval: string | null): Promise { interval = Common.getSqlInterval(interval); const connection = await DB.pool.getConnection(); let query = `SELECT UNIX_TIMESTAMP(hashrate_timestamp) as timestamp, avg_hashrate as avgHashrate FROM hashrates`; if (interval) { query += ` WHERE hashrate_timestamp BETWEEN DATE_SUB(NOW(), INTERVAL ${interval}) AND NOW() AND hashrates.type = 'daily' AND pool_id IS NULL`; } else { query += ` WHERE hashrates.type = 'daily' AND pool_id IS NULL`; } query += ` ORDER by hashrate_timestamp`; try { const [rows]: any[] = await connection.query(query); connection.release(); return rows; } catch (e) { connection.release(); logger.err('$getNetworkDailyHashrate() error' + (e instanceof Error ? e.message : e)); throw e; } } public async $getWeeklyHashrateTimestamps(): Promise { const connection = await DB.pool.getConnection(); const query = `SELECT UNIX_TIMESTAMP(hashrate_timestamp) as timestamp FROM hashrates where type = 'weekly' GROUP BY hashrate_timestamp`; try { const [rows]: any[] = await connection.query(query); connection.release(); return rows.map(row => row.timestamp); } catch (e) { connection.release(); logger.err('$getWeeklyHashrateTimestamps() error' + (e instanceof Error ? e.message : e)); throw e; } } /** * Returns the current biggest pool hashrate history */ public async $getPoolsWeeklyHashrate(interval: string | null): Promise { interval = Common.getSqlInterval(interval); const connection = await DB.pool.getConnection(); const topPoolsId = (await PoolsRepository.$getPoolsInfo('1w')).map((pool) => pool.poolId); let query = `SELECT UNIX_TIMESTAMP(hashrate_timestamp) as timestamp, avg_hashrate as avgHashrate, share, pools.name as poolName FROM hashrates JOIN pools on pools.id = pool_id`; if (interval) { query += ` WHERE hashrate_timestamp BETWEEN DATE_SUB(NOW(), INTERVAL ${interval}) AND NOW() AND hashrates.type = 'weekly' AND pool_id IN (${topPoolsId})`; } else { query += ` WHERE hashrates.type = 'weekly' AND pool_id IN (${topPoolsId})`; } query += ` ORDER by hashrate_timestamp, FIELD(pool_id, ${topPoolsId})`; try { const [rows]: any[] = await connection.query(query); connection.release(); return rows; } catch (e) { connection.release(); logger.err('$getPoolsWeeklyHashrate() error' + (e instanceof Error ? e.message : e)); throw e; } } /** * Returns a pool hashrate history */ public async $getPoolWeeklyHashrate(poolId: number): Promise { const connection = await DB.pool.getConnection(); // Find hashrate boundaries let query = `SELECT MIN(hashrate_timestamp) as firstTimestamp, MAX(hashrate_timestamp) as lastTimestamp FROM hashrates JOIN pools on pools.id = pool_id WHERE hashrates.type = 'weekly' AND pool_id = ${poolId} AND avg_hashrate != 0 ORDER by hashrate_timestamp LIMIT 1` let boundaries = { firstTimestamp: '1970-01-01', lastTimestamp: '9999-01-01' }; try { const [rows]: any[] = await connection.query(query); boundaries = rows[0]; connection.release(); } catch (e) { connection.release(); logger.err('$getPoolWeeklyHashrate() error' + (e instanceof Error ? e.message : e)); } // Get hashrates entries between boundaries query = `SELECT UNIX_TIMESTAMP(hashrate_timestamp) as timestamp, avg_hashrate as avgHashrate, share, pools.name as poolName FROM hashrates JOIN pools on pools.id = pool_id WHERE hashrates.type = 'weekly' AND hashrate_timestamp BETWEEN ? AND ? AND pool_id = ${poolId} ORDER by hashrate_timestamp`; try { const [rows]: any[] = await connection.query(query, [boundaries.firstTimestamp, boundaries.lastTimestamp]); connection.release(); return rows; } catch (e) { connection.release(); logger.err('$getPoolWeeklyHashrate() error' + (e instanceof Error ? e.message : e)); throw e; } } public async $setLatestRunTimestamp(key: string, val: any = null) { const connection = await DB.pool.getConnection(); const query = `UPDATE state SET number = ? WHERE name = ?`; try { await connection.query(query, (val === null) ? [Math.round(new Date().getTime() / 1000), key] : [val, key]); connection.release(); } catch (e) { connection.release(); } } public async $getLatestRunTimestamp(key: string): Promise { const connection = await DB.pool.getConnection(); const query = `SELECT number FROM state WHERE name = ?`; try { const [rows] = await connection.query(query, [key]); connection.release(); return rows[0]['number']; } catch (e) { connection.release(); logger.err('$setLatestRunTimestamp() error' + (e instanceof Error ? e.message : e)); throw e; } } } export default new HashratesRepository();