From 6e5fd5c584fe5f5f4324667de4e8e274cfb3b4aa Mon Sep 17 00:00:00 2001 From: Kyle D Date: Wed, 7 Jul 2021 10:22:32 -0400 Subject: [PATCH] Hide mirror passwords on repo settings page (#16022) (#16355) --- options/locale/locale_en-US.ini | 3 +++ routers/repo/setting.go | 6 ++++++ templates/repo/settings/options.tmpl | 5 +++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index a2320a20ed..8a17b40083 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -719,6 +719,9 @@ mirror_address_desc = Put any required credentials in the Clone Authorization se mirror_address_url_invalid = The provided url is invalid. You must escape all components of the url correctly. mirror_address_protocol_invalid = The provided url is invalid. Only http(s):// or git:// locations can be mirrored from. mirror_last_synced = Last Synchronized +mirror_password_placeholder = (Unchanged) +mirror_password_blank_placeholder = (Unset) +mirror_password_help = Change the username to erase a stored password. watchers = Watchers stargazers = Stargazers forks = Forks diff --git a/routers/repo/setting.go b/routers/repo/setting.go index effa7483cd..e46c883b7b 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -164,6 +164,12 @@ func SettingsPost(ctx *context.Context) { } } + oldUsername := mirror_service.Username(ctx.Repo.Mirror) + oldPassword := mirror_service.Password(ctx.Repo.Mirror) + if form.MirrorPassword == "" && form.MirrorUsername == oldUsername { + form.MirrorPassword = oldPassword + } + address, err := auth.ParseRemoteAddr(form.MirrorAddress, form.MirrorUsername, form.MirrorPassword) if err == nil { err = migrations.IsMigrateURLAllowed(address, ctx.User) diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index f944eb8d8d..2a69c63de3 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -107,8 +107,9 @@
- -
+ + +

{{.i18n.Tr "repo.mirror_password_help"}}