| Server IP : 81.19.159.101 / Your IP : 216.73.217.111 Web Server : Apache System : Linux www58.world4you.com 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : ftp8817043 ( 2681) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/.sites/103/site8817043/web/wp-content/plugins/akeebabackupwp/app/Solo/Model/ |
Upload File : |
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Solo\Model;
use Awf\Filesystem\Sftp;
use Awf\Mvc\Model;
class Sftpbrowser extends Model
{
public function doBrowse()
{
$dir = $this->getState('directory');
// Remove the trailing slash and commit it in the state
$this->setState('directory', rtrim($dir, '/'));
// Parse directory to parts
$parsed_dir = trim($dir,'/');
$parts = empty($parsed_dir) ? array() : explode('/', $parsed_dir);
// Find the path to the parent directory
if (!empty($parts))
{
$copy_of_parts = $parts;
array_pop($copy_of_parts);
if (!empty($copy_of_parts))
{
$parent_directory = '/' . implode('/', $copy_of_parts);
}
else
{
$parent_directory = '/';
}
}
else
{
$parent_directory = '/';
}
$options = array(
'host' => $this->getState('host'),
'port' => $this->getState('port'),
'username' => $this->getState('username'),
'password' => $this->getState('password'),
'directory' => $this->getState('directory'),
'privKey' => $this->getState('privKey'),
'pubKey' => $this->getState('pubKey'),
);
$list = false;
$error = '';
try
{
$sftp = new Sftp($options);
$list = $sftp->listFolders();
}
catch (\RuntimeException $e)
{
$error = $e->getMessage();
// Did I get an error while fetching the list of folders? Let's try using the working dir
if(isset($sftp))
{
try
{
$dir = rtrim($sftp->cwd(), '/').'/'.trim($dir, '/');
$dir = rtrim($dir, '/');
$this->setState('directory', $dir);
$list = $sftp->listFolders($dir);
$error = '';
$parsed_dir = trim($dir,'/');
$parts = empty($parsed_dir) ? array() : explode('/', $parsed_dir);
// Find the path to the parent directory
if (!empty($parts))
{
$copy_of_parts = $parts;
array_pop($copy_of_parts);
if (!empty($copy_of_parts))
{
$parent_directory = '/' . implode('/', $copy_of_parts);
}
else
{
$parent_directory = '/';
}
}
else
{
$parent_directory = '/';
}
}
catch(\RuntimeException $e)
{
$error = $e->getMessage();
}
}
}
$response_array = array(
'error' => $error,
'list' => $list,
'breadcrumbs' => $parts,
'directory' => $this->getState('directory'),
'parent' => $parent_directory
);
return $response_array;
}
}