2015-06-08 15:24:56 +02:00
|
|
|
var Node = {
|
|
|
|
child: require('child_process'),
|
|
|
|
fs: require('fs'),
|
|
|
|
os: require('os'),
|
|
|
|
path: require('path'),
|
|
|
|
process: process
|
|
|
|
};
|
|
|
|
|
|
|
|
function escapeDoubleQuotes(string) {
|
|
|
|
return string.replace(/"/g, '\\"');
|
|
|
|
}
|
|
|
|
|
|
|
|
function validName(string) {
|
|
|
|
return /^[a-z0-9 ]+$/i.test(string) && string.trim().length > 0;
|
|
|
|
}
|
|
|
|
|
2015-06-08 16:29:05 +02:00
|
|
|
var Name = undefined;
|
|
|
|
|
2015-06-08 15:24:56 +02:00
|
|
|
var Sudo = function(command, end) {
|
|
|
|
if (Node.process.platform === 'darwin') return Sudo.Mac(command, end);
|
2015-09-07 09:10:39 +02:00
|
|
|
end(new Error('Platform not yet supported.'));
|
2015-06-08 15:24:56 +02:00
|
|
|
// TO DO: Add support for linux.
|
|
|
|
};
|
|
|
|
|
|
|
|
Sudo.Mac = function(command, end, count) {
|
|
|
|
if (count === undefined) count = 0;
|
|
|
|
if (count >= 2) return end(new Error('Permission denied after several password prompts.'));
|
|
|
|
if (/^sudo/i.test(command)) return end(new Error('Command should not contain "sudo".'));
|
|
|
|
// Run sudo in non-interactive mode (-n).
|
2015-10-29 19:54:19 +01:00
|
|
|
Node.child.exec('/usr/bin/sudo -n ' + command,
|
2015-06-08 15:24:56 +02:00
|
|
|
function(error, stdout, stderr) {
|
2015-09-07 08:51:03 +02:00
|
|
|
if (/sudo: a password is required/i.test(stderr)) {
|
2015-06-08 15:24:56 +02:00
|
|
|
Sudo.Mac.prompt(
|
|
|
|
function(error) {
|
|
|
|
if (error) return end(error);
|
|
|
|
Sudo.Mac(command, end, ++count); // Cannot use ++ suffix here.
|
|
|
|
}
|
|
|
|
);
|
2015-09-07 08:51:03 +02:00
|
|
|
} else if (!error && /^sudo:/i.test(stderr)) {
|
2015-09-07 09:10:39 +02:00
|
|
|
end(new Error('Unexpected stderr from sudo command without corresponding error: ' + stderr));
|
2015-09-07 08:51:03 +02:00
|
|
|
} else {
|
|
|
|
end(error, stdout, stderr);
|
2015-06-08 15:24:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
Sudo.Mac.prompt = function(end) {
|
|
|
|
var self = this;
|
2015-06-08 16:29:05 +02:00
|
|
|
var title = Name || Node.process.title;
|
2015-06-08 15:24:56 +02:00
|
|
|
if (!validName(title)) return end(new Error('Please use sudo.setName(string) to set your app name (process.title contains invalid characters).'));
|
|
|
|
var temp = Node.os.tmpdir();
|
|
|
|
if (!temp) return end(new Error('Requires os.tmpdir() to be defined.'));
|
|
|
|
if (!Node.process.env.USER) return end(new Error('Requires env[\'USER\'] to be defined.'));
|
|
|
|
if (self.prompting) {
|
|
|
|
// Already waiting for user to enter password...
|
|
|
|
// We expect that Sudo.exec may be called multiple times.
|
|
|
|
// If a prompt is already pending, then we wait for the result of the prompt
|
|
|
|
// and do not trigger another permission request dialog.
|
|
|
|
self.prompting.push(end);
|
|
|
|
} else {
|
|
|
|
// Prompting user for password...
|
|
|
|
self.prompting = [end];
|
|
|
|
var finish = function(error) {
|
|
|
|
var callbacks = self.prompting;
|
|
|
|
self.prompting = false;
|
|
|
|
for (var index = 0, length = callbacks.length; index < length; index++) {
|
|
|
|
callbacks[index](error);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// We copy osascript to a new tmp location using the title of this process as the basename.
|
|
|
|
// We can then use this new binary to change the sudo timestamp, and OS X will use
|
|
|
|
// the title of this process when asking the user for permission.
|
|
|
|
Node.child.exec('which osascript',
|
|
|
|
function(error, stdout, stderr) {
|
|
|
|
if (error) return finish(error);
|
|
|
|
var source = stdout.trim();
|
|
|
|
var target = Node.path.join(temp, title);
|
|
|
|
Node.fs.readFile(source,
|
|
|
|
function(error, buffer) {
|
|
|
|
if (error) return finish(error);
|
|
|
|
Node.fs.writeFile(target, buffer,
|
|
|
|
function(error) {
|
|
|
|
if (error) return finish(error);
|
|
|
|
Node.fs.chmod(target, 0755,
|
|
|
|
function(error) {
|
|
|
|
if (error) return finish(error);
|
|
|
|
// Set the sudo timestamp for our user:
|
|
|
|
var command = '"' + escapeDoubleQuotes(target) + '" -e \'do shell script "mkdir -p /var/db/sudo/$USER; touch /var/db/sudo/$USER" with administrator privileges\'';
|
|
|
|
Node.child.exec(command,
|
|
|
|
function(error, stdout, stderr) {
|
|
|
|
if (/user canceled/i.test(error)) error = new Error('User did not grant permission.');
|
|
|
|
if (error) return finish(error);
|
|
|
|
Node.fs.unlink(target, finish);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Sudo.Mac.prompting = false;
|
|
|
|
|
|
|
|
exports.exec = Sudo;
|
|
|
|
|
|
|
|
exports.touch = function(end) {
|
2015-08-05 09:18:34 +02:00
|
|
|
// This is a convenience method to extend the sudo session.
|
|
|
|
// This uses existing sudo-prompt machinery.
|
|
|
|
Sudo('echo touchingsudotimestamp',
|
2015-09-07 08:52:26 +02:00
|
|
|
function(error, stdout, stderr) {
|
2015-06-08 15:24:56 +02:00
|
|
|
if (error) return end(error);
|
2015-09-07 08:52:26 +02:00
|
|
|
end(); // Do not pass stdout and stderr back to callback.
|
2015-06-08 15:24:56 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.setName = function(string) {
|
|
|
|
if (!validName(string)) throw new Error('Name must be alphanumeric only (spaces are allowed).');
|
2015-06-08 16:29:05 +02:00
|
|
|
Name = string;
|
2015-06-08 15:24:56 +02:00
|
|
|
};
|