Template
1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo synced 2024-11-22 09:54:24 +01:00
forgejo/services/context
Gusted b770282d45
fix: extend forgejo_auth_token table
- Add a `purpose` column, this allows the `forgejo_auth_token` table to
be used by other parts of Forgejo, while still enjoying the
no-compromise architecture.
- Remove the 'roll your own crypto' time limited code functions and
migrate them to the `forgejo_auth_token` table. This migration ensures
generated codes can only be used for their purpose and ensure they are
invalidated after their usage by deleting it from the database, this
also should help making auditing of the security code easier, as we're
no longer trying to stuff a lot of data into a HMAC construction.
-Helper functions are rewritten to ensure a safe-by-design approach to
these tokens.
- Add the `forgejo_auth_token` to dbconsistency doctor and add it to the
`deleteUser` function.
- TODO: Add cron job to delete expired authorization tokens.
- Unit and integration tests added.

(cherry picked from commit 1ce33aa38d)

v7: Removed migration - XORM can handle this case automatically without migration.

assert.Equal(t, `doesnotexist@example.com`, msgs[0].To) in tests
because v7 does not include the user name to the recipient.
2024-11-15 12:02:14 +01:00
..
upload Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
access_log.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
api.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
api_org.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
api_test.go enable linter testifylint on v7 (#4572) 2024-07-30 19:42:06 +00:00
base.go Ignore useless error message "broken pipe" (#30801) (#30842) 2024-05-07 08:15:36 +01:00
base_test.go Use strict protocol check when redirect (#29642) 2024-03-11 23:36:59 +07:00
captcha.go Clean up log messages (#30313) 2024-04-15 16:11:14 +02:00
context.go Customizable "Open with" applications for repository clone (#29320) 2024-03-23 11:58:54 +01:00
context_cookie.go fix: extend forgejo_auth_token table 2024-11-15 12:02:14 +01:00
context_model.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
context_request.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
context_response.go Ignore useless error message "broken pipe" (#30801) (#30842) 2024-05-07 08:15:36 +01:00
context_template.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
context_test.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
csrf.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
org.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
package.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
pagination.go Unify search boxes (#29530) 2024-03-20 12:31:05 +00:00
permission.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
private.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
repo.go Move get/set default branch from git package to gitrepo package to hide repopath (#29126) 2024-03-11 23:36:59 +07:00
response.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
user.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
utils.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
xsrf.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00
xsrf_test.go Move context from modules to services (#29440) 2024-03-06 12:10:43 +08:00