mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:06:18 +01:00 
			
		
		
		
	Add Allow-/Block-List for Migrate & Mirrors (#13610)
* add black list and white list support for migrating repositories * fix fmt * fix lint * fix vendor * fix modules.txt * clean diff * specify log message * use blocklist/allowlist * allways use lowercase to match url * Apply allow/block * Settings: use existing "migrations" section * convert domains lower case * dont store unused value * Block private addresses for migration by default * fix lint * use proposed-upstream func to detect private IP addr * a nit * add own error for blocked migration, add tests, imprufe api * fix test * fix-if-localhost-is-ipv4 * rename error & error message * rename setting options * Apply suggestions from code review Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
		| @@ -309,6 +309,8 @@ func TestAPIRepoMigrate(t *testing.T) { | ||||
| 		{ctxUserID: 2, userID: 1, cloneURL: "https://github.com/go-gitea/test_repo.git", repoName: "git-bad", expectedStatus: http.StatusForbidden}, | ||||
| 		{ctxUserID: 2, userID: 3, cloneURL: "https://github.com/go-gitea/test_repo.git", repoName: "git-org", expectedStatus: http.StatusCreated}, | ||||
| 		{ctxUserID: 2, userID: 6, cloneURL: "https://github.com/go-gitea/test_repo.git", repoName: "git-bad-org", expectedStatus: http.StatusForbidden}, | ||||
| 		{ctxUserID: 2, userID: 3, cloneURL: "https://localhost:3000/user/test_repo.git", repoName: "local-ip", expectedStatus: http.StatusUnprocessableEntity}, | ||||
| 		{ctxUserID: 2, userID: 3, cloneURL: "https://10.0.0.1/user/test_repo.git", repoName: "private-ip", expectedStatus: http.StatusUnprocessableEntity}, | ||||
| 	} | ||||
|  | ||||
| 	defer prepareTestEnv(t)() | ||||
| @@ -325,8 +327,16 @@ func TestAPIRepoMigrate(t *testing.T) { | ||||
| 		if resp.Code == http.StatusUnprocessableEntity { | ||||
| 			respJSON := map[string]string{} | ||||
| 			DecodeJSON(t, resp, &respJSON) | ||||
| 			if assert.Equal(t, "Remote visit addressed rate limitation.", respJSON["message"]) { | ||||
| 			switch respJSON["message"] { | ||||
| 			case "Remote visit addressed rate limitation.": | ||||
| 				t.Log("test hit github rate limitation") | ||||
| 			case "migrate from '10.0.0.1' is not allowed: the host resolve to a private ip address '10.0.0.1'": | ||||
| 				assert.EqualValues(t, "private-ip", testCase.repoName) | ||||
| 			case "migrate from 'localhost:3000' is not allowed: the host resolve to a private ip address '::1'", | ||||
| 				"migrate from 'localhost:3000' is not allowed: the host resolve to a private ip address '127.0.0.1'": | ||||
| 				assert.EqualValues(t, "local-ip", testCase.repoName) | ||||
| 			default: | ||||
| 				t.Errorf("unexpected error '%v' on url '%s'", respJSON["message"], testCase.cloneURL) | ||||
| 			} | ||||
| 		} else { | ||||
| 			assert.EqualValues(t, testCase.expectedStatus, resp.Code) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user