2015-12-15 22:57:18 -05:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2020-11-14 11:53:43 -05:00
|
|
|
"fmt"
|
2019-12-20 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2021-11-11 02:03:30 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-09 23:41:51 -05:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-23 12:40:30 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2015-12-15 22:57:18 -05:00
|
|
|
)
|
|
|
|
|
2017-11-13 02:02:25 -05:00
|
|
|
// ListEmails list all of the authenticated user's email addresses
|
2016-11-24 02:04:31 -05:00
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Users-Emails#list-email-addresses-for-a-user
|
2016-03-13 18:49:16 -04:00
|
|
|
func ListEmails(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05: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 12:07:12 -05:00
|
|
|
|
2021-11-11 02:03:30 -05:00
|
|
|
emails, err := user_model.GetEmailAddresses(ctx.User.ID)
|
2015-12-15 22:57:18 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetEmailAddresses", err)
|
2015-12-15 22:57:18 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
apiEmails := make([]*api.Email, len(emails))
|
|
|
|
for i := range emails {
|
2016-03-13 23:20:22 -04:00
|
|
|
apiEmails[i] = convert.ToEmail(emails[i])
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, &apiEmails)
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|
|
|
|
|
2017-11-13 02:02:25 -05:00
|
|
|
// AddEmail add an email address
|
2021-01-26 10:36:53 -05:00
|
|
|
func AddEmail(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation POST /user/emails user userAddEmail
|
|
|
|
// ---
|
|
|
|
// summary: Add email addresses
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: options
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateEmailOption"
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateEmailOption"
|
|
|
|
// responses:
|
|
|
|
// '201':
|
|
|
|
// "$ref": "#/responses/EmailList"
|
2019-12-20 12:07:12 -05:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.CreateEmailOption)
|
2015-12-15 22:57:18 -05:00
|
|
|
if len(form.Emails) == 0 {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Email list empty")
|
2015-12-15 22:57:18 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-11 02:03:30 -05:00
|
|
|
emails := make([]*user_model.EmailAddress, len(form.Emails))
|
2015-12-15 22:57:18 -05:00
|
|
|
for i := range form.Emails {
|
2021-11-11 02:03:30 -05:00
|
|
|
emails[i] = &user_model.EmailAddress{
|
2016-07-23 13:08:22 -04:00
|
|
|
UID: ctx.User.ID,
|
2015-12-15 22:57:18 -05:00
|
|
|
Email: form.Emails[i],
|
|
|
|
IsActivated: !setting.Service.RegisterEmailConfirm,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-11 02:03:30 -05: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-03-14 13:39:54 -04:00
|
|
|
} else if user_model.IsErrEmailCharIsNotSupported(err) ||
|
|
|
|
user_model.IsErrEmailInvalid(err) {
|
2021-11-11 02:03:30 -05:00
|
|
|
errMsg := fmt.Sprintf("Email address %s invalid", err.(user_model.ErrEmailInvalid).Email)
|
2020-11-14 11:53:43 -05:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", errMsg)
|
2015-12-15 22:57:18 -05:00
|
|
|
} else {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AddEmailAddresses", err)
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiEmails := make([]*api.Email, len(emails))
|
|
|
|
for i := range emails {
|
2016-03-13 23:20:22 -04:00
|
|
|
apiEmails[i] = convert.ToEmail(emails[i])
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusCreated, &apiEmails)
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 02:04:31 -05:00
|
|
|
// DeleteEmail delete email
|
2021-01-26 10:36:53 -05:00
|
|
|
func DeleteEmail(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05: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 02:12:38 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.DeleteEmailOption)
|
2015-12-15 22:57:18 -05:00
|
|
|
if len(form.Emails) == 0 {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-15 22:57:18 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-11 02:03:30 -05:00
|
|
|
emails := make([]*user_model.EmailAddress, len(form.Emails))
|
2015-12-15 22:57:18 -05:00
|
|
|
for i := range form.Emails {
|
2021-11-11 02:03:30 -05:00
|
|
|
emails[i] = &user_model.EmailAddress{
|
2015-12-15 22:57:18 -05:00
|
|
|
Email: form.Emails[i],
|
2016-12-15 03:49:06 -05:00
|
|
|
UID: ctx.User.ID,
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-11 02:03:30 -05:00
|
|
|
if err := user_model.DeleteEmailAddresses(emails); err != nil {
|
|
|
|
if user_model.IsErrEmailAddressNotExist(err) {
|
2021-04-10 02:12:38 -04:00
|
|
|
ctx.Error(http.StatusNotFound, "DeleteEmailAddresses", err)
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteEmailAddresses", err)
|
2015-12-15 22:57:18 -05:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-15 22:57:18 -05:00
|
|
|
}
|