mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-27 20:41:01 +00:00 
			
		
		
		
	Since `modules/context` has to depend on `models` and many other packages, it should be moved from `modules/context` to `services/context` according to design principles. There is no logic code change on this PR, only move packages. - Move `code.gitea.io/gitea/modules/context` to `code.gitea.io/gitea/services/context` - Move `code.gitea.io/gitea/modules/contexttest` to `code.gitea.io/gitea/services/contexttest` because of depending on context - Move `code.gitea.io/gitea/modules/upload` to `code.gitea.io/gitea/services/context/upload` because of depending on context (cherry picked from commit 29f149bd9f517225a3c9f1ca3fb0a7b5325af696) Conflicts: routers/api/packages/alpine/alpine.go routers/api/v1/repo/issue_reaction.go routers/install/install.go routers/web/admin/config.go routers/web/passkey.go routers/web/repo/search.go routers/web/repo/setting/default_branch.go routers/web/user/home.go routers/web/user/profile.go tests/integration/editor_test.go tests/integration/integration_test.go tests/integration/mirror_push_test.go trivial context conflicts also modified all other occurrences in Forgejo specific files
		
			
				
	
	
		
			132 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2015 The Gogs Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package user
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 
 | |
| 	user_model "code.gitea.io/gitea/models/user"
 | |
| 	api "code.gitea.io/gitea/modules/structs"
 | |
| 	"code.gitea.io/gitea/modules/web"
 | |
| 	"code.gitea.io/gitea/services/context"
 | |
| 	"code.gitea.io/gitea/services/convert"
 | |
| 	user_service "code.gitea.io/gitea/services/user"
 | |
| )
 | |
| 
 | |
| // 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 := user_model.GetEmailAddresses(ctx, ctx.Doer.ID)
 | |
| 	if err != nil {
 | |
| 		ctx.Error(http.StatusInternalServerError, "GetEmailAddresses", err)
 | |
| 		return
 | |
| 	}
 | |
| 	apiEmails := make([]*api.Email, len(emails))
 | |
| 	for i := range emails {
 | |
| 		apiEmails[i] = convert.ToEmail(emails[i])
 | |
| 	}
 | |
| 	ctx.JSON(http.StatusOK, &apiEmails)
 | |
| }
 | |
| 
 | |
| // AddEmail add an email address
 | |
| func AddEmail(ctx *context.APIContext) {
 | |
| 	// 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"
 | |
| 	//   "422":
 | |
| 	//     "$ref": "#/responses/validationError"
 | |
| 
 | |
| 	form := web.GetForm(ctx).(*api.CreateEmailOption)
 | |
| 	if len(form.Emails) == 0 {
 | |
| 		ctx.Error(http.StatusUnprocessableEntity, "", "Email list empty")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := user_service.AddEmailAddresses(ctx, ctx.Doer, form.Emails); err != nil {
 | |
| 		if user_model.IsErrEmailAlreadyUsed(err) {
 | |
| 			ctx.Error(http.StatusUnprocessableEntity, "", "Email address has been used: "+err.(user_model.ErrEmailAlreadyUsed).Email)
 | |
| 		} 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)
 | |
| 			ctx.Error(http.StatusUnprocessableEntity, "", errMsg)
 | |
| 		} else {
 | |
| 			ctx.Error(http.StatusInternalServerError, "AddEmailAddresses", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	emails, err := user_model.GetEmailAddresses(ctx, ctx.Doer.ID)
 | |
| 	if err != nil {
 | |
| 		ctx.Error(http.StatusInternalServerError, "GetEmailAddresses", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	apiEmails := make([]*api.Email, 0, len(emails))
 | |
| 	for _, email := range emails {
 | |
| 		apiEmails = append(apiEmails, convert.ToEmail(email))
 | |
| 	}
 | |
| 	ctx.JSON(http.StatusCreated, apiEmails)
 | |
| }
 | |
| 
 | |
| // DeleteEmail delete email
 | |
| func DeleteEmail(ctx *context.APIContext) {
 | |
| 	// 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"
 | |
| 	//   "404":
 | |
| 	//     "$ref": "#/responses/notFound"
 | |
| 
 | |
| 	form := web.GetForm(ctx).(*api.DeleteEmailOption)
 | |
| 	if len(form.Emails) == 0 {
 | |
| 		ctx.Status(http.StatusNoContent)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := user_service.DeleteEmailAddresses(ctx, ctx.Doer, form.Emails); err != nil {
 | |
| 		if user_model.IsErrEmailAddressNotExist(err) {
 | |
| 			ctx.Error(http.StatusNotFound, "DeleteEmailAddresses", err)
 | |
| 		} else {
 | |
| 			ctx.Error(http.StatusInternalServerError, "DeleteEmailAddresses", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.Status(http.StatusNoContent)
 | |
| }
 |