2015-12-16 04:57:18 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-12-16 04:57:18 +01:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2020-11-14 17:53:43 +01:00
|
|
|
"fmt"
|
2019-12-20 18:07:12 +01:00
|
|
|
"net/http"
|
|
|
|
|
2021-11-11 08:03:30 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-08-23 18:40:30 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 16:36:53 +01:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-12-29 03:57:15 +01:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2024-02-04 14:29:09 +01:00
|
|
|
user_service "code.gitea.io/gitea/services/user"
|
2015-12-16 04:57:18 +01:00
|
|
|
)
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// ListEmails list all of the authenticated user's email addresses
|
2016-11-24 08:04:31 +01:00
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Users-Emails#list-email-addresses-for-a-user
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListEmails(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /user/emails user userListEmails
|
|
|
|
// ---
|
|
|
|
// summary: List the authenticated user's email addresses
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/EmailList"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2023-09-14 19:09:32 +02:00
|
|
|
emails, err := user_model.GetEmailAddresses(ctx, ctx.Doer.ID)
|
2015-12-16 04:57:18 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetEmailAddresses", err)
|
2015-12-16 04:57:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
apiEmails := make([]*api.Email, len(emails))
|
|
|
|
for i := range emails {
|
2016-03-14 04:20:22 +01:00
|
|
|
apiEmails[i] = convert.ToEmail(emails[i])
|
2015-12-16 04:57:18 +01:00
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.JSON(http.StatusOK, &apiEmails)
|
2015-12-16 04:57:18 +01:00
|
|
|
}
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// AddEmail add an email address
|
2021-01-26 16:36:53 +01:00
|
|
|
func AddEmail(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /user/emails user userAddEmail
|
|
|
|
// ---
|
|
|
|
// summary: Add email addresses
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateEmailOption"
|
|
|
|
// responses:
|
|
|
|
// '201':
|
|
|
|
// "$ref": "#/responses/EmailList"
|
2019-12-20 18:07:12 +01:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2024-02-04 14:29:09 +01:00
|
|
|
|
2021-01-26 16:36:53 +01:00
|
|
|
form := web.GetForm(ctx).(*api.CreateEmailOption)
|
2015-12-16 04:57:18 +01:00
|
|
|
if len(form.Emails) == 0 {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Email list empty")
|
2015-12-16 04:57:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 14:29:09 +01:00
|
|
|
if err := user_service.AddEmailAddresses(ctx, ctx.Doer, form.Emails); err != nil {
|
2021-11-11 08:03:30 +01:00
|
|
|
if user_model.IsErrEmailAlreadyUsed(err) {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Email address has been used: "+err.(user_model.ErrEmailAlreadyUsed).Email)
|
2022-04-20 23:39:30 +02:00
|
|
|
} else if user_model.IsErrEmailCharIsNotSupported(err) || user_model.IsErrEmailInvalid(err) {
|
|
|
|
email := ""
|
|
|
|
if typedError, ok := err.(user_model.ErrEmailInvalid); ok {
|
|
|
|
email = typedError.Email
|
|
|
|
}
|
|
|
|
if typedError, ok := err.(user_model.ErrEmailCharIsNotSupported); ok {
|
|
|
|
email = typedError.Email
|
|
|
|
}
|
|
|
|
|
|
|
|
errMsg := fmt.Sprintf("Email address %q invalid", email)
|
2020-11-14 17:53:43 +01:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", errMsg)
|
2015-12-16 04:57:18 +01:00
|
|
|
} else {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AddEmailAddresses", err)
|
2015-12-16 04:57:18 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 14:29:09 +01:00
|
|
|
emails, err := user_model.GetEmailAddresses(ctx, ctx.Doer.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetEmailAddresses", err)
|
|
|
|
return
|
2015-12-16 04:57:18 +01:00
|
|
|
}
|
2024-02-04 14:29:09 +01:00
|
|
|
|
|
|
|
apiEmails := make([]*api.Email, 0, len(emails))
|
|
|
|
for _, email := range emails {
|
|
|
|
apiEmails = append(apiEmails, convert.ToEmail(email))
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusCreated, apiEmails)
|
2015-12-16 04:57:18 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// DeleteEmail delete email
|
2021-01-26 16:36:53 +01:00
|
|
|
func DeleteEmail(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation DELETE /user/emails user userDeleteEmail
|
|
|
|
// ---
|
|
|
|
// summary: Delete email addresses
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/DeleteEmailOption"
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2021-04-10 08:12:38 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2024-02-04 14:29:09 +01:00
|
|
|
|
2021-01-26 16:36:53 +01:00
|
|
|
form := web.GetForm(ctx).(*api.DeleteEmailOption)
|
2015-12-16 04:57:18 +01:00
|
|
|
if len(form.Emails) == 0 {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-16 04:57:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 14:29:09 +01:00
|
|
|
if err := user_service.DeleteEmailAddresses(ctx, ctx.Doer, form.Emails); err != nil {
|
2021-11-11 08:03:30 +01:00
|
|
|
if user_model.IsErrEmailAddressNotExist(err) {
|
2021-04-10 08:12:38 +02:00
|
|
|
ctx.Error(http.StatusNotFound, "DeleteEmailAddresses", err)
|
2024-02-04 14:29:09 +01:00
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteEmailAddresses", err)
|
2021-04-10 08:12:38 +02:00
|
|
|
}
|
2015-12-16 04:57:18 +01:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-16 04:57:18 +01:00
|
|
|
}
|