mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	* Added package store settings. * Added models. * Added generic package registry. * Added tests. * Added NuGet package registry. * Moved service index to api file. * Added NPM package registry. * Added Maven package registry. * Added PyPI package registry. * Summary is deprecated. * Changed npm name. * Sanitize project url. * Allow only scoped packages. * Added user interface. * Changed method name. * Added missing migration file. * Set page info. * Added documentation. * Added documentation links. * Fixed wrong error message. * Lint template files. * Fixed merge errors. * Fixed unit test storage path. * Switch to json module. * Added suggestions. * Added package webhook. * Add package api. * Fixed swagger file. * Fixed enum and comments. * Fixed NuGet pagination. * Print test names. * Added api tests. * Fixed access level. * Fix User unmarshal. * Added RubyGems package registry. * Fix lint. * Implemented io.Writer. * Added support for sha256/sha512 checksum files. * Improved maven-metadata.xml support. * Added support for symbol package uploads. * Added tests. * Added overview docs. * Added npm dependencies and keywords. * Added no-packages information. * Display file size. * Display asset count. * Fixed filter alignment. * Added package icons. * Formatted instructions. * Allow anonymous package downloads. * Fixed comments. * Fixed postgres test. * Moved file. * Moved models to models/packages. * Use correct error response format per client. * Use simpler search form. * Fixed IsProd. * Restructured data model. * Prevent empty filename. * Fix swagger. * Implemented user/org registry. * Implemented UI. * Use GetUserByIDCtx. * Use table for dependencies. * make svg * Added support for unscoped npm packages. * Add support for npm dist tags. * Added tests for npm tags. * Unlink packages if repository gets deleted. * Prevent user/org delete if a packages exist. * Use package unlink in repository service. * Added support for composer packages. * Restructured package docs. * Added missing tests. * Fixed generic content page. * Fixed docs. * Fixed swagger. * Added missing type. * Fixed ambiguous column. * Organize content store by sha256 hash. * Added admin package management. * Added support for sorting. * Add support for multiple identical versions/files. * Added missing repository unlink. * Added file properties. * make fmt * lint * Added Conan package registry. * Updated docs. * Unify package names. * Added swagger enum. * Use longer TEXT column type. * Removed version composite key. * Merged package and container registry. * Removed index. * Use dedicated package router. * Moved files to new location. * Updated docs. * Fixed JOIN order. * Fixed GROUP BY statement. * Fixed GROUP BY #2. * Added symbol server support. * Added more tests. * Set NOT NULL. * Added setting to disable package registries. * Moved auth into service. * refactor * Use ctx everywhere. * Added package cleanup task. * Changed packages path. * Added container registry. * Refactoring * Updated comparison. * Fix swagger. * Fixed table order. * Use token auth for npm routes. * Enabled ReverseProxy auth. * Added packages link for orgs. * Fixed anonymous org access. * Enable copy button for setup instructions. * Merge error * Added suggestions. * Fixed merge. * Handle "generic". * Added link for TODO. * Added suggestions. * Changed temporary buffer filename. * Added suggestions. * Apply suggestions from code review Co-authored-by: Thomas Boerger <thomas@webhippie.de> * Update docs/content/doc/packages/nuget.en-us.md Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Thomas Boerger <thomas@webhippie.de>
		
			
				
	
	
		
			294 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			294 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 The Gogs Authors. All rights reserved.
 | |
| // Copyright 2018 The Gitea 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 setting
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"net/http"
 | |
| 	"time"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	user_model "code.gitea.io/gitea/models/user"
 | |
| 	"code.gitea.io/gitea/modules/base"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/log"
 | |
| 	"code.gitea.io/gitea/modules/password"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/modules/timeutil"
 | |
| 	"code.gitea.io/gitea/modules/web"
 | |
| 	"code.gitea.io/gitea/services/auth"
 | |
| 	"code.gitea.io/gitea/services/forms"
 | |
| 	"code.gitea.io/gitea/services/mailer"
 | |
| 	"code.gitea.io/gitea/services/user"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	tplSettingsAccount base.TplName = "user/settings/account"
 | |
| )
 | |
| 
 | |
| // Account renders change user's password, user's email and user suicide page
 | |
