forgejo/services/user
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
..
avatar.go Fix bug on avatar (#31008) 2024-06-05 08:04:10 +02:00
avatar_test.go enable linter testifylint on v7 (#4572) 2024-07-30 19:42:06 +00:00
block.go [MODERATION] User blocking 2024-02-05 15:56:45 +01:00
block_test.go enable linter testifylint on v7 (#4572) 2024-07-30 19:42:06 +00:00
delete.go fix: extend forgejo_auth_token table 2024-11-15 12:02:14 +01:00
email.go Skip email domain check when admins edit user emails (#29609) 2024-03-11 23:36:58 +07:00
email_test.go enable linter testifylint on v7 (#4572) 2024-07-30 19:42:06 +00:00
update.go [v7.0/forgejo] Add optional pronoun field in user settings (#3076) 2024-04-06 13:23:43 +00:00
update_test.go enable linter testifylint on v7 (#4572) 2024-07-30 19:42:06 +00:00
user.go [BUG] Don't delete inactive emails explicitly 2024-03-29 15:14:09 +01:00
user_test.go enable linter testifylint on v7 (#4572) 2024-07-30 19:42:06 +00:00