2015-12-16 03:57:18 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-12-16 03:57:18 +00:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2020-11-14 16:53:43 +00:00
|
|
|
"fmt"
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
|
|
|
|
2021-11-11 07:03:30 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-23 16:40:30 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2022-12-29 02:57:15 +00:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2015-12-16 03:57:18 +00:00
|
|
|
)
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// ListEmails list all of the authenticated user's email addresses
|
2016-11-24 07:04:31 +00:00
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Users-Emails#list-email-addresses-for-a-user
|
2016-03-13 22:49:16 +00:00
|
|
|
func ListEmails(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 17:07:12 +00:00
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
emails, err := user_model.GetEmailAddresses(ctx.Doer.ID)
|
2015-12-16 03:57:18 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetEmailAddresses", err)
|
2015-12-16 03:57:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
apiEmails := make([]*api.Email, len(emails))
|
|
|
|
for i := range emails {
|
2016-03-14 03:20:22 +00:00
|
|
|
apiEmails[i] = convert.ToEmail(emails[i])
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &apiEmails)
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// AddEmail add an email address
|
2021-01-26 15:36:53 +00:00
|
|
|
func AddEmail(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 17:07:12 +00:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.CreateEmailOption)
|
2015-12-16 03:57:18 +00:00
|
|
|
if len(form.Emails) == 0 {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Email list empty")
|
2015-12-16 03:57:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-11 07:03:30 +00:00
|
|
|
emails := make([]*user_model.EmailAddress, len(form.Emails))
|
2015-12-16 03:57:18 +00:00
|
|
|
for i := range form.Emails {
|
2021-11-11 07:03:30 +00:00
|
|
|
emails[i] = &user_model.EmailAddress{
|
2022-03-22 07:03:22 +00:00
|
|
|
UID: ctx.Doer.ID,
|
2015-12-16 03:57:18 +00:00
|
|
|
Email: form.Emails[i],
|
|
|
|
IsActivated: !setting.Service.RegisterEmailConfirm,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-11 07:03:30 +00:00
|
|
|
if err := user_model.AddEmailAddresses(emails); err != nil {
|
|
|
|
if user_model.IsErrEmailAlreadyUsed(err) {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Email address has been used: "+err.(user_model.ErrEmailAlreadyUsed).Email)
|
2022-04-20 21:39:30 +00: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 16:53:43 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", errMsg)
|
2015-12-16 03:57:18 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AddEmailAddresses", err)
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiEmails := make([]*api.Email, len(emails))
|
|
|
|
for i := range emails {
|
2016-03-14 03:20:22 +00:00
|
|
|
apiEmails[i] = convert.ToEmail(emails[i])
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusCreated, &apiEmails)
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// DeleteEmail delete email
|
2021-01-26 15:36:53 +00:00
|
|
|
func DeleteEmail(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 06:12:38 +00:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.DeleteEmailOption)
|
2015-12-16 03:57:18 +00:00
|
|
|
if len(form.Emails) == 0 {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-16 03:57:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-11 07:03:30 +00:00
|
|
|
emails := make([]*user_model.EmailAddress, len(form.Emails))
|
2015-12-16 03:57:18 +00:00
|
|
|
for i := range form.Emails {
|
2021-11-11 07:03:30 +00:00
|
|
|
emails[i] = &user_model.EmailAddress{
|
2015-12-16 03:57:18 +00:00
|
|
|
Email: form.Emails[i],
|
2022-03-22 07:03:22 +00:00
|
|
|
UID: ctx.Doer.ID,
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-11 07:03:30 +00:00
|
|
|
if err := user_model.DeleteEmailAddresses(emails); err != nil {
|
|
|
|
if user_model.IsErrEmailAddressNotExist(err) {
|
2021-04-10 06:12:38 +00:00
|
|
|
ctx.Error(http.StatusNotFound, "DeleteEmailAddresses", err)
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteEmailAddresses", err)
|
2015-12-16 03:57:18 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-16 03:57:18 +00:00
|
|
|
}
|