-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
215 lines (184 loc) · 7.54 KB
/
index.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/usr/bin/env node
const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
const simpleGit = require('simple-git');
const openpgp = require('openpgp');
let inquirer;
// Configuration file to store key pairs
const CONFIG_FILE = path.join(require('os').homedir(), '.ghs_config.json');
// Load configuration
function loadConfig() {
if (fs.existsSync(CONFIG_FILE)) {
return JSON.parse(fs.readFileSync(CONFIG_FILE, 'utf8'));
}
return { key_pairs: {}, default_gpg_key: null, default_ssh_key: null };
}
// Save configuration
function saveConfig(config) {
fs.writeFileSync(CONFIG_FILE, JSON.stringify(config, null, 4));
}
// Function to export and analyze GPG keys
async function exportAndAnalyzeGpgKeys() {
try {
const armoredText = execSync('gpg --export --armor').toString();
if (!armoredText || !armoredText.includes('BEGIN PGP PUBLIC KEY BLOCK')) {
throw new Error('No armored GPG keys found. Please check your GPG configuration.');
}
const keys = await openpgp.readKeys({ armoredKeys: armoredText });
if (!keys || !Array.isArray(keys) || keys.length === 0) {
throw new Error('No keys found or the returned value is not an array.');
}
console.log('Available GPG Keys:');
keys.forEach((key, index) => {
const keyID = key.getFingerprint() || key.getKeyID().toHex();
console.log(`${index}: ${keyID} (${key.getUserIDs().join(', ')})`);
});
} catch (error) {
console.error('Error exporting GPG keys:', error);
}
}
// Pair GPG and SSH keys
async function pairKeys() {
try {
const config = loadConfig();
console.log("Loaded config:", config);
const armoredText = execSync('gpg --export --armor').toString();
console.log("Exported GPG keys:", armoredText);
if (!armoredText || !armoredText.includes('BEGIN PGP PUBLIC KEY BLOCK')) {
throw new Error('No armored GPG keys found. Please check your GPG configuration.');
}
const keys = await openpgp.readKeys({ armoredKeys: armoredText });
console.log("Read keys:", keys);
if (!keys || !Array.isArray(keys) || keys.length === 0) {
throw new Error('No keys found or the returned value is not an array.');
}
const gpgChoices = keys.map((key, index) => ({
name: `${key.getKeyID().toHex()} (${key.getUserIDs().join(', ')})`,
value: key.getKeyID().toHex()
}));
console.log("GPG choices:", gpgChoices);
const { gpgKey } = await inquirer.prompt({
type: 'list',
name: 'gpgKey',
message: 'Select a GPG key:',
choices: gpgChoices
});
const sshDir = path.join(require('os').homedir(), '.ssh');
const sshKeys = fs.readdirSync(sshDir).filter(file => file.endsWith('.pub'));
const sshChoices = sshKeys.map((key, index) => ({
name: key,
value: path.join(sshDir, key.replace('.pub', ''))
}));
console.log("SSH choices:", sshChoices);
const { sshKey } = await inquirer.prompt({
type: 'list',
name: 'sshKey',
message: 'Select an SSH private key (not .pub):',
choices: sshChoices
});
config.key_pairs[gpgKey] = sshKey;
saveConfig(config);
console.log(`Paired GPG key ${gpgKey} with SSH key ${sshKey}`);
} catch (error) {
console.error('Error pairing keys:', error);
}
}
// Clone repository with specified account
async function cloneRepo(url, gpgKey, sshKey) {
const git = simpleGit();
const repoDir = path.join(process.cwd(), path.basename(url, '.git'));
await git.clone(url, repoDir, {
'--config': `core.sshCommand="ssh -i ${sshKey}"`
});
console.log(`Cloned ${url} into ${repoDir}`);
}
// Switch GitHub accounts in a repository
async function switchAccount(repoPath, gpgKey, sshKey) {
const git = simpleGit(repoPath);
await git.addConfig('user.signingkey', gpgKey);
await git.addConfig('core.sshCommand', `ssh -i ${sshKey}`);
console.log(`Switched account in ${repoPath} to use GPG key ${gpgKey} and SSH key ${sshKey}`);
}
// Set default keys
async function setDefaultKeys() {
try {
const config = loadConfig();
const armoredText = execSync('gpg --export --armor').toString();
if (!armoredText || !armoredText.includes('BEGIN PGP PUBLIC KEY BLOCK')) {
throw new Error('No armored GPG keys found. Please check your GPG configuration.');
}
const keys = await openpgp.readKeys({ armoredKeys: armoredText });
if (!keys || !Array.isArray(keys) || keys.length === 0) {
throw new Error('No keys found or the returned value is not an array.');
}
const gpgChoices = keys.map((key, index) => ({
name: `${key.getKeyID().toHex()} (${key.getUserIDs().join(', ')})`,
value: key.getKeyID().toHex()
}));
const { gpgKey } = await inquirer.prompt({
type: 'list',
name: 'gpgKey',
message: 'Select a default GPG key:',
choices: gpgChoices
});
const sshDir = path.join(require('os').homedir(), '.ssh');
const sshKeys = fs.readdirSync(sshDir).filter(file => !file.endsWith('.pub'));
const sshChoices = sshKeys.map((key, index) => ({
name: key,
value: path.join(sshDir, key)
}));
const { sshKey } = await inquirer.prompt({
type: 'list',
name: 'sshKey',
message: 'Select a default SSH private key:',
choices: sshChoices
});
config.default_gpg_key = gpgKey;
config.default_ssh_key = sshKey;
saveConfig(config);
console.log(`Set default GPG key to ${gpgKey} and SSH key to ${sshKey}`);
} catch (error) {
console.error('Error setting default keys:', error);
}
}
// Main function
async function main() {
inquirer = (await import('inquirer')).default;
const { command } = await inquirer.prompt({
type: 'list',
name: 'command',
message: 'Choose a command:',
choices: ['analyze', 'pair', 'clone', 'switch', 'default']
});
switch (command) {
case 'analyze':
await exportAndAnalyzeGpgKeys();
break;
case 'pair':
await pairKeys();
break;
case 'clone':
const { url, gpgKey: cloneGpgKey, sshKey: cloneSshKey } = await inquirer.prompt([
{ type: 'input', name: 'url', message: 'Repository URL:' },
{ type: 'input', name: 'gpgKey', message: 'GPG key ID:' },
{ type: 'input', name: 'sshKey', message: 'Path to SSH private key (not .pub):' }
]);
await cloneRepo(url, cloneGpgKey, cloneSshKey);
break;
case 'switch':
const { repoPath, gpgKey: switchGpgKey, sshKey: switchSshKey } = await inquirer.prompt([
{ type: 'input', name: 'repoPath', message: 'Path to the repository:' },
{ type: 'input', name: 'gpgKey', message: 'GPG key ID:' },
{ type: 'input', name: 'sshKey', message: 'Path to SSH private key (not .pub):' }
]);
await switchAccount(repoPath, switchGpgKey, switchSshKey);
break;
case 'default':
await setDefaultKeys();
break;
default:
console.log('Unknown command');
}
}
main().catch(err => console.error(err));