mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #17457 from overleaf/dp-local-collabratec-helpers
Add oauth/create_token.js script for creating oauth tokens locally GitOrigin-RevId: 5020a5b1946006da020e15afd2ddc1d04cbb8fed
This commit is contained in:
parent
3dac268d1f
commit
6d55f2e09d
1 changed files with 101 additions and 0 deletions
101
services/web/scripts/oauth/create_token.js
Normal file
101
services/web/scripts/oauth/create_token.js
Normal file
|
@ -0,0 +1,101 @@
|
|||
const minimist = require('minimist')
|
||||
const { waitForDb, db } = require('../../app/src/infrastructure/mongodb')
|
||||
const {
|
||||
hashSecret,
|
||||
} = require('../../modules/oauth2-server/app/src/SecretsHelper')
|
||||
|
||||
async function main() {
|
||||
const opts = parseArgs()
|
||||
await waitForDb()
|
||||
|
||||
if (opts.accessToken == null) {
|
||||
console.error('Missing --token option')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (opts.refreshToken == null) {
|
||||
console.error('Missing --refresh-token option')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (opts.oauthApplication_id == null) {
|
||||
console.error('Missing --application-id option')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (opts.user_id == null) {
|
||||
console.error('Missing --user-id option')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (opts.scope == null) {
|
||||
console.error('Missing --scope option')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (opts.accessTokenExpiresAt == null) {
|
||||
console.error('Missing --expiry-date option')
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
await insertToken(opts)
|
||||
}
|
||||
|
||||
async function insertToken(opts) {
|
||||
const token = {
|
||||
...opts,
|
||||
accessToken: hashSecret(opts.accessToken),
|
||||
refreshToken: hashSecret(opts.refreshToken),
|
||||
accessTokenExpiresAt: new Date(opts.accessTokenExpiresAt),
|
||||
createdAt: new Date(),
|
||||
}
|
||||
|
||||
await db.oauthAccessTokens.insertOne(token)
|
||||
}
|
||||
|
||||
function parseArgs() {
|
||||
const args = minimist(process.argv.slice(2), {
|
||||
boolean: ['help'],
|
||||
})
|
||||
if (args.help) {
|
||||
usage()
|
||||
process.exit(0)
|
||||
}
|
||||
if (args._.length !== 0) {
|
||||
usage()
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
return {
|
||||
accessToken: args.token,
|
||||
oauthApplication_id: args['application-id'],
|
||||
refreshToken: args['refresh-token'],
|
||||
user_id: args['user-id'],
|
||||
scope: args.scope,
|
||||
accessTokenExpiresAt: args['expiry-date'],
|
||||
}
|
||||
}
|
||||
|
||||
function usage() {
|
||||
console.error(`Usage: create_token.js [OPTS...]
|
||||
|
||||
Creates an OAuth access token
|
||||
|
||||
Options:
|
||||
--application-id ID for the OAuth application
|
||||
--user-id ID of the user this token belongs to
|
||||
--token Access token
|
||||
--refresh-token Refresh token
|
||||
--scope Accepted scope
|
||||
--expiry-date Token expiry date
|
||||
`)
|
||||
}
|
||||
|
||||
main()
|
||||
.then(() => {
|
||||
process.exit(0)
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
process.exit(1)
|
||||
})
|
Loading…
Reference in a new issue