OpenPrinting / cups

OpenPrinting CUPS Sources
https://openprinting.github.io/cups
Apache License 2.0
1.06k stars 190 forks source link

OAuth Server and Default Callback Support #246

Open michaelrsweet opened 3 years ago

michaelrsweet commented 3 years ago

This bug is a placeholder for adding OAuth server support to cupsd and figuring out the right default callbacks on different platforms.

michaelrsweet commented 3 years ago

Related to issue #100 which adds the basic client callback support in libcups.

ShivanshCharak commented 1 year ago

Okay so by authorization you mean when we open the localhost:631 it asks for username and password of the machine there we have to add authorization?

michaelrsweet commented 1 year ago

@ShivanshCharak No, this is to integrate support for using OAuth/OpenID with CUPS - on the client side to open a browser window to authorize access, and on the server (cupsd) side to "introspect" the access token to get the authorized user name.

In short, an alternative to the usual username + password stuff.

yarons commented 1 year ago

It's easier to manage from security perspective by allowing having a single identity per employee and auditing (SAML is a good example, think about controlling the paper type and color/b&w centrally in that case). OpenID Connect is usually for public services authentication such as Google, Facebook, etc., I don't think it's mandatory for such project.

ShivanshCharak commented 1 year ago

@michaelrsweet okay so you mean by using openid we have to do Authorization by poping up the window there we have to give our detail like email or password and by using tge system will give us access

michaelrsweet commented 1 year ago

@ShivanshCharak I appreciate the enthusiasm!

We are finalizing some OAuth things over in the Printer Working Group now, and I hope to post an initial document for discussion this week (I'll add a link here).

Aside from the logistics of what bits of OAuth/OpenID to support, there are also a bunch of security things to think about in implementation to prevent arbitrary programs from collecting access tokens.

michaelrsweet commented 6 months ago

OK, so I've been noodling some things for how to implement this:

For GUI applications, the CPDB UI will need to handle bringing up the OAuth authorization page and collecting the bearer token.