aboutsummaryrefslogtreecommitdiff
path: root/lib/remotes/git.js
blob: 11fdab89ddda38da508e6545c2e009ccbb49d1cc (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
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`);
    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`);
  }
}