You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/templates/admin
Rowan Bohde 416c36f303
allow synchronizing user status from OAuth2 login providers (#31572)
This leverages the existing `sync_external_users` cron job to
synchronize the `IsActive` flag on users who use an OAuth2 provider set
to synchronize. This synchronization is done by checking for expired
access tokens, and using the stored refresh token to request a new
access token. If the response back from the OAuth2 provider is the
`invalid_grant` error code, the user is marked as inactive. However, the
user is able to reactivate their account by logging in the web browser
through their OAuth2 flow.

Also changed to support this is that a linked `ExternalLoginUser` is
always created upon a login or signup via OAuth2.

### Notes on updating permissions
Ideally, we would also refresh permissions from the configured OAuth
provider (e.g., admin, restricted and group mappings) to match the
implementation of LDAP. However, the OAuth library used for this `goth`,
doesn't seem to support issuing a session via refresh tokens. The
interface provides a [`RefreshToken`
method](https://github.com/markbates/goth/blob/master/provider.go#L20),
but the returned `oauth.Token` doesn't implement the `goth.Session` we
would need to call `FetchUser`. Due to specific implementations, we
would need to build a compatibility function for every provider, since
they cast to concrete types (e.g.
[Azure](https://github.com/markbates/goth/blob/master/providers/azureadv2/azureadv2.go#L132))

---------

Co-authored-by: Kyle D <kdumontnu@gmail.com>
7 months ago
..
applications Always use `ctx.Locale.Tr` inside templates (#27231) 1 year ago
auth allow synchronizing user status from OAuth2 login providers (#31572) 7 months ago
emails code optimization (#31315) 8 months ago
org Migrate margin and padding helpers to tailwind (#30043) 10 months ago
packages Fix some URLs whose sub-path is missing (#31289) 8 months ago
repo Replace `gt-word-break` with `tw-break-anywhere` (#31183) 8 months ago
runners Move secrets and runners settings to actions settings (#24200) 2 years ago
user code optimization (#31315) 8 months ago
actions.tmpl Added instance-level variables (#28115) 1 year ago
config.tmpl Add cache test for admins (#31265) 8 months ago
config_settings.tmpl Remove fomantic checkbox module (#30162) 10 months ago
cron.tmpl code optimization (#31315) 8 months ago
dashboard.tmpl Fix double border in system status table (#31363) 8 months ago
hook_new.tmpl Always use `ctx.Locale.Tr` inside templates (#27231) 1 year ago
hooks.tmpl Change to vertical navbar layout for secondary navbar for repo/user/admin settings (#24246) 2 years ago
layout_footer.tmpl Change to vertical navbar layout for secondary navbar for repo/user/admin settings (#24246) 2 years ago
layout_head.tmpl Fix flash message for flex-container (#30657) 9 months ago
navbar.tmpl Do not allow different storage configurations to point to the same directory (#30169) 10 months ago
notice.tmpl Remove fomantic button module (#30475) 10 months ago
queue.tmpl Always use `ctx.Locale.Tr` inside templates (#27231) 1 year ago
queue_manage.tmpl Migrate margin and padding helpers to tailwind (#30043) 10 months ago
self_check.tmpl Add cache test for admins (#31265) 8 months ago
stacktrace-row.tmpl Migrate margin and padding helpers to tailwind (#30043) 10 months ago
stacktrace.tmpl Fix incorrect tailwind migration (#30007) 10 months ago
stats.tmpl Always use `ctx.Locale.Tr` inside templates (#27231) 1 year ago
system_status.tmpl Auto-update the system status in admin dashboard (#29163) 12 months ago