-
Notifications
You must be signed in to change notification settings - Fork 838
client: Jwt token based auth for engine api enabled via rpcEngineAuth arg
#1751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
119d507
Jwt token based auth for engine api
g11tech 7ad7bcd
treat jwt-secret as a file with the hex encoded secret
g11tech fd9c912
dump a random secret if no jwt-param provided
g11tech fcb837c
small opt for only adding unless check if engine is bundled with othe…
g11tech 2ab5cd0
remove body-parser dep
ryanio 7f781cc
update client eslintrc to include all bin files for no-console, format
ryanio 0dadbb0
simplify some namings, add typedoc
ryanio 308f7a7
update package-lock
ryanio 66882aa
swap express out in favour of a much lighter connect based middleware…
g11tech 9fefadb
small refactor and rpc spec unit tests
g11tech 9fb888d
fix webpack
ryanio f7d054e
nits
ryanio bf58684
auth: handle batch requests
ryanio c93fe12
Apply suggestions from code review
ryanio 735c706
Jwt auth for websocket on upgrade request
g11tech a52c60c
enable auth with a flag rpcEngineAuth
g11tech a4a20bd
auth test cases for websocket server
g11tech e4c5699
Update packages/client/test/rpc/websocket.spec.ts
ryanio cf77519
Update packages/client/bin/cli.ts
ryanio c18831b
prefer not to use ts-ignore
ryanio 9e0cc27
remove extra whitespace
ryanio baa69f8
remove extra whitespace
ryanio File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,22 @@ | ||
| module.exports = { | ||
| extends: "../../config/eslint.js", | ||
| extends: '../../config/eslint.js', | ||
| parserOptions: { | ||
| project: ['./tsconfig.json', './tsconfig.browser.json', './tsconfig.eslint.json'] | ||
| }, | ||
| rules: { | ||
| project: ['./tsconfig.json', './tsconfig.browser.json', './tsconfig.eslint.json'], | ||
| }, | ||
| rules: {}, | ||
| overrides: [ | ||
| { | ||
| files: ['test/**/*.ts'], | ||
| rules: { | ||
| 'implicit-dependencies/no-implicit': [ | ||
| 'error', | ||
| { peer: false, dev: true, optional: false }, | ||
| ], | ||
| 'implicit-dependencies/no-implicit': ['error', { peer: false, dev: true, optional: false }], | ||
| }, | ||
| }, | ||
| { | ||
| files: ['bin/cli.ts'], | ||
| files: ['bin/**.ts'], | ||
| rules: { | ||
| 'no-console': 'off' | ||
| 'no-console': 'off', | ||
| }, | ||
| }, | ||
| ], | ||
| ignorePatterns: ['webpack.config.js'] | ||
| ignorePatterns: ['webpack.config.js'], | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.