aboutsummaryrefslogtreecommitdiff
path: root/lib/remotes/git.js
blob: d8e0cfd63e4a30e625a80abddc5ce8125a0b730d (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
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) {
    await internals.exec(`cd ${blogDirectory} && git init`);
    await internals.exec(`cd ${blogDirectory} && git add .`);
    await internals.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`);
    await internals.exec(`cd ${blogDirectory} && git push ${remote} main --force`);
  },

  async syncDown(remote, blogDirectory) {
    await internals.exec(`cd ${blogDirectory} && git init`);
    await internals.exec(`cd ${blogDirectory} && git checkout .`);
    await internals.exec(`cd ${blogDirectory} && git clean . -f`);
    await internals.exec(`cd ${blogDirectory} && git pull ${remote} main`);
  }
}