11
11
import org .gitlab4j .api .models .AccessLevel ;
12
12
import org .gitlab4j .api .models .Variable ;
13
13
import org .gitlab4j .models .GitLabForm ;
14
+ import org .gitlab4j .models .GitLabFormValue ;
14
15
import org .gitlab4j .models .utils .ISO8601 ;
15
16
16
17
/**
@@ -35,13 +36,33 @@ public GitLabApiForm(MultivaluedHashMap<String, String> map) {
35
36
public GitLabApiForm (int page , int perPage ) {
36
37
super ();
37
38
withParam (AbstractApi .PAGE_PARAM , page );
38
- withParam (AbstractApi .PER_PAGE_PARAM , ( Integer ) perPage );
39
+ withParam (AbstractApi .PER_PAGE_PARAM , perPage );
39
40
}
40
41
41
42
public GitLabApiForm (GitLabForm form ) {
42
43
super ();
43
- for (Entry <String , String > e : form .getFormValues ().entrySet ()) {
44
- this .param (e .getKey (), e .getValue ());
44
+ for (Entry <String , GitLabFormValue > e : form .getFormValues ().entrySet ()) {
45
+ GitLabFormValue value = e .getValue ();
46
+ switch (value .getType ()) {
47
+ case ACCESS_LEVEL :
48
+ withParam (e .getKey (), (AccessLevel ) value .getValue (), value .isRequired ());
49
+ break ;
50
+ case DATE :
51
+ withParam (e .getKey (), (Date ) value .getValue (), value .isRequired ());
52
+ break ;
53
+ case LIST :
54
+ withParam (e .getKey (), (List <?>) value .getValue (), value .isRequired ());
55
+ break ;
56
+ case MAP :
57
+ @ SuppressWarnings ("unchecked" )
58
+ Map <String , ?> mapValue = (Map <String , ?>) value .getValue ();
59
+ withParam (e .getKey (), mapValue , value .isRequired ());
60
+ break ;
61
+ case OBJECT :
62
+ default :
63
+ withParam (e .getKey (), value .getValue (), value .isRequired ());
64
+ break ;
65
+ }
45
66
}
46
67
}
47
68
@@ -52,8 +73,8 @@ public GitLabApiForm(GitLabForm form) {
52
73
* @param value the value of the field/attribute to add
53
74
* @return this GitLabAPiForm instance
54
75
*/
55
- public GitLabApiForm withParam (String name , Object value ) throws IllegalArgumentException {
56
- return ( withParam (name , value , false ) );
76
+ public GitLabApiForm withParam (String name , Object value ) {
77
+ return withParam (name , value , false );
57
78
}
58
79
59
80
/**
@@ -63,8 +84,8 @@ public GitLabApiForm withParam(String name, Object value) throws IllegalArgument
63
84
* @param date the value of the field/attribute to add
64
85
* @return this GitLabAPiForm instance
65
86
*/
66
- public GitLabApiForm withParam (String name , Date date ) throws IllegalArgumentException {
67
- return ( withParam (name , date , false ) );
87
+ public GitLabApiForm withParam (String name , Date date ) {
88
+ return withParam (name , date , false );
68
89
}
69
90
70
91
/**
@@ -76,8 +97,8 @@ public GitLabApiForm withParam(String name, Date date) throws IllegalArgumentExc
76
97
* @return this GitLabAPiForm instance
77
98
* @throws IllegalArgumentException if a required parameter is null or empty
78
99
*/
79
- public GitLabApiForm withParam (String name , Date date , boolean required ) throws IllegalArgumentException {
80
- return ( withParam (name , ( date == null ? null : ISO8601 .toString (date )) , required ) );
100
+ public GitLabApiForm withParam (String name , Date date , boolean required ) {
101
+ return withParam (name , date == null ? null : ISO8601 .toString (date ), required );
81
102
}
82
103
83
104
/**
@@ -87,8 +108,8 @@ public GitLabApiForm withParam(String name, Date date, boolean required) throws
87
108
* @param level the value of the field/attribute to add
88
109
* @return this GitLabAPiForm instance
89
110
*/
90
- public GitLabApiForm withParam (String name , AccessLevel level ) throws IllegalArgumentException {
91
- return ( withParam (name , level , false ) );
111
+ public GitLabApiForm withParam (String name , AccessLevel level ) {
112
+ return withParam (name , level , false );
92
113
}
93
114
94
115
/**
@@ -100,49 +121,47 @@ public GitLabApiForm withParam(String name, AccessLevel level) throws IllegalArg
100
121
* @return this GitLabAPiForm instance
101
122
* @throws IllegalArgumentException if a required parameter is null or empty
102
123
*/
103
- public GitLabApiForm withParam (String name , AccessLevel level , boolean required ) throws IllegalArgumentException {
104
- return ( withParam (name , ( level == null ? null : level .toValue ()) , required ) );
124
+ public GitLabApiForm withParam (String name , AccessLevel level , boolean required ) {
125
+ return withParam (name , level == null ? null : level .toValue (), required );
105
126
}
106
127
107
128
/**
108
129
* Fluent method for adding a List type query and form parameters to a get() or post() call.
109
130
*
110
- * @param <T> the type contained by the List
111
131
* @param name the name of the field/attribute to add
112
132
* @param values a List containing the values of the field/attribute to add
113
133
* @return this GitLabAPiForm instance
114
134
*/
115
- public < T > GitLabApiForm withParam (String name , List <T > values ) {
116
- return ( withParam (name , values , false ) );
135
+ public GitLabApiForm withParam (String name , List <? > values ) {
136
+ return withParam (name , values , false );
117
137
}
118
138
119
139
/**
120
140
* Fluent method for adding a List type query and form parameters to a get() or post() call.
121
141
*
122
- * @param <T> the type contained by the List
123
142
* @param name the name of the field/attribute to add
124
143
* @param values a List containing the values of the field/attribute to add
125
144
* @param required the field is required flag
126
145
* @return this GitLabAPiForm instance
127
146
* @throws IllegalArgumentException if a required parameter is null or empty
128
147
*/
129
- public < T > GitLabApiForm withParam (String name , List <T > values , boolean required ) throws IllegalArgumentException {
148
+ public GitLabApiForm withParam (String name , List <? > values , boolean required ) {
130
149
131
150
if (values == null || values .isEmpty ()) {
132
151
if (required ) {
133
152
throw new IllegalArgumentException (name + " cannot be empty or null" );
134
153
}
135
154
136
- return ( this ) ;
155
+ return this ;
137
156
}
138
157
139
- for (T value : values ) {
158
+ for (Object value : values ) {
140
159
if (value != null ) {
141
160
this .param (name + "[]" , value .toString ());
142
161
}
143
162
}
144
163
145
- return ( this ) ;
164
+ return this ;
146
165
}
147
166
148
167
/**
@@ -154,15 +173,14 @@ public <T> GitLabApiForm withParam(String name, List<T> values, boolean required
154
173
* @return this GitLabAPiForm instance
155
174
* @throws IllegalArgumentException if a required parameter is null or empty
156
175
*/
157
- public GitLabApiForm withParam (String name , Map <String , ?> variables , boolean required )
158
- throws IllegalArgumentException {
176
+ public GitLabApiForm withParam (String name , Map <String , ?> variables , boolean required ) {
159
177
160
178
if (variables == null || variables .isEmpty ()) {
161
179
if (required ) {
162
180
throw new IllegalArgumentException (name + " cannot be empty or null" );
163
181
}
164
182
165
- return ( this ) ;
183
+ return this ;
166
184
}
167
185
168
186
for (Entry <String , ?> variable : variables .entrySet ()) {
@@ -172,7 +190,7 @@ public GitLabApiForm withParam(String name, Map<String, ?> variables, boolean re
172
190
}
173
191
}
174
192
175
- return ( this ) ;
193
+ return this ;
176
194
}
177
195
178
196
/**
@@ -185,14 +203,14 @@ public GitLabApiForm withParam(String name, Map<String, ?> variables, boolean re
185
203
* @return this GitLabAPiForm instance
186
204
* @throws IllegalArgumentException if a required parameter is null or empty
187
205
*/
188
- public GitLabApiForm withParam (String name , Object value , boolean required ) throws IllegalArgumentException {
206
+ public GitLabApiForm withParam (String name , Object value , boolean required ) {
189
207
190
208
if (value == null ) {
191
209
if (required ) {
192
210
throw new IllegalArgumentException (name + " cannot be empty or null" );
193
211
}
194
212
195
- return ( this ) ;
213
+ return this ;
196
214
}
197
215
198
216
String stringValue = value .toString ();
@@ -201,7 +219,7 @@ public GitLabApiForm withParam(String name, Object value, boolean required) thro
201
219
}
202
220
203
221
this .param (name .trim (), stringValue );
204
- return ( this ) ;
222
+ return this ;
205
223
}
206
224
207
225
/**
@@ -213,7 +231,7 @@ public GitLabApiForm withParam(String name, Object value, boolean required) thro
213
231
public GitLabApiForm withParam (List <Variable > variables ) {
214
232
215
233
if (variables == null || variables .isEmpty ()) {
216
- return ( this ) ;
234
+ return this ;
217
235
}
218
236
219
237
variables .forEach (v -> {
@@ -223,6 +241,6 @@ public GitLabApiForm withParam(List<Variable> variables) {
223
241
}
224
242
});
225
243
226
- return ( this ) ;
244
+ return this ;
227
245
}
228
246
}
0 commit comments