aboutsummaryrefslogtreecommitdiff
path: root/lib/remotes/git.js
blob: 7a67462a0c6e9baf010a7ea0ce6053520d899722 (plain)
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
const { exec } = require('child_process');
const { debuglog, promisify } = require('util');

const internals = {
  // Promisified functions
  exec: promisify(exec),

  debuglog: debuglog('blog'),
};

module.exports = {
  canHandle() {
    // For the future: actually check if it's a valid git url
    return true;
  },

  async syncUp(remote, blogDirectory) {
    let output = null;

    output = await internals.exec(`cd ${blogDirectory} && git init`);
    internals.debuglog(output.stderr);

    output = await internals.exec(`cd ${blogDirectory} && git add .`);
    internals.debuglog(output.stderr);

    output = await internals.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`);
    internals.debuglog(output.stderr);

    output = await internals.exec(`cd ${blogDirectory} && git push ${remote} main --force`);
    internals.debuglog(output.stderr);
  },

  async syncDown(remote, blogDirectory) {
    let output = null;

    output = await internals.exec(`cd ${blogDirectory} && git init`);
    internals.debuglog(output.stderr);

    output = await internals.exec(`cd ${blogDirectory} && git checkout .`);
    internals.debuglog(output.stderr);

    output = await internals.exec(`cd ${blogDirectory} && git clean . -f`);
    internals.debuglog(output.stderr);

    output = await internals.exec(`cd ${blogDirectory} && git pull ${remote} main`);
    internals.debuglog(output.stderr);
  }
}