-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Customizable authentication #4068
Comments
To be clear, this is a great idea and something others in the community would surely benefit from. The biggest question is how should this be implemented. @code-asher has the most experience when it comes to adding these types of features to the codebase. We had a similar-ish proposal not long ago and want to ensure we do what we can to help you with this. Let's see what he thinks. |
My thinking is that since code-server already has a plugin system we could expand it a little to allow plugins that add custom authentication. This way we only have one system for plugins/modules rather than two separate ones (one for auth and one for everything else). But the problem is that the plugin API is not documented and I do not think it is ready for release anyway. Plus since we are moving to a fork to align ourselves closer to VS Code we might want to remove the bespoke plugin system and tie into VS Code's plugin API instead. So to move this forward we need to:
The API is not something we will be able to easily change so we want to be careful with it and make sure everyone is on board with what it looks like before we move to implementation. |
Opened a discussion here: #4072 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no activity occurs in the next 5 days. |
This is something I've been working on and I will soon submit an implementation of.
The idea is to allow users of code-server to plug in their own custom authentication method without relying on proxies and without forking the repository.
To this end, my proposal is to add a new authentication type, called
custom
, to the--auth
configuration option. Whencustom
is specified, the user will then need to pass in a--custom-auth-module
configuration option, which should point to a module on disk that can be loaded withrequire
, and which export acustomAuth
property that implements the following interface:The text was updated successfully, but these errors were encountered: