-
Notifications
You must be signed in to change notification settings - Fork 656
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
Feature/package provider #207
Conversation
This looks cool. Our organization uses gitlab and it would be nice to have sinopia integrate permissions with it so we don't have to maintain duplicate sets of access controls. |
+1 |
1 similar comment
+1 |
Bump. Any word on this? |
Sorry for the delay, I've been extremely busy this month. Can the existing auth plugins be changed in a way to support this feature? Like add Also, we might have an issue with search, because sinopia will get the list of all the packages and try to check if user has an access to each and every one of them. Any ideas how to solve that? |
I considered adding the functionality to auth plugins, but this could be messy and require significant changes to how auth plugins are loaded and configured, or would limit flexibility. Auth takes places when the connection is established, so it doesn't make sense to have multiple auth plugins dependent on package name. Authorization/package-provider features, however, can apply on a per-package basis. In my own use case (and probably others), I'm using different authorization settings for different package name prefixes. I don't see the current search behavior being an issue. It's up to the package provider plugin to ensure that authorization is sufficiently fast or cached. |
Conflicts: lib/auth.js lib/index.js lib/middleware.js
Note: Merged in upstream latest and resolved conflicts. |
I'm trying to pull this in with a few fixes, check this branch: Basically, only major change is: plugin is now called for every package, so it's its responsibility to know if it should handle this particular package or not. For this purpose, second argument is not a package name now, but a package object that contains name and all the config stuff. Necessary changes in gitlab plugin (didn't test it): A bit of a demo how to write those (using it for testing now): So if everything looks good to you, I'll be glad to finally merge and release it. |
The changes look good. If you'd like, I'll test your branch together with the modified gitlab plugin tomorrow, and let you know how it goes. Thanks! |
Tested (both sinopia, and your changes to sinopia-gitlab), and verified working. If you don't mind, please submit a pull request to sinopia-gitlab after this is merged into sinopia; I'll update the readme and push it to npm. Thanks! |
Merged and published as Thanks! |
This pull request adds the ability to create authorization (ie, package provider) plugins (to control access to packages and publishing) in addition to the existing authentication plugins. This is useful if an organization already has an access control infrastructure and doesn't want to duplicate roles across systems.
A plugin using this structure that connects to gitlab is here (it's not yet published to npm, pending this pull request). It will automatically pull package data and access rights from corresponding repositories in gitlab.
This pull request contains the following changes to Sinopia, necessary to add this capability:
The changes are backwards compatible and do not break any existing configurations.
These plugins behave as follows:
If a package matches the "packages" section in the config file, and that section contains an object called "plugin", package information for that package is taken from that plugin. Configuration for the plugin is taken from the object underneath the plugin name, see the gitlab plugin for an example. If a plugin requires no configuration, it may be specified as a string instead of an object.
Multiple plugins can be specified. In this case, the first one that responds to a function with a non-undefined response is used. If no plugins are specified, or all respond with 'undefined', the values specified in the configuration file are used.
Plugins are constructed and instantiated in the same way, and with the same parameters, as auth plugins.