-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathindex.js
115 lines (95 loc) · 3.14 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
var child_process = require("child_process");
var spawn = child_process.spawn;
var execSync = child_process.execSync
var util = require("util");
var config;
switch(process.platform) {
case "darwin":
config = require("./platform/darwin");
break;
case "win32":
config = require("./platform/win32");
break;
case "linux":
config = require("./platform/linux");
break;
case "freebsd":
config = require("./platform/linux");
break;
case "openbsd":
config = require("./platform/linux");
break;
case "android":
config = require("./platform/android");
break;
default:
throw new Error("Unknown platform: '" + process.platform + "'. Send this error to [email protected].");
}
var noop = function() {};
exports.copy = function(text, callback) {
const opts = { env: Object.assign({}, process.env, config.copy.env) };
var child = spawn(config.copy.command, config.copy.args, opts);
var done = (callback
? function() { callback.apply(this, arguments); done = noop; }
: function(err) { if(err) { throw err; } done = noop; }
);
var err = [];
child.stdin.on("error", function (err) { done(err); });
child
.on("exit", function() { done(null, text); })
.on("error", function(err) { done(err); })
.stderr
.on("data", function(chunk) { err.push(chunk); })
.on("end", function() {
if(err.length === 0) { return; }
done(new Error(config.decode(err)));
})
;
if(!child.pid) { return text; }
if(text?.pipe) { text.pipe(child.stdin); }
else {
var output, type = Object.prototype.toString.call(text);
if(type === "[object String]") { output = text; }
else if(type === "[object Object]") { output = util.inspect(text, { depth: null }); }
else if(type === "[object Array]") { output = util.inspect(text, { depth: null }); }
else if(type === "[object Null]") { output = "null"; }
else if(type === "[object Undefined]") { output = "undefined"; }
else { output = text.toString(); }
child.stdin.end(config.encode(output));
}
return text;
};
var pasteCommand = [ config.paste.command ].concat(config.paste.args).join(" ");
exports.paste = function(callback) {
if(execSync && !callback) { return config.decode(execSync(pasteCommand)); }
else if(callback) {
var child = spawn(config.paste.command, config.paste.args);
var done = callback && function() { callback.apply(this, arguments); done = noop; };
var data = [], err = [];
child.on("error", function(err) { done(err); });
child.stdout
.on("data", function(chunk) { data.push(chunk); })
.on("end", function() { done(null, config.decode(data)); })
;
child.stderr
.on("data", function(chunk) { err.push(chunk); })
.on("end", function() {
if(err.length === 0) { return; }
done(new Error(config.decode(err)));
})
;
} else {
throw new Error("A synchronous version of paste is not supported on this platform.");
}
};
exports.silent = function() {
throw new Error("DEPRECATED: copy-paste is now always silent.");
};
exports.noConflict = function() {
throw new Error("DEPRECATED: copy-paste no longer adds global variables by default.");
};
exports.global = function() {
global.copy = exports.copy;
global.paste = exports.paste;
return exports;
};