-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
132 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2017 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 integrations | ||
|
||
import ( | ||
"net/http" | ||
"testing" | ||
|
||
api "code.gitea.io/sdk/gitea" | ||
) | ||
|
||
func TestCreateForkNoLogin(t *testing.T) { | ||
prepareTestEnv(t) | ||
req := NewRequestWithJSON(t, "POST", "/api/v1/repos/user2/repo1/forks", &api.CreateForkOption{}) | ||
MakeRequest(t, req, http.StatusUnauthorized) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright 2017 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 integrations | ||
|
||
import ( | ||
"net/http" | ||
"testing" | ||
|
||
api "code.gitea.io/sdk/gitea" | ||
) | ||
|
||
func TestViewDeployKeysNoLogin(t *testing.T) { | ||
prepareTestEnv(t) | ||
req := NewRequest(t, "GET", "/api/v1/repos/user2/repo1/keys") | ||
MakeRequest(t, req, http.StatusUnauthorized) | ||
} | ||
|
||
func TestCreateDeployKeyNoLogin(t *testing.T) { | ||
prepareTestEnv(t) | ||
req := NewRequestWithJSON(t, "POST", "/api/v1/repos/user2/repo1/keys", api.CreateKeyOption{ | ||
Title: "title", | ||
Key: "key", | ||
}) | ||
MakeRequest(t, req, http.StatusUnauthorized) | ||
} | ||
|
||
func TestGetDeployKeyNoLogin(t *testing.T) { | ||
prepareTestEnv(t) | ||
req := NewRequest(t, "GET", "/api/v1/repos/user2/repo1/keys/1") | ||
MakeRequest(t, req, http.StatusUnauthorized) | ||
} | ||
|
||
func TestDeleteDeployKeyNoLogin(t *testing.T) { | ||
prepareTestEnv(t) | ||
req := NewRequest(t, "DELETE", "/api/v1/repos/user2/repo1/keys/1") | ||
MakeRequest(t, req, http.StatusUnauthorized) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright 2017 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 utils | ||
|
||
import "code.gitea.io/gitea/modules/context" | ||
|
||
// UserID user ID of authenticated user, or 0 if not authenticated | ||
func UserID(ctx *context.APIContext) int64 { | ||
if ctx.User == nil { | ||
return 0 | ||
} | ||
return ctx.User.ID | ||
} |