2022-05-02 17:19:37 +02:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2022-05-17 22:35:26 +02:00
|
|
|
"os"
|
2022-05-02 17:19:37 +02:00
|
|
|
|
2023-06-03 16:18:47 +02:00
|
|
|
"codeberg.org/pronounscc/pronouns.cc/backend/db"
|
|
|
|
"codeberg.org/pronounscc/pronouns.cc/backend/log"
|
|
|
|
"codeberg.org/pronounscc/pronouns.cc/backend/server"
|
2022-05-04 16:27:16 +02:00
|
|
|
"emperror.dev/errors"
|
2022-05-02 17:19:37 +02:00
|
|
|
"github.com/go-chi/chi/v5"
|
2022-05-04 16:27:16 +02:00
|
|
|
"github.com/go-chi/render"
|
2022-06-17 15:18:44 +02:00
|
|
|
"github.com/rs/xid"
|
2022-05-02 17:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Server struct {
|
|
|
|
*server.Server
|
2022-05-17 22:35:26 +02:00
|
|
|
|
|
|
|
RequireInvite bool
|
2023-03-16 11:43:25 +01:00
|
|
|
BaseURL string
|
2023-04-24 16:51:55 +02:00
|
|
|
|
|
|
|
hcaptchaSitekey string
|
|
|
|
hcaptchaSecret string
|
2022-05-02 17:19:37 +02:00
|
|
|
}
|
|
|
|
|
2022-06-17 15:18:44 +02:00
|
|
|
type userResponse struct {
|
2023-03-12 01:31:31 +01:00
|
|
|
ID xid.ID `json:"id"`
|
|
|
|
Username string `json:"name"`
|
|
|
|
DisplayName *string `json:"display_name"`
|
|
|
|
Bio *string `json:"bio"`
|
2023-03-13 02:04:09 +01:00
|
|
|
Avatar *string `json:"avatar"`
|
2023-03-12 01:31:31 +01:00
|
|
|
Links []string `json:"links"`
|
|
|
|
Names []db.FieldEntry `json:"names"`
|
|
|
|
Pronouns []db.PronounEntry `json:"pronouns"`
|
|
|
|
Fields []db.Field `json:"fields"`
|
2022-06-17 15:18:44 +02:00
|
|
|
|
|
|
|
Discord *string `json:"discord"`
|
|
|
|
DiscordUsername *string `json:"discord_username"`
|
2023-03-18 15:19:53 +01:00
|
|
|
|
2023-04-18 03:49:37 +02:00
|
|
|
Tumblr *string `json:"tumblr"`
|
|
|
|
TumblrUsername *string `json:"tumblr_username"`
|
|
|
|
|
2023-04-18 22:52:58 +02:00
|
|
|
Google *string `json:"google"`
|
|
|
|
GoogleUsername *string `json:"google_username"`
|
|
|
|
|
2023-03-18 15:19:53 +01:00
|
|
|
Fediverse *string `json:"fediverse"`
|
|
|
|
FediverseUsername *string `json:"fediverse_username"`
|
|
|
|
FediverseInstance *string `json:"fediverse_instance"`
|
2022-06-17 15:18:44 +02:00
|
|
|
}
|
|
|
|
|
2023-03-12 01:31:31 +01:00
|
|
|
func dbUserToUserResponse(u db.User, fields []db.Field) *userResponse {
|
2022-06-17 15:18:44 +02:00
|
|
|
return &userResponse{
|
2023-03-18 15:19:53 +01:00
|
|
|
ID: u.ID,
|
|
|
|
Username: u.Username,
|
|
|
|
DisplayName: u.DisplayName,
|
|
|
|
Bio: u.Bio,
|
|
|
|
Avatar: u.Avatar,
|
|
|
|
Links: db.NotNull(u.Links),
|
|
|
|
Names: db.NotNull(u.Names),
|
|
|
|
Pronouns: db.NotNull(u.Pronouns),
|
|
|
|
Fields: db.NotNull(fields),
|
|
|
|
Discord: u.Discord,
|
|
|
|
DiscordUsername: u.DiscordUsername,
|
2023-04-18 03:49:37 +02:00
|
|
|
Tumblr: u.Tumblr,
|
|
|
|
TumblrUsername: u.TumblrUsername,
|
2023-04-18 22:52:58 +02:00
|
|
|
Google: u.Google,
|
|
|
|
GoogleUsername: u.GoogleUsername,
|
2023-03-18 15:19:53 +01:00
|
|
|
Fediverse: u.Fediverse,
|
|
|
|
FediverseUsername: u.FediverseUsername,
|
|
|
|
FediverseInstance: u.FediverseInstance,
|
2022-06-17 15:18:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-02 17:19:37 +02:00
|
|
|
func Mount(srv *server.Server, r chi.Router) {
|
2022-05-17 22:35:26 +02:00
|
|
|
s := &Server{
|
2023-04-24 16:51:55 +02:00
|
|
|
Server: srv,
|
|
|
|
RequireInvite: os.Getenv("REQUIRE_INVITE") == "true",
|
|
|
|
BaseURL: os.Getenv("BASE_URL"),
|
|
|
|
hcaptchaSitekey: os.Getenv("HCAPTCHA_SITEKEY"),
|
|
|
|
hcaptchaSecret: os.Getenv("HCAPTCHA_SECRET"),
|
2022-05-17 22:35:26 +02:00
|
|
|
}
|
2022-05-02 17:19:37 +02:00
|
|
|
|
2022-05-04 16:27:16 +02:00
|
|
|
r.Route("/auth", func(r chi.Router) {
|
2022-05-17 22:35:26 +02:00
|
|
|
// check if username is taken
|
|
|
|
r.Get("/username", server.WrapHandler(s.usernameTaken))
|
|
|
|
|
2022-05-04 16:27:16 +02:00
|
|
|
// generate csrf token, returns all supported OAuth provider URLs
|
2022-05-12 16:41:32 +02:00
|
|
|
r.Post("/urls", server.WrapHandler(s.oauthURLs))
|
2023-03-16 11:43:25 +01:00
|
|
|
r.Get("/urls/fediverse", server.WrapHandler(s.getFediverseURL))
|
2022-05-02 17:19:37 +02:00
|
|
|
|
2022-05-04 16:27:16 +02:00
|
|
|
r.Route("/discord", func(r chi.Router) {
|
|
|
|
// takes code + state, validates it, returns token OR discord signup ticket
|
2022-05-12 16:41:32 +02:00
|
|
|
r.Post("/callback", server.WrapHandler(s.discordCallback))
|
2022-05-04 16:27:16 +02:00
|
|
|
// takes discord signup ticket to register account
|
2022-11-18 02:17:27 +01:00
|
|
|
r.Post("/signup", server.WrapHandler(s.discordSignup))
|
2023-03-16 11:43:25 +01:00
|
|
|
// takes discord signup ticket to link to existing account
|
2023-03-18 16:33:12 +01:00
|
|
|
r.With(server.MustAuth).Post("/add-provider", server.WrapHandler(s.discordLink))
|
2023-03-18 16:54:31 +01:00
|
|
|
// removes discord link from existing account
|
|
|
|
r.With(server.MustAuth).Post("/remove-provider", server.WrapHandler(s.discordUnlink))
|
2023-03-16 11:43:25 +01:00
|
|
|
})
|
|
|
|
|
2023-04-18 03:49:37 +02:00
|
|
|
r.Route("/tumblr", func(r chi.Router) {
|
|
|
|
r.Post("/callback", server.WrapHandler(s.tumblrCallback))
|
|
|
|
r.Post("/signup", server.WrapHandler(s.tumblrSignup))
|
|
|
|
r.With(server.MustAuth).Post("/add-provider", server.WrapHandler(s.tumblrLink))
|
|
|
|
r.With(server.MustAuth).Post("/remove-provider", server.WrapHandler(s.tumblrUnlink))
|
|
|
|
})
|
|
|
|
|
2023-04-18 22:52:58 +02:00
|
|
|
r.Route("/google", func(r chi.Router) {
|
|
|
|
r.Post("/callback", server.WrapHandler(s.googleCallback))
|
|
|
|
r.Post("/signup", server.WrapHandler(s.googleSignup))
|
|
|
|
r.With(server.MustAuth).Post("/add-provider", server.WrapHandler(s.googleLink))
|
|
|
|
r.With(server.MustAuth).Post("/remove-provider", server.WrapHandler(s.googleUnlink))
|
|
|
|
})
|
|
|
|
|
2023-03-16 11:43:25 +01:00
|
|
|
r.Route("/mastodon", func(r chi.Router) {
|
2023-03-16 15:50:39 +01:00
|
|
|
r.Post("/callback", server.WrapHandler(s.mastodonCallback))
|
|
|
|
r.Post("/signup", server.WrapHandler(s.mastodonSignup))
|
2023-03-18 15:19:53 +01:00
|
|
|
r.With(server.MustAuth).Post("/add-provider", server.WrapHandler(s.mastodonLink))
|
2023-03-18 16:54:31 +01:00
|
|
|
r.With(server.MustAuth).Post("/remove-provider", server.WrapHandler(s.mastodonUnlink))
|
2022-05-02 17:19:37 +02:00
|
|
|
})
|
2022-11-18 15:27:52 +01:00
|
|
|
|
2023-03-25 03:27:40 +01:00
|
|
|
r.Route("/misskey", func(r chi.Router) {
|
|
|
|
r.Post("/callback", server.WrapHandler(s.misskeyCallback))
|
|
|
|
r.Post("/signup", server.WrapHandler(s.misskeySignup))
|
|
|
|
r.With(server.MustAuth).Post("/add-provider", server.WrapHandler(s.misskeyLink))
|
|
|
|
})
|
|
|
|
|
2022-11-18 15:27:52 +01:00
|
|
|
// invite routes
|
|
|
|
r.With(server.MustAuth).Get("/invites", server.WrapHandler(s.getInvites))
|
|
|
|
r.With(server.MustAuth).Post("/invites", server.WrapHandler(s.createInvite))
|
2023-01-01 00:34:38 +01:00
|
|
|
|
|
|
|
// tokens
|
|
|
|
r.With(server.MustAuth).Get("/tokens", server.WrapHandler(s.getTokens))
|
|
|
|
r.With(server.MustAuth).Post("/tokens", server.WrapHandler(s.createToken))
|
2023-03-30 16:05:10 +02:00
|
|
|
r.With(server.MustAuth).Delete("/tokens", server.WrapHandler(s.deleteToken))
|
2023-03-14 16:16:07 +01:00
|
|
|
|
|
|
|
// cancel user delete
|
|
|
|
// uses a special token, so handled in the function itself
|
|
|
|
r.Get("/cancel-delete", server.WrapHandler(s.cancelDelete))
|
2023-03-20 15:04:32 +01:00
|
|
|
// force user delete
|
|
|
|
// uses a special token (same as above)
|
|
|
|
r.Get("/force-delete", server.WrapHandler(s.forceDelete))
|
2022-05-02 17:19:37 +02:00
|
|
|
})
|
|
|
|
}
|
2022-05-04 16:27:16 +02:00
|
|
|
|
|
|
|
type oauthURLsRequest struct {
|
2022-05-12 16:41:32 +02:00
|
|
|
CallbackDomain string `json:"callback_domain"`
|
2022-05-04 16:27:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type oauthURLsResponse struct {
|
2023-04-18 23:31:57 +02:00
|
|
|
Discord string `json:"discord,omitempty"`
|
|
|
|
Tumblr string `json:"tumblr,omitempty"`
|
|
|
|
Google string `json:"google,omitempty"`
|
2022-05-04 16:27:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) oauthURLs(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
req, err := Decode[oauthURLsRequest](r)
|
|
|
|
if err != nil {
|
2022-05-12 16:41:32 +02:00
|
|
|
log.Error(err)
|
|
|
|
|
2022-05-04 16:27:16 +02:00
|
|
|
return server.APIError{Code: server.ErrBadRequest}
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate CSRF state
|
|
|
|
state, err := s.setCSRFState(r.Context())
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "setting CSRF state")
|
|
|
|
}
|
2023-04-18 23:31:57 +02:00
|
|
|
var resp oauthURLsResponse
|
2022-05-04 16:27:16 +02:00
|
|
|
|
2023-04-18 23:31:57 +02:00
|
|
|
if discordOAuthConfig.ClientID != "" {
|
|
|
|
discordCfg := discordOAuthConfig
|
|
|
|
discordCfg.RedirectURL = req.CallbackDomain + "/auth/login/discord"
|
|
|
|
resp.Discord = discordCfg.AuthCodeURL(state) + "&prompt=none"
|
|
|
|
}
|
|
|
|
if tumblrOAuthConfig.ClientID != "" {
|
|
|
|
tumblrCfg := tumblrOAuthConfig
|
|
|
|
tumblrCfg.RedirectURL = req.CallbackDomain + "/auth/login/tumblr"
|
|
|
|
resp.Tumblr = tumblrCfg.AuthCodeURL(state)
|
|
|
|
}
|
|
|
|
if googleOAuthConfig.ClientID != "" {
|
|
|
|
googleCfg := googleOAuthConfig
|
|
|
|
googleCfg.RedirectURL = req.CallbackDomain + "/auth/login/google"
|
|
|
|
resp.Google = googleCfg.AuthCodeURL(state)
|
|
|
|
}
|
|
|
|
|
|
|
|
render.JSON(w, r, resp)
|
2022-05-04 16:27:16 +02:00
|
|
|
return nil
|
|
|
|
}
|
2022-05-17 22:35:26 +02:00
|
|
|
|
|
|
|
func (s *Server) usernameTaken(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
type Response struct {
|
|
|
|
Valid bool `json:"valid"`
|
|
|
|
Taken bool `json:"taken"`
|
|
|
|
}
|
|
|
|
|
|
|
|
name := r.FormValue("username")
|
|
|
|
if name == "" {
|
|
|
|
render.JSON(w, r, Response{
|
|
|
|
Valid: false,
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
valid, taken, err := s.DB.UsernameTaken(r.Context(), name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
render.JSON(w, r, Response{
|
|
|
|
Valid: valid,
|
|
|
|
Taken: taken,
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|