2017 © Pedro Peláez
 

symfony-bundle smb-bundle

Samba client for Symfony2

image

isklv/smb-bundle

Samba client for Symfony2

  • Monday, December 7, 2015
  • by isklv
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4,446 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 2 Versions
  • 2 % Grown

The README.md

SMB-Bundle

PHP wrapper for smbclient and libsmbclient-php, (*1)

  • Reuses a single smbclient instance for multiple requests
  • Doesn't leak the password to the process list
  • Simple 1-on-1 mapping of SMB commands
  • A stream-based api to remove the need for temporary files
  • Support for using libsmbclient directly trough libsmbclient-php

Installation

  1. Add as a dependency in your composer file, (*2)

    "require": {
        "isklv/smb-bundle":"dev-master"
    }
    
  2. Add to your Kernel, (*3)

    // application/ApplicationKernel.php
    public function registerBundles()
    {
        $bundles = array(
            new SMBBundle\SMBBundle()
        );
     }
    
  3. (optional) Adjust configurations, (*4)

    # application/config/config.yml
    smb:
        host: localhost
        user: test
        password: test
    

Examples

Upload a file

<?php

$fileToUpload = __FILE__;

$server = $this->get('smb.server');
$share = $server->getShare('test');
$share->put($fileToUpload, 'example.txt');

Download a file

<?php
$target = __DIR__ . '/target.txt';

$server = $this->get('smb.server');
$share = $server->getShare('test');
$share->get('example.txt', $target);

List shares on the remote server

<?php

$server = $this->get('smb.server');
$shares = $server->listShares();

foreach ($shares as $share) {
    echo $share->getName() . "\n";
}

List the content of a folder

<?php

$server = $this->get('smb.server');
$share = $server->getShare('test');
$content = $share->dir('test');

foreach ($content as $info) {
    echo $name->getName() . "\n";
    echo "\tsize :" . $info->getSize() . "\n";
}

Using read streams

<?php

$server = $this->get('smb.server');
$share = $server->getShare('test');

$fh = $share->read('test.txt');
echo fread($fh, 4086);
fclose($fh);

Using write streams

<?php

$server = $this->get('smb.server');
$share = $server->getShare('test');

$fh = $share->write('test.txt');
fwrite($fh, 'bar');
fclose($fh);

Using other configurations

<?php

$server = $this->get('smb.server');
$server->setAuthParams('localhost', 'user0', 'user0');
$share = $server->getShare('test');

Using libsmbclient-php

Install libsmbclient-php, (*5)

<?php

$fileToUpload = __FILE__;

if (Server::NativeAvailable()) {
    $server = new NativeServer('localhost', 'test', 'test');
} else {
    echo 'libsmbclient-php not available, falling back to wrapping smbclient';
    $server = $server = $this->get('smb.server');;
}
$share = $server->getShare('test');
$share->put($fileToUpload, 'example.txt');

The Versions

07/12 2015

dev-master

9999999-dev http://github.com/isklv/smb-bundle

Samba client for Symfony2

  Sources   Download

MIT

The Requires

 

samba

07/12 2015

0.1.0

0.1.0.0 http://github.com/isklv/smb-bundle

Samba client for Symfony2

  Sources   Download

MIT

The Requires

 

samba