pushbits / server

A simple server for push notifications via Matrix (and a minimalistic alternative to Pushover and Gotify) 🚀📯
https://www.pushbits.io
ISC License
305 stars 18 forks source link

Improve authentication mechanism #19

Open eikendev opened 3 years ago

eikendev commented 3 years ago

Most importantly, we should enable authentication via, e.g., OAuth bearer tokens, and support 2FA.

CubicrootXYZ commented 3 years ago

Are there any standards and/or golang libraries you prefere for this? As I want to look into the actual implementation of such auth a little bit.

eikendev commented 3 years ago

Hm, I think this depends on the goals we want to achieve:

Personally, I'd prefer sticking to the CLI because it is less work to maintain, but happy to receive input on this.

CubicrootXYZ commented 3 years ago

OAuth sounds fine for me. It is a widely adopted standard so it can be used for a GUI later too. Maybe an option for longterm (limitied access) tokens might be great too.

CubicrootXYZ commented 3 years ago

I searched a bit through the available libraries. There are 2 gin-specific oauth libraries one based on the basic oauth lib and another one from zalando. But both are not updated in the last few years.

Another option would be to just use the basic oauth2 lib, that would also give some more freedom in handling the authentication, e.g. if you plan to make authentication mechanics switchable via config options.

eikendev commented 3 years ago

I think the first option go-oauth2/gin-server appears fine, it glues together Gin (which we are already using) and the basic oauth2 lib. Presumably the reason why it seems so inactive is that there's not a lot of code, but still the code that's there is convenient for us to use. Since it's from go-oauth2, I would trust it more than some random package.

CubicrootXYZ commented 3 years ago

I implemented oauth as an optional authentication mechanism in a branch of my fork.

I would enjoy any comments and ideas on how to improve it further. Currently the only thing I am missing (and want to implemented) is the ability to create longterm tokens.

I intentionally tried to apply a modular scheme to the authentication process, so that other authentication methods can easily be implemented if needed.

eikendev commented 3 years ago

That's awesome! Would you mind creating a pull request for it? We can treat it as WIP, but it makes the review more convenient.

CubicrootXYZ commented 3 years ago

Sure created https://github.com/pushbits/server/pull/29

eikendev commented 3 years ago

Thanks, will have a look on Tuesday!