]> source.dussan.org Git - gitea.git/commit
OAuth2 auto-register (#5123)
authorMartin Michaelis <code@mgjm.de>
Wed, 14 Apr 2021 12:02:12 +0000 (14:02 +0200)
committerGitHub <noreply@github.com>
Wed, 14 Apr 2021 12:02:12 +0000 (14:02 +0200)
commit55eb1745bd5427c6f84f77703a580d580ac379b3
tree679159c231cfbd27e37049e713d0b1fa6d5a763e
parentca2e1d8090ee9450bd47e5518eb515a9ee1e1475
OAuth2 auto-register (#5123)

* Refactored handleOAuth2SignIn in routers/user/auth.go

The function handleOAuth2SignIn was called twice but some code path could only
be reached by one of the invocations. Moved the unnecessary code path out of
handleOAuth2SignIn.

* Refactored user creation

There was common code to create a user and display the correct error message.
And after the creation the only user should be an admin and if enabled a
confirmation email should be sent. This common code is now abstracted into
two functions and a helper function to call both.

* Added auto-register for OAuth2 users

If enabled new OAuth2 users will be registered with their OAuth2 details.
The UserID, Name and Email fields from the gothUser are used.
Therefore the OpenID Connect provider needs additional scopes to return
the coresponding claims.

* Added error for missing fields in OAuth2 response

* Linking and auto linking on oauth2 registration

* Set default username source to nickname

* Add automatic oauth2 scopes for github and google

* Add hint to change the openid connect scopes if fields are missing

* Extend info about auto linking security risk

Co-authored-by: Viktor Kuzmin <kvaster@gmail.com>
Signed-off-by: Martin Michaelis <code@mgjm.de>
custom/conf/app.example.ini
docs/content/doc/advanced/config-cheat-sheet.en-us.md
models/migrations/migrations.go
models/migrations/v179.go [new file with mode: 0644]
modules/auth/oauth2/oauth2.go
modules/setting/oauth2_client.go [new file with mode: 0644]
modules/setting/setting.go
routers/user/auth.go
routers/user/auth_openid.go