Example #1
0
    {
        try {
            if ($input == '' || empty($params['0'])) {
                return false;
            }
            $params = $params['0'];
            if (empty($params['sftp_host']) || empty($params['sftp_password']) || empty($params['sftp_username']) || empty($params['sftp_port']) || empty($params['sftp_root'])) {
                return false;
            }
            $local = new Remote(new Local(dirname($this->getTestFilePath())));
            $filesystem = new Remote(Sftp::getRemoteClient($params));
            if ($local->has($this->test_file)) {
                $contents = $local->read($this->test_file);
                $filesystem->getAdapter()->setRoot($params['sftp_root']);
                if ($filesystem->has($this->test_file)) {
                    $filesystem->delete($this->test_file);
                } else {
                    if ($filesystem->write($this->test_file, $contents)) {
                        $filesystem->delete($this->test_file);
                    }
                }
            }
            $filesystem->getAdapter()->disconnect();
            return true;
        } catch (\Exception $e) {
            return false;
        }
    }
}
$rule = new Writable();
\JaegerApp\Validate::addrule($rule->getName(), array($rule, 'validate'), $rule->getErrorMessage());
 /**
  * Tests the name of the rule
  */
 public function testName()
 {
     $dir = new Writable();
     $this->assertEquals($dir->getName(), 'sftp_writable');
 }