-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add PersonalAccessTokenApi #934 #1150
Merged
jmini
merged 2 commits into
gitlab4j:main
from
katrinSaleschus:addRotatePersonalAccessToken
Oct 13, 2024
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
67 changes: 67 additions & 0 deletions
67
src/main/java/org/gitlab4j/api/PersonalAccessTokenApi.java
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,67 @@ | ||
package org.gitlab4j.api; | ||
|
||
import javax.ws.rs.core.Response; | ||
import org.gitlab4j.api.models.PersonalAccessToken; | ||
import org.gitlab4j.api.utils.ISO8601; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* This class provides an entry point to all the GitLab API personal access token calls. | ||
* | ||
* @see <a href="https://docs.gitlab.com/ce/api/personal_access_tokens.html">Personal access token API at GitLab</a> | ||
*/ | ||
public class PersonalAccessTokenApi extends AbstractApi { | ||
|
||
public PersonalAccessTokenApi(GitLabApi gitLabApi) { | ||
super(gitLabApi); | ||
} | ||
|
||
/** | ||
* Rotates the given personal access token. | ||
* The token is revoked and a new one which will expire in one week is created to replace it. | ||
* Only working with GitLab 16.0 and above. | ||
* | ||
* <pre><code>GitLab Endpoint: POST /personal_access_tokens/self/rotate</code></pre> | ||
* | ||
* @return the newly created PersonalAccessToken. | ||
* @throws GitLabApiException if any exception occurs | ||
*/ | ||
public PersonalAccessToken rotatePersonalAccessToken() throws GitLabApiException { | ||
return rotatePersonalAccessToken(null); | ||
} | ||
|
||
/** | ||
* Rotates the given personal access token. | ||
* The token is revoked and a new one which will expire in one week is created to replace it. | ||
* Only working with GitLab 16.0 and above. | ||
* | ||
* <pre><code>GitLab Endpoint: POST /personal_access_tokens/self/rotate</code></pre> | ||
* | ||
* @param expiresAt Expiration date of the access token | ||
* @return the newly created PersonalAccessToken. | ||
* @throws GitLabApiException if any exception occurs | ||
*/ | ||
public PersonalAccessToken rotatePersonalAccessToken(Date expiresAt) throws GitLabApiException { | ||
return rotatePersonalAccessToken("self", expiresAt); | ||
} | ||
|
||
/** | ||
* Rotates the given personal access token. | ||
* The token is revoked and a new one which will expire in one week is created to replace it. | ||
* Only working with GitLab 16.0 and above. | ||
* | ||
* <pre><code>GitLab Endpoint: POST /personal_access_tokens/:id/rotate</code></pre> | ||
* | ||
* @param expiresAt Expiration date of the access token | ||
* @return the newly created PersonalAccessToken. | ||
* @throws GitLabApiException if any exception occurs | ||
*/ | ||
public PersonalAccessToken rotatePersonalAccessToken(String id, Date expiresAt) throws GitLabApiException { | ||
GitLabApiForm formData = new GitLabApiForm() | ||
.withParam("expires_at", ISO8601.dateOnly(expiresAt)); | ||
|
||
Response response = post(Response.Status.OK, formData, "personal_access_tokens", id, "rotate"); | ||
return (response.readEntity(PersonalAccessToken.class)); | ||
} | ||
} |
111 changes: 111 additions & 0 deletions
111
src/main/java/org/gitlab4j/api/models/PersonalAccessToken.java
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,111 @@ | ||
package org.gitlab4j.api.models; | ||
|
||
import org.gitlab4j.api.Constants; | ||
import org.gitlab4j.api.utils.JacksonJson; | ||
|
||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; | ||
|
||
import java.io.Serializable; | ||
import java.util.Date; | ||
import java.util.List; | ||
|
||
public class PersonalAccessToken implements Serializable { | ||
private static final long serialVersionUID = 1L; | ||
|
||
private Long userId; | ||
private List<Constants.ProjectAccessTokenScope> scopes; | ||
private String name; | ||
@JsonSerialize(using = JacksonJson.DateOnlySerializer.class) | ||
private Date expiresAt; | ||
private Long id; | ||
private Boolean active; | ||
private Date createdAt; | ||
private Boolean revoked; | ||
private Date lastUsedAt; | ||
private String token; | ||
|
||
public Long getUserId() { | ||
return userId; | ||
} | ||
|
||
public void setUserId(Long userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public List<Constants.ProjectAccessTokenScope> getScopes() { | ||
return scopes; | ||
} | ||
|
||
public void setScopes(List<Constants.ProjectAccessTokenScope> scopes) { | ||
this.scopes = scopes; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public Date getExpiresAt() { | ||
return expiresAt; | ||
} | ||
|
||
public void setExpiresAt(Date expiredAt) { | ||
this.expiresAt = expiredAt; | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
public Boolean isActive() { | ||
return active; | ||
} | ||
|
||
public void setActive(Boolean active) { | ||
this.active = active; | ||
} | ||
|
||
public Date getCreatedAt() { | ||
return createdAt; | ||
} | ||
|
||
public void setCreatedAt(Date createdAt) { | ||
this.createdAt = createdAt; | ||
} | ||
|
||
public Boolean isRevoked() { | ||
return revoked; | ||
} | ||
|
||
public void setRevoked(Boolean revoked) { | ||
this.revoked = revoked; | ||
} | ||
|
||
public Date getLastUsedAt() { | ||
return lastUsedAt; | ||
} | ||
|
||
public void setLastUsedAt(Date lastUsedAt) { | ||
this.lastUsedAt = lastUsedAt; | ||
} | ||
|
||
public String getToken() { | ||
return token; | ||
} | ||
|
||
public void setToken(String token) { | ||
this.token = token; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return JacksonJson.toJsonString(this); | ||
} | ||
} |
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
12 changes: 12 additions & 0 deletions
12
src/test/resources/org/gitlab4j/api/personal-access-token.json
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,12 @@ | ||
{ | ||
"id": 42, | ||
"name": "Rotated Token", | ||
"revoked": false, | ||
"created_at": "2023-08-01T15:00:00Z", | ||
"scopes": ["api"], | ||
"user_id": 1337, | ||
"last_used_at": "2021-10-06T17:58:37Z", | ||
"active": true, | ||
"expires_at": "2023-08-15", | ||
"token": "s3cr3t" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usually we mention the endpoint called in the javadoc (easier to find later), can you add something like: