forked from gitlab4j/gitlab4j-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonalAccessTokenApi.java
96 lines (85 loc) · 3.76 KB
/
PersonalAccessTokenApi.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package org.gitlab4j.api;
import java.util.Date;
import javax.ws.rs.core.Response;
import org.gitlab4j.api.models.PersonalAccessToken;
import org.gitlab4j.api.utils.ISO8601;
/**
* 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 personal access token used in the request header.
* The token is revoked and a new one which will expire at the given expiresAt-date 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 a specific personal access token.
* The token is revoked and a new one which will expire at the given expiresAt-date 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 id ID of the personal access token
* @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));
}
/**
* Get information about the personal access token used in the request header.
* Only working with GitLab 16.0 and above.
*
* <pre><code>GitLab Endpoint: GET /personal_access_tokens/self</code></pre>
*
* @return the specified PersonalAccessToken.
* @throws GitLabApiException if any exception occurs
*/
public PersonalAccessToken getPersonalAccessToken() throws GitLabApiException {
return getPersonalAccessToken("self");
}
/**
* Get a specific personal access token.
* Only working with GitLab 16.0 and above.
*
* <pre><code>GitLab Endpoint: GET /personal_access_tokens/:id</code></pre>
*
* @param id ID of the personal access token
* @return the specified PersonalAccessToken.
* @throws GitLabApiException if any exception occurs
*/
public PersonalAccessToken getPersonalAccessToken(String id) throws GitLabApiException {
Response response = get(Response.Status.OK, null, "personal_access_tokens", id);
return (response.readEntity(PersonalAccessToken.class));
}
}