| func Account(ctx *context.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("settings")
 | |
| 	ctx.Data["PageIsSettingsAccount"] = true
 | |
| 	ctx.Data["Email"] = ctx.Doer.Email
 | |
| 
 | |
| 	loadAccountData(ctx)
 | |
| 
 | |
| 	ctx.HTML(http.StatusOK, tplSettingsAccount)
 | |
| }
 | |
| 
 | |
| // AccountPost response for change user's password
 | |
| func AccountPost(ctx *context.Context) {
 | |
| 	form := web.GetForm(ctx).(*forms.ChangePasswordForm)
 | |
| 	ctx.Data["Title"] = ctx.Tr("settings")
 | |
| 	ctx.Data["PageIsSettingsAccount"] = true
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		loadAccountData(ctx)
 | |
| 
 | |
| 		ctx.HTML(http.StatusOK, tplSettingsAccount)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if len(form.Password) < setting.MinPasswordLength {
 | |
| 		ctx.Flash.Error(ctx.Tr("auth.password_too_short", setting.MinPasswordLength))
 | |
| 	} else if ctx.Doer.IsPasswordSet() && !ctx.Doer.ValidatePassword(form.OldPassword) {
 | |
| 		ctx.Flash.Error(ctx.Tr("settings.password_incorrect"))
 | |
| 	} else if form.Password != form.Retype {
 | |
| 		ctx.Flash.Error(ctx.Tr("form.password_not_match"))
 | |
| 	} else if !password.IsComplexEnough(form.Password) {
 | |
| 		ctx.Flash.Error(password.BuildComplexityError(ctx))
 | |
| 	} else if pwned, err := password.IsPwned(ctx, form.Password); pwned || err != nil {
 | |
| 		errMsg := ctx.Tr("auth.password_pwned")
 | |
| 		if err != nil {
 | |
| 			log.Error(err.Error())
 | |
| 			errMsg = ctx.Tr("auth.password_pwned_err")
 | |
| 		}
 | |
| 		ctx.Flash.Error(errMsg)
 | |
| 	} else {
 | |
| 		var err error
 | |
| 		if err = ctx.Doer.SetPassword(form.Password); err != nil {
 | |
| 			ctx.ServerError("UpdateUser", err)
 | |
| 			return
 | |
| 		}
 | |
| 		if err := user_model.UpdateUserCols(ctx, ctx.Doer, "salt", "passwd_hash_algo", "passwd"); err != nil {
 | |
| 			ctx.ServerError("UpdateUser", err)
 | |
| 			return
 | |
| 		}
 | |
| 		log.Trace("User password updated: %s", ctx.Doer.Name)
 | |
| 		ctx.Flash.Success(ctx.Tr("settings.change_password_success"))
 | |
| 	}
 | |
| 
 | |
| 	ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| }
 | |
| 
 | |
| // EmailPost response for change user's email
 | |
