Skip to content

Commit c9825ca

Browse files
committed
first commit
1 parent 90e3688 commit c9825ca

File tree

4 files changed

+109
-0
lines changed

4 files changed

+109
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ build/Release
2323
# Deployed apps should consider commenting this line out:
2424
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
2525
node_modules
26+
27+
*.swp

example.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
'use strict';
2+
3+
var fs = require('fs');
4+
var SambaClient = require('./');
5+
6+
var testFile = 'test.txt';
7+
8+
fs.writeFileSync(testFile, testFile);
9+
10+
var client = new SambaClient({
11+
address: process.argv[2]
12+
});
13+
14+
client.sendFile(testFile, testFile, function(err) {
15+
if (err) {
16+
return console.error(err);
17+
}
18+
19+
console.log('sent test file to samba share at ' + client.address);
20+
21+
fs.unlinkSync(testFile);
22+
23+
client.getFile(testFile, testFile, function(err) {
24+
if (err) {
25+
return console.error(err);
26+
}
27+
28+
console.log('got test file from samba share at ' + client.address);
29+
});
30+
});
31+
32+
process.on('exit', function() {
33+
fs.unlinkSync(testFile);
34+
});

index.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
'use strict';
2+
3+
var execFile = require('child_process').execFile;
4+
var util = require('util');
5+
var p = require('path');
6+
7+
function SambaClient(options) {
8+
this.address = options.address;
9+
this.username = options.username || 'guest';
10+
this.password = options.password;
11+
}
12+
13+
SambaClient.prototype.getFile = function(path, destination, cb) {
14+
this.runCommand('get', path, destination, cb);
15+
};
16+
17+
SambaClient.prototype.sendFile = function(path, destination, cb) {
18+
this.runCommand('put', path, destination, cb);
19+
};
20+
21+
SambaClient.prototype.runCommand = function(cmd, path, destination, cb) {
22+
var passwordFlag = this.password ? this.password : '-N';
23+
var workingDir = p.dirname(path);
24+
var fileName = p.basename(path).replace('/', '\\');
25+
var escapedDest = destination.replace('/', '\\');
26+
var fullCmd = util.format('%s %s %s', cmd, fileName, escapedDest);
27+
28+
var args = ['-U', this.username, passwordFlag, '-c', fullCmd, this.address];
29+
30+
var options = {
31+
cwd: workingDir
32+
};
33+
34+
execFile('smbclient', args, options, function(err, stdout, stderr) {
35+
// Samba is crazy and writes to standard error when the command is successful
36+
var allOutput = stdout + stderr;
37+
38+
if (err) {
39+
cb(err);
40+
} else if (allOutput.indexOf('error') > -1 || allOutput.indexOf('fail') > -1) {
41+
cb(new Error('Samba Error - ' + allOutput));
42+
} else {
43+
cb(null, allOutput);
44+
}
45+
});
46+
};
47+
48+
module.exports = SambaClient;

package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "samba-client",
3+
"version": "1.0.0",
4+
"description": "wrapper for smbclient",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "mocha"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/eflexsystems/node-samba-client.git"
12+
},
13+
"keywords": [
14+
"samba",
15+
"smb",
16+
"cifs",
17+
"smbclient"
18+
],
19+
"author": "eFlex Systems",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/eflexsystems/node-samba-client/issues"
23+
},
24+
"homepage": "https://github.com/eflexsystems/node-samba-client"
25+
}

0 commit comments

Comments
 (0)