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

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

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 -b main`);
    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 -b main`);
    try {
      await internals.exec(`cd ${blogDirectory} && git checkout .`);
    }
    catch {}
    await internals.exec(`cd ${blogDirectory} && git clean . -f`);
    await internals.exec(`cd ${blogDirectory} && git pull ${remote} main`);
  }
}