forked from FredrikNoren/ungit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
196 lines (158 loc) · 8.33 KB
/
config.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
var rc = require('rc');
var path = require('path');
var fs = require('fs');
var yargs = require('yargs');
var homedir = require('os-homedir')();
var defaultConfig = {
// The port ungit is exposed on.
port: 8448,
// The base URL ungit will be accessible from.
urlBase: 'http://localhost',
// The URL root path under which ungit will be accesible.
rootPath: '',
// Directory to output log files.
logDirectory: null,
// Write REST requests to the log
logRESTRequests: true,
// Write git commands issued to the log
logGitCommands: false,
// Write the result of git commands issued to the log
logGitOutput: false,
// This will automatically send anonymous bug reports.
bugtracking: false,
// Google analytics for usage statistics.
sendUsageStatistics: false,
// True to enable authentication. Users are defined in the users configuration property.
authentication: false,
// Map of username/passwords which are granted access.
users: undefined,
// Set to false to show rebase and merge on drag and drop on all nodes.
showRebaseAndMergeOnlyOnRefs: true,
// Maximum number of concurrent git operations
maxConcurrentGitOperations: 4,
// Launch a browser window with ungit when ungit is started
launchBrowser: true,
// Instead of launching ungit with the current folder force a different path to be used. Can be set to null to force the home screen.
forcedLaunchPath: undefined,
// Closes the server after x ms of inactivity. Mainly used by the clicktesting.
autoShutdownTimeout: undefined,
// Maximum number of automatic restarts after a crash. Undefined == unlimited.
maxNAutoRestartOnCrash: undefined,
// Don't fast forward git mergers. See git merge --no-ff documentation
noFFMerge: true,
// Automatically fetch from remote when entering a repository using ungit
autoFetch: true,
// Used for development purposes.
dev: false,
// Specify a custom command to launch. `%U` will be replaced with the URL
// that corresponds with the working git directory.
//
// NOTE: This will execute *before* opening the browser window if the
// `launchBrowser` option is `true`.
// Example:
// # Override the browser launch command; use chrome's "app"
// # argument to get a new, chromeless window for that "native feel"
// $ ungit --launchBrowser=0 --launchCommand "chrome --app=%U"
launchCommand: undefined,
// Allow checking out nodes (which results in a detached head)
allowCheckoutNodes: false,
// An array of ip addresses that can connect to ungit. All others are denied.
// null indicates all IPs are allowed.
// Example (only allow localhost): allowedIPs: ["127.0.0.1"]
allowedIPs: null,
// Automatically remove remote tracking branches that have been removed on the
// server when fetching. (git fetch -p)
autoPruneOnFetch: true,
// Directory to look for plugins
pluginDirectory: path.join(homedir, '.ungit', 'plugins'),
// Name-object pairs of configurations for plugins. To disable a plugin, use "disabled": true, for example:
// "pluginConfigs": { "gerrit": { "disabled": true } }
pluginConfigs: {},
// Don't show errors when the user is using a bad or undecidable git version
gitVersionCheckOverride: false,
// Automatically does stash -> operation -> stash pop when you checkout, reset or cherry pick. This makes it
// possible to perform those actions even when you have a dirty working directory.
autoStashAndPop: true,
fileSeparator: path.sep,
// disable warning popup at discard
disableDiscardWarning: false,
// Duration of discard warning dialog mute time should it be muted.
disableDiscardMuteTime: 60 * 1000 * 5 // 5 mins
};
// Works for now but should be moved to bin/ungit
var argv = yargs
.usage('$0 [-v] [-b] [--cliconfigonly] [--gitVersionCheckOverride]')
.example('$0 --port=8888', 'Run Ungit on port 8888')
.example('$0 --no-logRESTRequests --logGitCommands', 'Turn off REST logging but tur on git command log')
.help('help')
.version('ungit version: ' + JSON.parse(fs.readFileSync(path.join(__dirname, '../package.json'))).version + '\n', 'version')
.alias('b', 'launchBrowser')
.alias('h', 'help')
.alias('o', 'gitVersionCheckOverride')
.alias('v', 'version')
.describe('o', 'Ignore git version check and allow ungit to run with possibly lower versions of git')
.describe('b', 'Launch a browser window with ungit when the ungit server is started. --no-b or --no-launchBrowser disables this')
.describe('cliconfigonly', 'Ignore the default configuration points and only use parameters sent on the command line')
.describe('port', 'The port ungit is exposed on')
.describe('urlBase', 'The base URL ungit will be accessible from')
.describe('rootPath', 'The root path ungit will be accessible from')
.describe('logDirectory', 'Directory to output log files')
.describe('logRESTRequests', 'Write REST requests to the log')
.describe('logGitCommands', 'Write git commands issued to the log')
.describe('logGitOutput', 'Write the result of git commands issued to the log')
.describe('bugtracking', 'This will automatically send anonymous bug reports')
.describe('sendUsageStatistics', 'Google analytics for usage statistics')
.describe('authentication', 'True to enable authentication. Users are defined in the users configuration property')
.describe('users', 'Map of username/passwords which are granted access')
.describe('showRebaseAndMergeOnlyOnRefs', 'Set to false to show rebase and merge on drag and drop on all nodes')
.describe('maxConcurrentGitOperations', 'Maximum number of concurrent git operations')
.describe('forcedLaunchPath', 'Define path to be used on open. Can be set to null to force the home screen')
.describe('autoShutdownTimeout', 'Closes the server after x ms of inactivity. Mainly used by the clicktesting')
.describe('maxNAutoRestartOnCrash', 'Maximum number of automatic restarts after a crash. Undefined == unlimited')
.describe('noFFMerge', 'Don\'t fast forward git mergers. See git merge --no-ff documentation')
.describe('autoFetch', 'Automatically fetch from remote when entering a repository using ungit')
.describe('dev', 'Used for development purposes')
.describe('launchCommand', 'Specify a custom command to launch. `%U` will be replaced with the URL that corresponds with the working git directory.')
.describe('allowCheckoutNodes', 'Allow checking out nodes (which results in a detached head)')
.describe('allowedIPs', 'An array of ip addresses that can connect to ungit. All others are denied')
.describe('autoPruneOnFetch', 'Automatically remove remote tracking branches that have been removed on the server when fetching. (git fetch -p)')
.describe('pluginDirectory', 'Directory to look for plugins')
// --pluginConfigs doesn't work... Probably only works in .ungitrc as a json file
.describe('pluginConfigs', 'No supported as a command line argument, use ungitrc config file. See README.md')
.describe('autoStashAndPop', 'Used for development purposes')
.describe('dev', 'Automatically does stash -> operation -> stash pop when you checkout, reset or cherry pick')
.describe('fileSeparator', 'OS dependent file separator')
.describe('disableDiscardWarning', 'disable warning popup at discard')
.describe('disableDiscardMuteTime', 'duration of discard warning dialog mute time should it be muted');
// If not triggered by test, then do strict option check
if (argv.$0.indexOf('mocha') === -1) {
argv = argv.strict();
}
function cleanUpRootPath() {
var currentRootPath = module.exports.rootPath;
if (typeof currentRootPath !== 'string') {
currentRootPath = '';
} else if (currentRootPath !== '') {
// must start with a slash
if (currentRootPath.charAt(0) !== '/') {
currentRootPath = '/' + currentRootPath;
}
// can not end with a trailing slash
if (currentRootPath.charAt(currentRootPath.length - 1) === '/') {
currentRootPath = currentRootPath.substring(0, currentRootPath.length - 1);
}
}
module.exports.rootPath = currentRootPath;
}
// For testing, $0 is grunt. For credential-parser test, $0 is node
// When ungit is started normaly, $0 == ungit, and non-hyphenated options exists, show help and exit.
if (argv.$0 === 'ungit' && argv._ && argv._.length > 0) {
yargs.showHelp();
process.exit(0);
} else if (argv.cliconfigonly) {
module.exports = argv.default(defaultConfig).argv;
} else {
module.exports = rc('ungit', argv.default(defaultConfig).argv);
}
module.exports.homedir = homedir;
cleanUpRootPath();