All files http.js

0% Statements 0/143
0% Branches 0/50
0% Functions 0/31
0% Lines 0/142

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
import cors from 'cors'
import express from 'express'
import bodyParser from 'body-parser'
import logger from 'winston'
 
import { SubdomainServer } from './server'
 
import { createMiddleware as createPrometheusMiddleware } from '@promster/express'
import { createServer } from '@promster/server'
 
const HEADERS = { 'Content-Type': 'application/json' }
 
export function makeHTTPServer(config) {
  const app = express()
  const server = new SubdomainServer(config)
 
  if (config.prometheus && config.prometheus.start && config.prometheus.port) {
    app.use(
      createPrometheusMiddleware({
        app,
        options: {
          normalizePath: (path) => {
            if (path.startsWith('/v1/names')) {
              return '/v1/names'
            }
            if (path.startsWith('/status')) {
              return '/status'
            }
            if (path.startsWith('/v1/names')) {
              return '/list'
            }
            return path
          }
        }
      })
    )
    const port = config.prometheus.port
 
    // Create `/metrics` endpoint on separate server
    createServer({ port }).then(() =>
      console.log(`@promster/server started on port ${port}.`)
    )
  }
 
  app.use(cors())
  app.use(bodyParser.json())
 
  app.get('/index', (req, res) => {
    res.writeHead(200, HEADERS)
    res.write(
      JSON.stringify({
        status: true,
        domainName: config.domainName
      })
    )
    res.end()
  })
 
  app.post('/register', (req, res) => {
    const requestJSON = req.body
    if (!requestJSON) {
      res.writeHead(400, HEADERS)
      res.write(
        JSON.stringify({
          status: false,
          message: 'Failed to parse your registration request: expected JSON'
        })
      )
      res.end()
      return
    }
 
    // note: x-real-ip is *only* trust-worthy when running behind a
    //   proxy that the registrar controls!
    const ipAddress = req.headers['x-real-ip'] || req.connection.remoteAddress
    const authorization = req.headers.authorization || ''
 
    server
      .queueRegistration(
        requestJSON.name,
        requestJSON.owner_address,
        0,
        requestJSON.zonefile,
        ipAddress,
        authorization
      )
      .then(() => {
        res.writeHead(202, HEADERS)
        res.write(
          JSON.stringify({
            status: true,
            message:
              'Your subdomain registration was received, and will ' +
              'be included in the blockchain soon.'
          })
        )
        res.end()
      })
      .catch((err) => {
        logger.error(err)
        let message =
          'Failed to validate your registration request. ' + err.message
        let code = 409
        if (err.message.startsWith('Proof')) {
          message = err.message
        }
        if (err.message.startsWith('NameLength:')) {
          code = 400
        }
        res.writeHead(code, HEADERS)
        res.write(
          JSON.stringify({
            status: false,
            message
          })
        )
        res.end()
      })
  })
 
  app.post('/transfer', (req, res) => {
    const requestJSON = req.body
    if (!requestJSON) {
      res.writeHead(400, HEADERS)
      res.write(
        JSON.stringify({
          status: false,
          message: 'Failed to parse your transfer request: expected JSON'
        })
      )
      res.end()
      return
    }
 
    // note: x-real-ip is *only* trust-worthy when running behind a
    //   proxy that the registrar controls!
    const ipAddress = req.headers['x-real-ip'] || req.connection.remoteAddress
    const authorization = req.headers.authorization || ''
 
    const subdomainsList = requestJSON.subdomains_list
    if (!subdomainsList || !Array.isArray(subdomainsList)) {
      res.writeHead(400, HEADERS)
      res.write(
        JSON.stringify({
          status: false,
          message: 'Failed to get subdomains_list'
        })
      )
      res.end()
      return
    }
 
    //verify array has valid objects
    for(let i=0; i< subdomainsList.length; i++){
      if(!subdomainsList[i].subdomainName || !subdomainsList[i].owner || !subdomainsList[i].signature){
        res.writeHead(400, HEADERS)
        res.write(
          JSON.stringify({
            status: false,
            message: 'Failed to get subdomains detail'
          })
        )
        res.end()
        return
      }
    }
 
    const reqestedSubdomains = subdomainsList.map((subdomain) => {
      return {
        subdomainName: subdomain.subdomainName,
        new_owner: subdomain.owner,
        signature: subdomain.signature
      }
    })
    server
    .transferSubdomain(reqestedSubdomains, ipAddress, authorization)
    .then((txHash) => {
      res.writeHead(202, HEADERS)
      res.write(
        JSON.stringify({
          status: true,
          message: `Your subdomains transfer was received, and will 
            be included in the blockchain soon with txId: ${txHash}`
        })
      )
      res.end()
    })
    .catch((err) => {
      logger.error(err)
      const message =
        'Failed to validate your transfer request: ' + err.message
      let code = 400
      if (err.message.includes('not found')) {
        code = 404
      }
      res.writeHead(code, HEADERS)
      res.write(
        JSON.stringify({
          status: false,
          message
        })
      )
      res.end()
    })
  })
 
  app.post('/issue_batch/', (req, res) => {
    const authHeader = req.headers.authorization
    if (!authHeader || authHeader !== `bearer ${config.adminPassword}`) {
      res.writeHead(401, HEADERS)
      res.write(
        JSON.stringify({
          status: false,
          message: 'Unauthorized'
        })
      )
      res.end()
    } else {
      server
        .submitBatch()
        .catch(() => logger.error('Failed to broadcast batch.'))
      res.writeHead(202, HEADERS)
      res.write(
        JSON.stringify({
          status: true,
          message: 'Starting batch.'
        })
      )
      res.end()
    }
  })
 
  app.post('/check_zonefiles/', (req, res) => {
    const authHeader = req.headers.authorization
    if (!authHeader || authHeader !== `bearer ${config.adminPassword}`) {
      res.writeHead(401, HEADERS)
      res.write(
        JSON.stringify({
          status: false,
          message: 'Unauthorized'
        })
      )
      res.end()
    } else {
      server
        .checkZonefiles()
        .catch(() => logger.error('Failed to check our zonefiles.'))
      res.writeHead(202, HEADERS)
      res.write(
        JSON.stringify({
          status: true,
          message: 'Checking zonefiles.'
        })
      )
      res.end()
    }
  })
 
  app.get('/status/:subdomain', (req, res) => {
    server
      .getSubdomainStatus(req.params.subdomain)
      .then((status) => {
        if (status.statusCode) {
          res.writeHead(status.statusCode, HEADERS)
        } else {
          res.writeHead(200, HEADERS)
        }
        res.write(JSON.stringify(status))
        res.end()
      })
      .catch(() => {
        res.writeHead(501, HEADERS)
        res.write(
          JSON.stringify({
            status: false,
            message: 'There was an error processing your request.'
          })
        )
        res.end()
      })
  })
 
  app.get('/v1/names/:fullyQualified', (req, res) => {
    server
      .getSubdomainInfo(req.params.fullyQualified)
      .catch((error) => {
        logger.error(error)
        return {
          message: {
            error: 'Error processing request',
            status: false
          },
          statusCode: 400
        }
      })
      .then((infoResponse) => {
        res.writeHead(infoResponse.statusCode, HEADERS)
        res.write(JSON.stringify(infoResponse.message))
        res.end()
      })
  })
 
  app.get('/list/:iterator', (req, res) => {
    // iterator must be a reasonably-sized finite positive integer
    return Promise.resolve()
      .then(() => {
        const iterator = req.params.iterator
        if (!iterator.match(/^[0-9]{1,10}$/)) {
          logger.warn(
            'List iteratotr must be a reasonably-sized positive integer'
          )
          return {
            message: {
              error: 'Iterator must be a reasonably-sized positive integer'
            },
            statusCode: 400
          }
        }
        return server.listSubdomainRecords(parseInt(iterator))
      })
      .catch((e) => {
        logger.error(e)
        return {
          message: {
            error: 'Error processing request',
            status: false
          },
          statusCode: 400
        }
      })
      .then((response) => {
        res.writeHead(response.statusCode, HEADERS)
        res.write(JSON.stringify(response.message))
        res.end()
      })
  })
 
  const zonefileDelay = Math.min(
    2147483647,
    Math.floor(60000 * config.checkTransactionPeriod)
  )
  const batchDelay = Math.min(
    2147483647,
    Math.floor(60000 * config.batchDelayPeriod)
  )
 
  return server
    .initializeServer()
    .then(() => {
      // schedule timers
      setInterval(() => {
        logger.debug('Waking up to broadcast a batch (UPDATE tx).')
        server
          .submitBatch()
          .catch(() => logger.error('Failed to broadcast batch.'))
      }, batchDelay)
      setInterval(() => {
        logger.debug('Waking up to check transaction statuses.')
        server
          .checkZonefiles()
          .catch(() =>
            logger.error('Failed to check zonefile transaction status.')
          )
      }, zonefileDelay)
    })
    .then(() => app)
}