aboutsummaryrefslogtreecommitdiff
path: root/e2e/lib/clipboard.js
blob: 4061dbdb5dc8a06fbaaf955ca1a48230a29bc6c0 (plain) (blame)
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
'use strict';

const { spawn } = require('child_process');

const readLinux = () => {
  let stdout = '', stderr = '';
  return new Promise((resolve, reject) => {
    let xsel = spawn('xsel', ['--clipboard', '--output']);
    xsel.stdout.on('data', (data) => {
      stdout += data;
    });
    xsel.stderr.on('data', (data) => {
      stderr += data;
    });
    xsel.on('close', (code) => {
      if (code !== 0) {
        throw new Error(`xsel returns ${code}: ${stderr}`)
      }
      resolve(stdout);
    });
  });
};

const writeLinux = (data) => {
  let stdout = '', stderr = '';
  return new Promise((resolve, reject) => {
    let xsel = spawn('xsel', ['--clipboard', '--input']);
    xsel.stderr.on('data', (data) => {
      stderr += data;
    });
    xsel.on('close', (code) => {
      if (code !== 0) {
        throw new Error(`xsel returns ${code}: ${stderr}`)
      }
      resolve();
    });
    xsel.stdin.write(data);
    xsel.stdin.end();
  });
};

const unsupported = (os) => {
  return () => {
    throw new Error(`Unsupported os: ${os}`);
  };
};

const detect = () => {
  switch (process.platform) {
    case 'linux':
      return {
        read: readLinux,
        write: writeLinux,
      };
    default:
      return {
        read: unsupported(process.platform),
        write: unsupported(process.platform),
      };
  }
}

module.exports = detect();