!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/wincloud_gateway/node_modules/purest/lib/   drwxr-xr-x
Free 13.35 GB of 57.97 GB (23.04%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     request.js (2.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
var extend = require('extend')
var transform = require('./transform')


module.exports = (deps, ctor, config) => (options) => {

  var alias = (options.alias || ctor.alias || '__default')

  if (!config.aliases[alias]) {
    // throw new Error('Purest: non existing alias!')
    if (deps.promise) {
      return deps.promise.reject(new Error('Purest: non existing alias!'))
    }
    else if (options.callback) {
      options.callback(new Error('Purest: non existing alias!'))
      return
    }
    // TODO: should emit if the client returns a stream
  }

  if (ctor.defaults) {
    var opts = {}
    extend(true, opts, ctor.defaults, options)
    options = opts
  }

  if (options.callback) {
    options.callback = transform.callback(options.callback)
  }

  transform.oauth(ctor, options)
  transform.parse(options)
  transform.length(options)
  // TODO: move to external wrapper using @request/interface
  // legacy request module
  if (deps.request.Request) {
    if (options.json === undefined && options.encoding === undefined) {
      options.json = true
    }
    if (typeof options.multipart === 'object') {
      options.formData = options.multipart
      delete options.multipart
    }
  }
  options = config.endpoint.options(alias, options)

  if (!/^https?:\/\//.test(options.url)) {
    options.url = config.url(alias, options)
  }

  if (deps.promise) {
    var Promise = deps.promise
    var promise = new Promise((resolve, reject) => {
      options.callback = (err, res, body) => {
        if (err) {
          reject(err)
        }
        else {
          resolve([res, body])
        }
      }
    })
    if (options.defer) {
      options.defer((err) => {
        if (err) {
          throw err
        }
        deps.request(options)
      })
    }
    else {
      deps.request(options)
    }
    return promise
  }
  else {
    if (options.defer) {
      options.defer((err) => {
        if (err) {
          throw err
        }
        // TODO: won't be able to pipe streaming implementation
        // defer option should be implemented in the underlying http client
        deps.request(options)
      })
    }
    else {
      return deps.request(options)
    }
  }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0401 ]--