| func EmailPost(ctx *context.Context) {
 | |
| 	form := web.GetForm(ctx).(*forms.AddEmailForm)
 | |
| 	ctx.Data["Title"] = ctx.Tr("settings")
 | |
| 	ctx.Data["PageIsSettingsAccount"] = true
 | |
| 
 | |
| 	// Make emailaddress primary.
 | |
| 	if ctx.FormString("_method") == "PRIMARY" {
 | |
| 		if err := user_model.MakeEmailPrimary(&user_model.EmailAddress{ID: ctx.FormInt64("id")}); err != nil {
 | |
| 			ctx.ServerError("MakeEmailPrimary", err)
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		log.Trace("Email made primary: %s", ctx.Doer.Name)
 | |
| 		ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 		return
 | |
| 	}
 | |
| 	// Send activation Email
 | |
| 	if ctx.FormString("_method") == "SENDACTIVATION" {
 | |
| 		var address string
 | |
| 		if ctx.Cache.IsExist("MailResendLimit_" + ctx.Doer.LowerName) {
 | |
| 			log.Error("Send activation: activation still pending")
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		id := ctx.FormInt64("id")
 | |
| 		email, err := user_model.GetEmailAddressByID(ctx.Doer.ID, id)
 | |
| 		if err != nil {
 | |
| 			log.Error("GetEmailAddressByID(%d,%d) error: %v", ctx.Doer.ID, id, err)
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 			return
 | |
| 		}
 | |
| 		if email == nil {
 | |
| 			log.Warn("Send activation failed: EmailAddress[%d] not found for user: %-v", id, ctx.Doer)
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 			return
 | |
| 		}
 | |
| 		if email.IsActivated {
 | |
| 			log.Debug("Send activation failed: email %s is already activated for user: %-v", email.Email, ctx.Doer)
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 			return
 | |
| 		}
 | |
| 		if email.IsPrimary {
 | |
| 			if ctx.Doer.IsActive && !setting.Service.RegisterEmailConfirm {
 | |
| 				log.Debug("Send activation failed: email %s is already activated for user: %-v", email.Email, ctx.Doer)
 | |
| 				ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 				return
 | |
| 			}
 | |
| 			// Only fired when the primary email is inactive (Wrong state)
 | |
| 			mailer.SendActivateAccountMail(ctx.Locale, ctx.Doer)
 | |
| 		} else {
 | |
| 			mailer.SendActivateEmailMail(ctx.Doer, email)
 | |
| 		}
 | |
| 		address = email.Email
 | |
| 
 | |
| 		if err := ctx.Cache.Put("MailResendLimit_"+ctx.Doer.LowerName, ctx.Doer.LowerName, 180); err != nil {
 | |
| 			log.Error("Set cache(MailResendLimit) fail: %v", err)
 | |
| 		}
 | |
| 		ctx.Flash.Info(ctx.Tr("settings.add_email_confirmation_sent", address, timeutil.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale.Language())))
 | |
| 		ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 		return
 | |
| 	}
 | |
| 	// Set Email Notification Preference
 | |
| 	if ctx.FormString("_method") == "NOTIFICATION" {
 | |
| 		preference := ctx.FormString("preference")
 | |
| 		if !(preference == user_model.EmailNotificationsEnabled ||
 | |
| 			preference == user_model.EmailNotificationsOnMention ||
 | |
| 			preference == user_model.EmailNotificationsDisabled) {
 | |
| 			log.Error("Email notifications preference change returned unrecognized option %s: %s", preference, ctx.Doer.Name)
 | |
| 			ctx.ServerError("SetEmailPreference", errors.New("option unrecognized"))
 | |
| 			return
 | |
| 		}
 | |
| 		if err := user_model.SetEmailNotifications(ctx.Doer, preference); err != nil {
 | |
| 			log.Error("Set Email Notifications failed: %v", err)
 | |
| 			ctx.ServerError("SetEmailNotifications", err)
 | |
| 			return
 | |
| 		}
 | |
| 		log.Trace("Email notifications preference made %s: %s", preference, ctx.Doer.Name)
 | |
| 		ctx.Flash.Success(ctx.Tr("settings.email_preference_set_success"))
 | |
| 		ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if ctx.HasError() {
 | |
| 		loadAccountData(ctx)
 | |
| 
 | |
| 		ctx.HTML(http.StatusOK, tplSettingsAccount)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	email := &user_model.EmailAddress{
 | |
| 		UID:         ctx.Doer.ID,
 | |
| 		Email:       form.Email,
 | |
| 		IsActivated: !setting.Service.RegisterEmailConfirm,
 | |
| 	}
 | |
| 	if err := user_model.AddEmailAddress(email); err != nil {
 | |
| 		if user_model.IsErrEmailAlreadyUsed(err) {
 | |
| 			loadAccountData(ctx)
 | |
| 
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.email_been_used"), tplSettingsAccount, &form)
 | |
| 			return
 | |
| 		} else if user_model.IsErrEmailCharIsNotSupported(err) ||
 | |
| 			user_model.IsErrEmailInvalid(err) {
 | |
| 			loadAccountData(ctx)
 | |
| 
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.email_invalid"), tplSettingsAccount, &form)
 | |
| 			return
 | |
| 		}
 | |
| 		ctx.ServerError("AddEmailAddress", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	// Send confirmation email
 | |
| 	if setting.Service.RegisterEmailConfirm {
 | |
| 		mailer.SendActivateEmailMail(ctx.Doer, email)
 | |
| 		if err := ctx.Cache.Put("MailResendLimit_"+ctx.Doer.LowerName, ctx.Doer.LowerName, 180); err != nil {
 | |
| 			log.Error("Set cache(MailResendLimit) fail: %v", err)
 | |
| 		}
 | |
| 		ctx.Flash.Info(ctx.Tr("settings.add_email_confirmation_sent", email.Email, timeutil.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale.Language())))
 | |
| 	} else {
 | |
| 		ctx.Flash.Success(ctx.Tr("settings.add_email_success"))
 | |
| 	}
 | |
| 
 | |
| 	log.Trace("Email address added: %s", email.Email)
 | |
| 	ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| }
 | |
| 
 | |
| // DeleteEmail response for delete user's email
 | |
| func DeleteEmail(ctx *context.Context) {
 | |
| 	if err := user_model.DeleteEmailAddress(&user_model.EmailAddress{ID: ctx.FormInt64("id"), UID: ctx.Doer.ID}); err != nil {
 | |
| 		ctx.ServerError("DeleteEmail", err)
 | |
| 		return
 | |
| 	}
 | |
| 	log.Trace("Email address deleted: %s", ctx.Doer.Name)
 | |
| 
 | |
| 	ctx.Flash.Success(ctx.Tr("settings.email_deletion_success"))
 | |
| 	ctx.JSON(http.StatusOK, map[string]interface{}{
 | |
| 		"redirect": setting.AppSubURL + "/user/settings/account",
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // DeleteAccount render user suicide page and response for delete user himself
 | |
| func DeleteAccount(ctx *context.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("settings")
 | |
| 	ctx.Data["PageIsSettingsAccount"] = true
 | |
| 
 | |
| 	if _, _, err := auth.UserSignIn(ctx.Doer.Name, ctx.FormString("password")); err != nil {
 | |
| 		if user_model.IsErrUserNotExist(err) {
 | |
| 			loadAccountData(ctx)
 | |
| 
 | |
| 			ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_password"), tplSettingsAccount, nil)
 | |
| 		} else {
 | |
| 			ctx.ServerError("UserSignIn", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := user.DeleteUser(ctx.Doer); err != nil {
 | |
| 		switch {
 | |
| 		case models.IsErrUserOwnRepos(err):
 | |
| 			ctx.Flash.Error(ctx.Tr("form.still_own_repo"))
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 		case models.IsErrUserHasOrgs(err):
 | |
| 			ctx.Flash.Error(ctx.Tr("form.still_has_org"))
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 		case models.IsErrUserOwnPackages(err):
 | |
| 			ctx.Flash.Error(ctx.Tr("form.still_own_packages"))
 | |
| 			ctx.Redirect(setting.AppSubURL + "/user/settings/account")
 | |
| 		default:
 | |
| 			ctx.ServerError("DeleteUser", err)
 | |
| 		}
 | |
| 	} else {
 | |
| 		log.Trace("Account deleted: %s", ctx.Doer.Name)
 | |
| 		ctx.Redirect(setting.AppSubURL + "/")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func loadAccountData(ctx *context.Context) {
 | |
| 	emlist, err := user_model.GetEmailAddresses(ctx.Doer.ID)
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("GetEmailAddresses", err)
 | |
| 		return
 | |
| 	}
 | |
| 	type UserEmail struct {
 | |
| 		user_model.EmailAddress
 | |
| 		CanBePrimary bool
 | |
| 	}
 | |
| 	pendingActivation := ctx.Cache.IsExist("MailResendLimit_" + ctx.Doer.LowerName)
 | |
| 	emails := make([]*UserEmail, len(emlist))
 | |
| 	for i, em := range emlist {
 | |
| 		var email UserEmail
 | |
| 		email.EmailAddress = *em
 | |
| 		email.CanBePrimary = em.IsActivated
 | |
| 		emails[i] = &email
 | |
| 	}
 | |
| 	ctx.Data["Emails"] = emails
 | |
| 	ctx.Data["EmailNotificationsPreference"] = ctx.Doer.EmailNotifications()
 | |
| 	ctx.Data["ActivationsPending"] = pendingActivation
 | |
| 	ctx.Data["CanAddEmails"] = !pendingActivation || !setting.Service.RegisterEmailConfirm
 | |
| 
 | |
| 	if setting.Service.UserDeleteWithCommentsMaxTime != 0 {
 | |
| 		ctx.Data["UserDeleteWithCommentsMaxTime"] = setting.Service.UserDeleteWithCommentsMaxTime.String()
 | |
| 		ctx.Data["UserDeleteWithComments"] = ctx.Doer.CreatedUnix.AsTime().Add(setting.Service.UserDeleteWithCommentsMaxTime).After(time.Now())
 | |
| 	}
 | |
| }
 |