mirror of
https://github.com/Chouchen/Shikiryu_Backup.git
synced 2021-06-30 16:02:14 +02:00
73 lines
2.0 KiB
PHP
73 lines
2.0 KiB
PHP
<?php
|
||
|
||
namespace Shikiryu\Backup\Transport;
|
||
|
||
use phpseclib\Net\SFTP as LibSFTP;
|
||
|
||
class Sftp extends TransportAbstract
|
||
{
|
||
/** @var string */
|
||
protected $host;
|
||
/** @var int */
|
||
protected $port = 22;
|
||
/** @var string */
|
||
protected $login;
|
||
/** @var string */
|
||
protected $password;
|
||
/** @var string */
|
||
protected $folder;
|
||
/** @var LibSFTP */
|
||
private $connection;
|
||
|
||
/**
|
||
* @param \Shikiryu\Backup\Backup\BackupAbstract $backup
|
||
* @param array $config
|
||
* @throws \Exception
|
||
*/
|
||
public function __construct($backup, $config)
|
||
{
|
||
parent::__construct($backup, $config);
|
||
|
||
$this->connection = new LibSFTP($this->host, $this->port);
|
||
if (!$this->connection->login($this->login, $this->password)) {
|
||
throw new \Exception(sprintf('I can\'t connect to the FTP %s', $this->host));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @return bool
|
||
*
|
||
* @throws \Exception
|
||
*/
|
||
public function send()
|
||
{
|
||
$sent = true;
|
||
$files = $this->backup->getFilesTobackup();
|
||
if (!empty($files)) {
|
||
foreach ($files as $file => $name) {
|
||
$upload = $this->connection->put($this->folder.'/'.$name, $file, LibSFTP::SOURCE_LOCAL_FILE);
|
||
if (!$upload) {
|
||
$sent = false;
|
||
echo 'SFTP upload manqu<71>e de '.$file.' vers '.$this->folder.$name;
|
||
}
|
||
}
|
||
}
|
||
|
||
$streams = $this->backup->getStreamsTobackup();
|
||
if (!empty($streams)) {
|
||
foreach ($streams as $name => $stream) {
|
||
$upload = $this->connection->put($this->folder.'/'.$name, $stream);
|
||
if (!$upload) {
|
||
echo 'SFTP upload manqu<71>e de '.$name.' vers '.$this->folder.$name;
|
||
$sent = false;
|
||
}
|
||
}
|
||
}
|
||
|
||
if (!$sent) {
|
||
throw new \Exception('At least an upload didnt work.');
|
||
}
|
||
return $sent;
|
||
}
|
||
}
|