2020-05-02 02:20:51 +02:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 13:20:29 -05:00
// SPDX-License-Identifier: MIT
2020-05-02 02:20:51 +02:00
2022-09-02 15:18:23 -04:00
package integration
2020-05-02 02:20:51 +02:00
import (
"fmt"
"net/http"
"testing"
2023-01-17 16:46:03 -05:00
auth_model "code.gitea.io/gitea/models/auth"
2022-06-13 17:37:59 +08:00
"code.gitea.io/gitea/models/db"
issues_model "code.gitea.io/gitea/models/issues"
2021-12-10 09:27:50 +08:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-16 16:53:21 +08:00
"code.gitea.io/gitea/models/unittest"
2021-07-25 00:03:58 +08:00
"code.gitea.io/gitea/modules/json"
2020-05-02 02:20:51 +02:00
api "code.gitea.io/gitea/modules/structs"
2022-09-02 15:18:23 -04:00
"code.gitea.io/gitea/tests"
2021-07-25 00:03:58 +08:00
2020-05-02 02:20:51 +02:00
"github.com/stretchr/testify/assert"
)
func TestAPIPullReview ( t * testing . T ) {
2022-09-02 15:18:23 -04:00
defer tests . PrepareTestEnv ( t ) ( )
2022-08-16 10:22:25 +08:00
pullIssue := unittest . AssertExistsAndLoadBean ( t , & issues_model . Issue { ID : 3 } )
2022-06-13 17:37:59 +08:00
assert . NoError ( t , pullIssue . LoadAttributes ( db . DefaultContext ) )
2022-08-16 10:22:25 +08:00
repo := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : pullIssue . RepoID } )
2020-05-02 02:20:51 +02:00
// test ListPullReviews
session := loginUser ( t , "user2" )
Redesign Scoped Access Tokens (#24767)
## Changes
- Adds the following high level access scopes, each with `read` and
`write` levels:
- `activitypub`
- `admin` (hidden if user is not a site admin)
- `misc`
- `notification`
- `organization`
- `package`
- `issue`
- `repository`
- `user`
- Adds new middleware function `tokenRequiresScopes()` in addition to
`reqToken()`
- `tokenRequiresScopes()` is used for each high-level api section
- _if_ a scoped token is present, checks that the required scope is
included based on the section and HTTP method
- `reqToken()` is used for individual routes
- checks that required authentication is present (but does not check
scope levels as this will already have been handled by
`tokenRequiresScopes()`
- Adds migration to convert old scoped access tokens to the new set of
scopes
- Updates the user interface for scope selection
### User interface example
<img width="903" alt="Screen Shot 2023-05-31 at 1 56 55 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/654766ec-2143-4f59-9037-3b51600e32f3">
<img width="917" alt="Screen Shot 2023-05-31 at 1 56 43 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/1ad64081-012c-4a73-b393-66b30352654c">
## tokenRequiresScopes Design Decision
- `tokenRequiresScopes()` was added to more reliably cover api routes.
For an incoming request, this function uses the given scope category
(say `AccessTokenScopeCategoryOrganization`) and the HTTP method (say
`DELETE`) and verifies that any scoped tokens in use include
`delete:organization`.
- `reqToken()` is used to enforce auth for individual routes that
require it. If a scoped token is not present for a request,
`tokenRequiresScopes()` will not return an error
## TODO
- [x] Alphabetize scope categories
- [x] Change 'public repos only' to a radio button (private vs public).
Also expand this to organizations
- [X] Disable token creation if no scopes selected. Alternatively, show
warning
- [x] `reqToken()` is missing from many `POST/DELETE` routes in the api.
`tokenRequiresScopes()` only checks that a given token has the correct
scope, `reqToken()` must be used to check that a token (or some other
auth) is present.
- _This should be addressed in this PR_
- [x] The migration should be reviewed very carefully in order to
minimize access changes to existing user tokens.
- _This should be addressed in this PR_
- [x] Link to api to swagger documentation, clarify what
read/write/delete levels correspond to
- [x] Review cases where more than one scope is needed as this directly
deviates from the api definition.
- _This should be addressed in this PR_
- For example:
```go
m.Group("/users/{username}/orgs", func() {
m.Get("", reqToken(), org.ListUserOrgs)
m.Get("/{org}/permissions", reqToken(), org.GetUserOrgsPermissions)
}, tokenRequiresScopes(auth_model.AccessTokenScopeCategoryUser,
auth_model.AccessTokenScopeCategoryOrganization),
context_service.UserAssignmentAPI())
```
## Future improvements
- [ ] Add required scopes to swagger documentation
- [ ] Redesign `reqToken()` to be opt-out rather than opt-in
- [ ] Subdivide scopes like `repository`
- [ ] Once a token is created, if it has no scopes, we should display
text instead of an empty bullet point
- [ ] If the 'public repos only' option is selected, should read
categories be selected by default
Closes #24501
Closes #24799
Co-authored-by: Jonathan Tran <jon@allspice.io>
Co-authored-by: Kyle D <kdumontnu@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
2023-06-04 14:57:16 -04:00
token := getTokenForLoggedInUser ( t , session , auth_model . AccessTokenScopeWriteRepository )
2020-05-02 02:20:51 +02:00
req := NewRequestf ( t , http . MethodGet , "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token )
2022-12-02 11:39:42 +08:00
resp := MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
var reviews [ ] * api . PullReview
DecodeJSON ( t , resp , & reviews )
if ! assert . Len ( t , reviews , 6 ) {
return
}
for _ , r := range reviews {
assert . EqualValues ( t , pullIssue . HTMLURL ( ) , r . HTMLPullURL )
}
assert . EqualValues ( t , 8 , reviews [ 3 ] . ID )
assert . EqualValues ( t , "APPROVED" , reviews [ 3 ] . State )
assert . EqualValues ( t , 0 , reviews [ 3 ] . CodeCommentsCount )
2021-06-07 07:27:09 +02:00
assert . True ( t , reviews [ 3 ] . Stale )
assert . False ( t , reviews [ 3 ] . Official )
2020-05-02 02:20:51 +02:00
assert . EqualValues ( t , 10 , reviews [ 5 ] . ID )
assert . EqualValues ( t , "REQUEST_CHANGES" , reviews [ 5 ] . State )
assert . EqualValues ( t , 1 , reviews [ 5 ] . CodeCommentsCount )
2020-09-17 23:33:23 +02:00
assert . EqualValues ( t , - 1 , reviews [ 5 ] . Reviewer . ID ) // ghost user
2021-06-07 07:27:09 +02:00
assert . False ( t , reviews [ 5 ] . Stale )
assert . True ( t , reviews [ 5 ] . Official )
2020-05-02 02:20:51 +02:00
// test GetPullReview
req = NewRequestf ( t , http . MethodGet , "/api/v1/repos/%s/%s/pulls/%d/reviews/%d?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , reviews [ 3 ] . ID , token )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
var review api . PullReview
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , * reviews [ 3 ] , review )
req = NewRequestf ( t , "GET" , "/api/v1/repos/%s/%s/pulls/%d/reviews/%d?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , reviews [ 5 ] . ID , token )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , * reviews [ 5 ] , review )
// test GetPullReviewComments
2022-08-16 10:22:25 +08:00
comment := unittest . AssertExistsAndLoadBean ( t , & issues_model . Comment { ID : 7 } )
2020-05-02 02:20:51 +02:00
req = NewRequestf ( t , http . MethodGet , "/api/v1/repos/%s/%s/pulls/%d/reviews/%d/comments?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , 10 , token )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
var reviewComments [ ] * api . PullReviewComment
DecodeJSON ( t , resp , & reviewComments )
assert . Len ( t , reviewComments , 1 )
2021-03-28 00:37:51 +01:00
assert . EqualValues ( t , "Ghost" , reviewComments [ 0 ] . Poster . UserName )
2020-05-02 02:20:51 +02:00
assert . EqualValues ( t , "a review from a deleted user" , reviewComments [ 0 ] . Body )
assert . EqualValues ( t , comment . ID , reviewComments [ 0 ] . ID )
assert . EqualValues ( t , comment . UpdatedUnix , reviewComments [ 0 ] . Updated . Unix ( ) )
assert . EqualValues ( t , comment . HTMLURL ( ) , reviewComments [ 0 ] . HTMLURL )
// test CreatePullReview
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . CreatePullReviewOptions {
Body : "body1" ,
// Event: "" # will result in PENDING
2022-01-20 18:46:10 +01:00
Comments : [ ] api . CreatePullReviewComment {
{
Path : "README.md" ,
Body : "first new line" ,
OldLineNum : 0 ,
NewLineNum : 1 ,
} , {
Path : "README.md" ,
Body : "first old line" ,
OldLineNum : 1 ,
NewLineNum : 0 ,
} , {
Path : "iso-8859-1.txt" ,
Body : "this line contains a non-utf-8 character" ,
OldLineNum : 0 ,
NewLineNum : 1 ,
} ,
2020-05-02 02:20:51 +02:00
} ,
} )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , 6 , review . ID )
assert . EqualValues ( t , "PENDING" , review . State )
2020-06-18 15:07:09 +01:00
assert . EqualValues ( t , 3 , review . CodeCommentsCount )
2020-05-02 02:20:51 +02:00
// test SubmitPullReview
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews/%d?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , review . ID , token ) , & api . SubmitPullReviewOptions {
Event : "APPROVED" ,
Body : "just two nits" ,
} )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , 6 , review . ID )
assert . EqualValues ( t , "APPROVED" , review . State )
2020-06-18 15:07:09 +01:00
assert . EqualValues ( t , 3 , review . CodeCommentsCount )
2020-05-02 02:20:51 +02:00
2021-02-12 01:32:25 +08:00
// test dismiss review
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews/%d/dismissals?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , review . ID , token ) , & api . DismissPullReviewOptions {
Message : "test" ,
} )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2021-02-12 01:32:25 +08:00
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , 6 , review . ID )
2021-06-07 07:27:09 +02:00
assert . True ( t , review . Dismissed )
2021-02-12 01:32:25 +08:00
// test dismiss review
req = NewRequest ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews/%d/undismissals?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , review . ID , token ) )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2021-02-12 01:32:25 +08:00
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , 6 , review . ID )
2021-06-07 07:27:09 +02:00
assert . False ( t , review . Dismissed )
2021-02-12 01:32:25 +08:00
2020-05-02 02:20:51 +02:00
// test DeletePullReview
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . CreatePullReviewOptions {
Body : "just a comment" ,
Event : "COMMENT" ,
} )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-05-02 02:20:51 +02:00
DecodeJSON ( t , resp , & review )
assert . EqualValues ( t , "COMMENT" , review . State )
assert . EqualValues ( t , 0 , review . CodeCommentsCount )
req = NewRequestf ( t , http . MethodDelete , "/api/v1/repos/%s/%s/pulls/%d/reviews/%d?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , review . ID , token )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNoContent )
2020-10-21 02:18:25 +08:00
2021-06-25 00:05:51 +02:00
// test CreatePullReview Comment without body but with comments
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . CreatePullReviewOptions {
// Body: "",
Event : "COMMENT" ,
2022-01-20 18:46:10 +01:00
Comments : [ ] api . CreatePullReviewComment {
{
Path : "README.md" ,
Body : "first new line" ,
OldLineNum : 0 ,
NewLineNum : 1 ,
} , {
Path : "README.md" ,
Body : "first old line" ,
OldLineNum : 1 ,
NewLineNum : 0 ,
} ,
2021-06-25 00:05:51 +02:00
} ,
} )
var commentReview api . PullReview
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2021-06-25 00:05:51 +02:00
DecodeJSON ( t , resp , & commentReview )
assert . EqualValues ( t , "COMMENT" , commentReview . State )
assert . EqualValues ( t , 2 , commentReview . CodeCommentsCount )
2023-04-22 23:56:27 +02:00
assert . Empty ( t , commentReview . Body )
assert . False ( t , commentReview . Dismissed )
2021-06-25 00:05:51 +02:00
// test CreatePullReview Comment with body but without comments
commentBody := "This is a body of the comment."
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . CreatePullReviewOptions {
Body : commentBody ,
Event : "COMMENT" ,
Comments : [ ] api . CreatePullReviewComment { } ,
} )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2021-06-25 00:05:51 +02:00
DecodeJSON ( t , resp , & commentReview )
assert . EqualValues ( t , "COMMENT" , commentReview . State )
assert . EqualValues ( t , 0 , commentReview . CodeCommentsCount )
assert . EqualValues ( t , commentBody , commentReview . Body )
2023-04-22 23:56:27 +02:00
assert . False ( t , commentReview . Dismissed )
2021-06-25 00:05:51 +02:00
// test CreatePullReview Comment without body and no comments
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . CreatePullReviewOptions {
Body : "" ,
Event : "COMMENT" ,
Comments : [ ] api . CreatePullReviewComment { } ,
} )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusUnprocessableEntity )
2021-06-25 00:05:51 +02:00
errMap := make ( map [ string ] interface { } )
json . Unmarshal ( resp . Body . Bytes ( ) , & errMap )
assert . EqualValues ( t , "review event COMMENT requires a body or a comment" , errMap [ "message" ] . ( string ) )
2020-10-21 02:18:25 +08:00
// test get review requests
// to make it simple, use same api with get review
2022-08-16 10:22:25 +08:00
pullIssue12 := unittest . AssertExistsAndLoadBean ( t , & issues_model . Issue { ID : 12 } )
2022-06-13 17:37:59 +08:00
assert . NoError ( t , pullIssue12 . LoadAttributes ( db . DefaultContext ) )
2022-08-16 10:22:25 +08:00
repo3 := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : pullIssue12 . RepoID } )
2020-10-21 02:18:25 +08:00
req = NewRequestf ( t , http . MethodGet , "/api/v1/repos/%s/%s/pulls/%d/reviews?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token )
2022-12-02 11:39:42 +08:00
resp = MakeRequest ( t , req , http . StatusOK )
2020-10-21 02:18:25 +08:00
DecodeJSON ( t , resp , & reviews )
assert . EqualValues ( t , 11 , reviews [ 0 ] . ID )
assert . EqualValues ( t , "REQUEST_REVIEW" , reviews [ 0 ] . State )
assert . EqualValues ( t , 0 , reviews [ 0 ] . CodeCommentsCount )
2021-06-07 07:27:09 +02:00
assert . False ( t , reviews [ 0 ] . Stale )
assert . True ( t , reviews [ 0 ] . Official )
2020-10-21 02:18:25 +08:00
assert . EqualValues ( t , "test_team" , reviews [ 0 ] . ReviewerTeam . Name )
assert . EqualValues ( t , 12 , reviews [ 1 ] . ID )
assert . EqualValues ( t , "REQUEST_REVIEW" , reviews [ 1 ] . State )
assert . EqualValues ( t , 0 , reviews [ 0 ] . CodeCommentsCount )
2021-06-07 07:27:09 +02:00
assert . False ( t , reviews [ 1 ] . Stale )
assert . True ( t , reviews [ 1 ] . Official )
2020-10-21 02:18:25 +08:00
assert . EqualValues ( t , 1 , reviews [ 1 ] . Reviewer . ID )
}
func TestAPIPullReviewRequest ( t * testing . T ) {
2022-09-02 15:18:23 -04:00
defer tests . PrepareTestEnv ( t ) ( )
2022-08-16 10:22:25 +08:00
pullIssue := unittest . AssertExistsAndLoadBean ( t , & issues_model . Issue { ID : 3 } )
2022-06-13 17:37:59 +08:00
assert . NoError ( t , pullIssue . LoadAttributes ( db . DefaultContext ) )
2022-08-16 10:22:25 +08:00
repo := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : pullIssue . RepoID } )
2020-10-21 02:18:25 +08:00
// Test add Review Request
session := loginUser ( t , "user2" )
Redesign Scoped Access Tokens (#24767)
## Changes
- Adds the following high level access scopes, each with `read` and
`write` levels:
- `activitypub`
- `admin` (hidden if user is not a site admin)
- `misc`
- `notification`
- `organization`
- `package`
- `issue`
- `repository`
- `user`
- Adds new middleware function `tokenRequiresScopes()` in addition to
`reqToken()`
- `tokenRequiresScopes()` is used for each high-level api section
- _if_ a scoped token is present, checks that the required scope is
included based on the section and HTTP method
- `reqToken()` is used for individual routes
- checks that required authentication is present (but does not check
scope levels as this will already have been handled by
`tokenRequiresScopes()`
- Adds migration to convert old scoped access tokens to the new set of
scopes
- Updates the user interface for scope selection
### User interface example
<img width="903" alt="Screen Shot 2023-05-31 at 1 56 55 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/654766ec-2143-4f59-9037-3b51600e32f3">
<img width="917" alt="Screen Shot 2023-05-31 at 1 56 43 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/1ad64081-012c-4a73-b393-66b30352654c">
## tokenRequiresScopes Design Decision
- `tokenRequiresScopes()` was added to more reliably cover api routes.
For an incoming request, this function uses the given scope category
(say `AccessTokenScopeCategoryOrganization`) and the HTTP method (say
`DELETE`) and verifies that any scoped tokens in use include
`delete:organization`.
- `reqToken()` is used to enforce auth for individual routes that
require it. If a scoped token is not present for a request,
`tokenRequiresScopes()` will not return an error
## TODO
- [x] Alphabetize scope categories
- [x] Change 'public repos only' to a radio button (private vs public).
Also expand this to organizations
- [X] Disable token creation if no scopes selected. Alternatively, show
warning
- [x] `reqToken()` is missing from many `POST/DELETE` routes in the api.
`tokenRequiresScopes()` only checks that a given token has the correct
scope, `reqToken()` must be used to check that a token (or some other
auth) is present.
- _This should be addressed in this PR_
- [x] The migration should be reviewed very carefully in order to
minimize access changes to existing user tokens.
- _This should be addressed in this PR_
- [x] Link to api to swagger documentation, clarify what
read/write/delete levels correspond to
- [x] Review cases where more than one scope is needed as this directly
deviates from the api definition.
- _This should be addressed in this PR_
- For example:
```go
m.Group("/users/{username}/orgs", func() {
m.Get("", reqToken(), org.ListUserOrgs)
m.Get("/{org}/permissions", reqToken(), org.GetUserOrgsPermissions)
}, tokenRequiresScopes(auth_model.AccessTokenScopeCategoryUser,
auth_model.AccessTokenScopeCategoryOrganization),
context_service.UserAssignmentAPI())
```
## Future improvements
- [ ] Add required scopes to swagger documentation
- [ ] Redesign `reqToken()` to be opt-out rather than opt-in
- [ ] Subdivide scopes like `repository`
- [ ] Once a token is created, if it has no scopes, we should display
text instead of an empty bullet point
- [ ] If the 'public repos only' option is selected, should read
categories be selected by default
Closes #24501
Closes #24799
Co-authored-by: Jonathan Tran <jon@allspice.io>
Co-authored-by: Kyle D <kdumontnu@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
2023-06-04 14:57:16 -04:00
token := getTokenForLoggedInUser ( t , session , auth_model . AccessTokenScopeWriteRepository )
2020-10-21 02:18:25 +08:00
req := NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . PullReviewRequestOptions {
Reviewers : [ ] string { "user4@example.com" , "user8" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusCreated )
2020-10-21 02:18:25 +08:00
// poster of pr can't be reviewer
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . PullReviewRequestOptions {
Reviewers : [ ] string { "user1" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusUnprocessableEntity )
2020-10-21 02:18:25 +08:00
// test user not exist
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . PullReviewRequestOptions {
Reviewers : [ ] string { "testOther" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNotFound )
2020-10-21 02:18:25 +08:00
// Test Remove Review Request
session2 := loginUser ( t , "user4" )
Redesign Scoped Access Tokens (#24767)
## Changes
- Adds the following high level access scopes, each with `read` and
`write` levels:
- `activitypub`
- `admin` (hidden if user is not a site admin)
- `misc`
- `notification`
- `organization`
- `package`
- `issue`
- `repository`
- `user`
- Adds new middleware function `tokenRequiresScopes()` in addition to
`reqToken()`
- `tokenRequiresScopes()` is used for each high-level api section
- _if_ a scoped token is present, checks that the required scope is
included based on the section and HTTP method
- `reqToken()` is used for individual routes
- checks that required authentication is present (but does not check
scope levels as this will already have been handled by
`tokenRequiresScopes()`
- Adds migration to convert old scoped access tokens to the new set of
scopes
- Updates the user interface for scope selection
### User interface example
<img width="903" alt="Screen Shot 2023-05-31 at 1 56 55 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/654766ec-2143-4f59-9037-3b51600e32f3">
<img width="917" alt="Screen Shot 2023-05-31 at 1 56 43 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/1ad64081-012c-4a73-b393-66b30352654c">
## tokenRequiresScopes Design Decision
- `tokenRequiresScopes()` was added to more reliably cover api routes.
For an incoming request, this function uses the given scope category
(say `AccessTokenScopeCategoryOrganization`) and the HTTP method (say
`DELETE`) and verifies that any scoped tokens in use include
`delete:organization`.
- `reqToken()` is used to enforce auth for individual routes that
require it. If a scoped token is not present for a request,
`tokenRequiresScopes()` will not return an error
## TODO
- [x] Alphabetize scope categories
- [x] Change 'public repos only' to a radio button (private vs public).
Also expand this to organizations
- [X] Disable token creation if no scopes selected. Alternatively, show
warning
- [x] `reqToken()` is missing from many `POST/DELETE` routes in the api.
`tokenRequiresScopes()` only checks that a given token has the correct
scope, `reqToken()` must be used to check that a token (or some other
auth) is present.
- _This should be addressed in this PR_
- [x] The migration should be reviewed very carefully in order to
minimize access changes to existing user tokens.
- _This should be addressed in this PR_
- [x] Link to api to swagger documentation, clarify what
read/write/delete levels correspond to
- [x] Review cases where more than one scope is needed as this directly
deviates from the api definition.
- _This should be addressed in this PR_
- For example:
```go
m.Group("/users/{username}/orgs", func() {
m.Get("", reqToken(), org.ListUserOrgs)
m.Get("/{org}/permissions", reqToken(), org.GetUserOrgsPermissions)
}, tokenRequiresScopes(auth_model.AccessTokenScopeCategoryUser,
auth_model.AccessTokenScopeCategoryOrganization),
context_service.UserAssignmentAPI())
```
## Future improvements
- [ ] Add required scopes to swagger documentation
- [ ] Redesign `reqToken()` to be opt-out rather than opt-in
- [ ] Subdivide scopes like `repository`
- [ ] Once a token is created, if it has no scopes, we should display
text instead of an empty bullet point
- [ ] If the 'public repos only' option is selected, should read
categories be selected by default
Closes #24501
Closes #24799
Co-authored-by: Jonathan Tran <jon@allspice.io>
Co-authored-by: Kyle D <kdumontnu@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
2023-06-04 14:57:16 -04:00
token2 := getTokenForLoggedInUser ( t , session2 , auth_model . AccessTokenScopeWriteRepository )
2020-10-21 02:18:25 +08:00
req = NewRequestWithJSON ( t , http . MethodDelete , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token2 ) , & api . PullReviewRequestOptions {
Reviewers : [ ] string { "user4" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNoContent )
2020-10-21 02:18:25 +08:00
// doer is not admin
req = NewRequestWithJSON ( t , http . MethodDelete , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token2 ) , & api . PullReviewRequestOptions {
Reviewers : [ ] string { "user8" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusUnprocessableEntity )
2020-10-21 02:18:25 +08:00
req = NewRequestWithJSON ( t , http . MethodDelete , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo . OwnerName , repo . Name , pullIssue . Index , token ) , & api . PullReviewRequestOptions {
Reviewers : [ ] string { "user8" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNoContent )
2020-10-21 02:18:25 +08:00
// Test team review request
2022-08-16 10:22:25 +08:00
pullIssue12 := unittest . AssertExistsAndLoadBean ( t , & issues_model . Issue { ID : 12 } )
2022-06-13 17:37:59 +08:00
assert . NoError ( t , pullIssue12 . LoadAttributes ( db . DefaultContext ) )
2022-08-16 10:22:25 +08:00
repo3 := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : pullIssue12 . RepoID } )
2020-10-21 02:18:25 +08:00
// Test add Team Review Request
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token ) , & api . PullReviewRequestOptions {
TeamReviewers : [ ] string { "team1" , "owners" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusCreated )
2020-10-21 02:18:25 +08:00
// Test add Team Review Request to not allowned
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token ) , & api . PullReviewRequestOptions {
TeamReviewers : [ ] string { "test_team" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusUnprocessableEntity )
2020-10-21 02:18:25 +08:00
// Test add Team Review Request to not exist
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token ) , & api . PullReviewRequestOptions {
TeamReviewers : [ ] string { "not_exist_team" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNotFound )
2020-10-21 02:18:25 +08:00
// Test Remove team Review Request
req = NewRequestWithJSON ( t , http . MethodDelete , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token ) , & api . PullReviewRequestOptions {
TeamReviewers : [ ] string { "team1" } ,
} )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNoContent )
2020-10-21 02:18:25 +08:00
// empty request test
req = NewRequestWithJSON ( t , http . MethodPost , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token ) , & api . PullReviewRequestOptions { } )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusCreated )
2020-10-21 02:18:25 +08:00
req = NewRequestWithJSON ( t , http . MethodDelete , fmt . Sprintf ( "/api/v1/repos/%s/%s/pulls/%d/requested_reviewers?token=%s" , repo3 . OwnerName , repo3 . Name , pullIssue12 . Index , token ) , & api . PullReviewRequestOptions { } )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , http . StatusNoContent )
2020-05-02 02:20:51 +02:00
}