Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-workflow
Commits
1b66b67c
Unverified
Commit
1b66b67c
authored
2 years ago
by
Chakshu Gautam
Committed by
GitHub
2 years ago
Browse files
Options
Download
Patches
Plain Diff
Create cli.js
parent
1b526a52
main
dev
feat/centro
feature/formlistapi
fix/remove-forms
revert-67-contributeByGitpod
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
central-config/cli.js
+42
-0
central-config/cli.js
with
42 additions
and
0 deletions
+42
-0
central-config/cli.js
0 → 100644
+
42
−
0
View file @
1b66b67c
// Copyright 2017 ODK Central Developers
// See the NOTICE file at the top-level directory of this distribution and at
// https://github.com/getodk/central-backend/blob/master/NOTICE.
// This file is part of ODK Central. It is subject to the license terms in
// the LICENSE file found in the top-level directory of this distribution and at
// https://www.apache.org/licenses/LICENSE-2.0. No part of ODK Central,
// including this file, may be copied, modified, propagated, or distributed
// except according to the terms contained in the LICENSE file.
//
// This script is our primary administrative utility, providing a packaged way
// for people deploying this server to run basic tasks like creating users and
// resetting their passwords. As much as possible, this file itself tries only
// to parse the command-line input and delegate the actual work to tasks that
// are already defined.
const
{
run
}
=
require
(
'
../task/task
'
);
const
{
createUser
,
promoteUser
,
setUserPassword
}
=
require
(
'
../task/account
'
);
// gets a password interactively if not supplied in cli args.
const
prompt
=
require
(
'
prompt
'
);
const
withPassword
=
(
f
)
=>
{
prompt
.
start
();
prompt
.
get
([{
name
:
'
password
'
,
hidden
:
true
,
replace
:
'
*
'
}],
(
_
,
{
password
})
=>
f
(
password
));
};
// command line nonsense (i'm not a huge fan of this library).
const
cli
=
require
(
'
cli
'
);
const
cliArgs
=
{
email
:
[
'
u
'
,
'
For user create and set password commands, supplies the email.
'
,
'
email
'
]
};
const
cliCommands
=
[
'
user-create
'
,
'
user-promote
'
,
'
user-set-password
'
];
cli
.
parse
(
cliArgs
,
cliCommands
);
// map commands to tasks.
cli
.
main
((
args
,
options
)
=>
{
if
(
cli
.
command
===
'
user-create
'
)
withPassword
((
password
)
=>
run
(
createUser
(
options
.
email
,
password
)));
else
if
(
cli
.
command
===
'
user-promote
'
)
run
(
promoteUser
(
options
.
email
));
else
if
(
cli
.
command
===
'
user-set-password
'
)
withPassword
((
password
)
=>
run
(
setUserPassword
(
options
.
email
,
password
)));
});
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets