Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9ed39bd

Browse files
committedJan 11, 2018
git: implement ncu-config
1 parent 2c37332 commit 9ed39bd

File tree

5 files changed

+114
-24
lines changed

5 files changed

+114
-24
lines changed
 

‎bin/ncu-config

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
#!/usr/bin/env node
2+
3+
'use strict';
4+
5+
const {
6+
getConfig, updateConfig
7+
} = require('../lib/config');
8+
9+
const yargs = require('yargs');
10+
const argv = yargs
11+
.command({
12+
command: 'set <key> <value>',
13+
desc: 'Set a config variable',
14+
builder: (yargs) => {
15+
yargs
16+
.positional('key', {
17+
describe: 'key of the configuration',
18+
type: 'string'
19+
})
20+
.positional('value', {
21+
describe: 'value of the configuration'
22+
});
23+
},
24+
handler: setHandler
25+
})
26+
.command({
27+
command: 'get <key>',
28+
desc: 'Get a config variable',
29+
builder: (yargs) => {
30+
yargs
31+
.positional('key', {
32+
describe: 'key of the configuration',
33+
type: 'string'
34+
});
35+
},
36+
handler: getHandler
37+
})
38+
.command({
39+
command: 'list',
40+
desc: 'List the configurations',
41+
handler: listHandler
42+
})
43+
.demandCommand(1, 'must provide a valid command')
44+
.boolean('global')
45+
.default({ global: false })
46+
.help()
47+
.argv;
48+
49+
function setHandler(argv) {
50+
const config = getConfig(argv.global);
51+
console.log(
52+
`Updating ${argv.global ? 'global' : 'local'} configuration ` +
53+
`[${argv.key}]: ${config[argv.key]} -> ${argv.value}`);
54+
updateConfig(argv.global, { [argv.key]: argv.value });
55+
}
56+
57+
function getHandler(argv) {
58+
const config = getConfig(argv.global);
59+
console.log(config[argv.key]);
60+
}
61+
62+
function listHandler(argv) {
63+
const config = getConfig(argv.global);
64+
for (const key of Object.keys(config)) {
65+
console.log(`${key}: ${config[key]}`);
66+
}
67+
}
68+
69+
if (!['get', 'set', 'list'].includes(argv._[0])) {
70+
yargs.showHelp();
71+
}

‎components/git/git-node-config

-12
This file was deleted.

‎lib/config.js

+39-9
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,48 @@
22

33
const path = require('path');
44
const os = require('os');
5-
const { readJson } = require('./file');
5+
const { readJson, writeJson } = require('./file');
66

7-
exports.getConfig = function(dir, home) {
8-
const ncurcPath = path.join(home || os.homedir(), '.ncurc');
9-
const ncurc = readJson(ncurcPath);
7+
exports.getMergedConfig = function(dir, home) {
8+
const globalConfig = exports.getConfig(true, home);
9+
const localConfig = exports.getConfig(false, dir);
10+
return Object.assign(globalConfig, localConfig);
11+
};
12+
13+
exports.getConfig = function(isGlobal, dir) {
14+
const configPath = exports.getConfigPath(isGlobal, dir);
15+
return readJson(configPath);
16+
};
17+
18+
exports.getConfigPath = function(isGlobal, dir) {
19+
if (isGlobal) {
20+
const home = exports.getHomeDir(dir);
21+
const ncurcPath = path.join(home, '.ncurc');
22+
return ncurcPath;
23+
} else {
24+
const ncuDir = exports.getNcuDir(dir);
25+
const configPath = path.join(ncuDir, 'config');
26+
return configPath;
27+
}
28+
};
29+
30+
exports.writeConfig = function(isGlobal, obj, dir) {
31+
writeJson(exports.getConfigPath(isGlobal, dir), obj);
32+
};
33+
34+
exports.updateConfig = function(isGlobal, obj, dir) {
35+
const config = exports.getConfig(isGlobal, dir);
36+
const configPath = exports.getConfigPath(isGlobal, dir);
37+
writeJson(configPath, Object.assign(config, obj));
38+
};
1039

11-
const ncuDir = exports.getNcuDir(dir || process.cwd());
12-
const configPath = path.join(ncuDir, 'config');
13-
let config = readJson(configPath);
14-
return Object.assign(ncurc, config);
40+
exports.getHomeDir = function(home) {
41+
if (process.env.XDG_CONFIG_HOME) {
42+
return process.env.XDG_CONFIG_HOME;
43+
}
44+
return home || os.homedir();
1545
};
1646

1747
exports.getNcuDir = function(dir) {
18-
return path.join(dir, '.ncu');
48+
return path.join(dir || process.cwd(), '.ncu');
1949
};

‎lib/session.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const path = require('path');
44
const fs = require('fs');
5-
const { getConfig, getNcuDir } = require('./config');
5+
const { getMergedConfig, getNcuDir } = require('./config');
66
const rimraf = require('rimraf');
77
const mkdirp = require('mkdirp');
88

@@ -15,7 +15,7 @@ class Session {
1515
constructor(dir, prid, config) {
1616
this.dir = dir;
1717
this.prid = prid;
18-
this.config = config || getConfig(this.ncuDir);
18+
this.config = config || getMergedConfig(this.dir);
1919
}
2020

2121
get session() {

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"main": "./bin/metadata.js",
66
"bin": {
77
"get-metadata": "./bin/get-metadata",
8-
"git-node": "./bin/git-node"
8+
"git-node": "./bin/git-node",
9+
"ncu-config": "./bin/ncu-config"
910
},
1011
"scripts": {
1112
"test": "npm run test-unit && npm run lint",

0 commit comments

Comments
 (0)
Please sign in to comment.