You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							122 lines
						
					
					
						
							3.1 KiB
						
					
					
				
			
		
		
	
	
							122 lines
						
					
					
						
							3.1 KiB
						
					
					
				| // 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 (
 | |
| 	api "code.gitea.io/sdk/gitea"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/routers/api/v1/convert"
 | |
| )
 | |
| 
 | |
| // ListEmails list all of the authenticated user's email addresses
 | |
| // see https://github.com/gogits/go-gogs-client/wiki/Users-Emails#list-email-addresses-for-a-user
 | |
| func ListEmails(ctx *context.APIContext) {
 | |
| 	// swagger:operation GET /user/emails user userListEmails
 | |
| 	// ---
 | |
| 	// summary: List the authenticated user's email addresses
 | |
| 	// produces:
 | |
| 	// - application/json
 | |
| 	// responses:
 | |
| 	//   "200":
 | |
| 	//     "$ref": "#/responses/EmailList"
 | |
| 	emails, err := models.GetEmailAddresses(ctx.User.ID)
 | |
| 	if err != nil {
 | |
| 		ctx.Error(500, "GetEmailAddresses", err)
 | |
| 		return
 | |
| 	}
 | |
| 	apiEmails := make([]*api.Email, len(emails))
 | |
| 	for i := range emails {
 | |
| 		apiEmails[i] = convert.ToEmail(emails[i])
 | |
| 	}
 | |
| 	ctx.JSON(200, &apiEmails)
 | |
| }
 | |
| 
 | |
| // AddEmail add an email address
 | |
| func AddEmail(ctx *context.APIContext, form api.CreateEmailOption) {
 | |
| 	// 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"
 | |
| 	if len(form.Emails) == 0 {
 | |
| 		ctx.Status(422)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	emails := make([]*models.EmailAddress, len(form.Emails))
 | |
| 	for i := range form.Emails {
 | |
| 		emails[i] = &models.EmailAddress{
 | |
| 			UID:         ctx.User.ID,
 | |
| 			Email:       form.Emails[i],
 | |
| 			IsActivated: !setting.Service.RegisterEmailConfirm,
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if err := models.AddEmailAddresses(emails); err != nil {
 | |
| 		if models.IsErrEmailAlreadyUsed(err) {
 | |
| 			ctx.Error(422, "", "Email address has been used: "+err.(models.ErrEmailAlreadyUsed).Email)
 | |
| 		} else {
 | |
| 			ctx.Error(500, "AddEmailAddresses", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	apiEmails := make([]*api.Email, len(emails))
 | |
| 	for i := range emails {
 | |
| 		apiEmails[i] = convert.ToEmail(emails[i])
 | |
| 	}
 | |
| 	ctx.JSON(201, &apiEmails)
 | |
| }
 | |
| 
 | |
| // DeleteEmail delete email
 | |
| func DeleteEmail(ctx *context.APIContext, form api.DeleteEmailOption) {
 | |
| 	// 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"
 | |
| 	if len(form.Emails) == 0 {
 | |
| 		ctx.Status(204)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	emails := make([]*models.EmailAddress, len(form.Emails))
 | |
| 	for i := range form.Emails {
 | |
| 		emails[i] = &models.EmailAddress{
 | |
| 			Email: form.Emails[i],
 | |
| 			UID:   ctx.User.ID,
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if err := models.DeleteEmailAddresses(emails); err != nil {
 | |
| 		ctx.Error(500, "DeleteEmailAddresses", err)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Status(204)
 | |
| }
 | |
| 
 |