summaryrefslogtreecommitdiffstats
blob: 2ec0e4b108b5530ef813c00f442fc39aa0478517 (plain)
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/*
 * Copyright (c) 2012-2014 Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2010 Remko Tronçon
 * All rights reserved.
 */
package com.isode.stroke.elements;

import java.util.ArrayList;
import java.util.List;

import com.isode.stroke.jid.JID;

/**
 * This class implements the field element of a form.
 *
 * <p>
 * From http://xmpp.org/extensions/xep-0050.html: Data validation is the
 * responsibility of the form-processing entity (commonly a server, service, or
 * bot) rather than the form-submitting entity (commonly a client controlled by
 * a human user). This helps to meet the requirement for keeping client
 * implementations simple. If the form-processing entity determines that the
 * data provided is not valid, it SHOULD return a "Not Acceptable" error,
 * optionally providing a textual explanation.
 */
public class FormField {
	
    public static final String FORM_FIELD_ATTRIBUTE_VAR = "var";
    public static final String FORM_FIELD_ATTRIBUTE_LABEL = "label";
    public static final String FORM_FIELD_ELEMENT_REQUIRED = "required";
    public static final String FORM_FIELD_ELEMENT_DESC = "desc";
    public static final String FORM_FIELD_ELEMENT_VALUE = "value";
    public static final String FORM_FIELD_ATTRIBUTE_TYPE = "type";
    public static final String FORM_FIELD_ELEMENT_OPTION = "option";
    public static final String FORM_FIELD_ATTRIBUTE_OPTION_LABEL = "label";
    public static final String FORM_FIELD_ELEMENT_OPTION_VALUE = "value";
    private static final String ILLEGAL_ARG_EX_STR = "This API is not valid for getting a value of type ";

    private boolean required_;
    private List<Option> options_ = new ArrayList<Option>();
    private List<String> values_ = new ArrayList<String>();
    private String description_ = "";
    private String label_ = "";
    private String name_ = "";
    private Type type_;
    
    public enum Type {
    	UNKNOWN_TYPE("unknown"),
    	BOOLEAN_TYPE("boolean"),
    	FIXED_TYPE("fixed"),
    	HIDDEN_TYPE("hidden"),
    	LIST_SINGLE_TYPE("list-single"),
    	LIST_MULTI_TYPE("list-multi"),
    	TEXT_PRIVATE_TYPE("text-private"),
    	TEXT_MULTI_TYPE("text-multi"),
    	TEXT_SINGLE_TYPE("text-single"),
    	JID_MULTI_TYPE("jid-multi"),
    	JID_SINGLE_TYPE("jid-single");
    	private String description_;
    	private Type(String description) {
    		description_ = description;
    	}
    	public String getDescription() {
    		return description_;
    	}
    	
    	public static Type getTypeFromString(String string) {
        	for (Type type : Type.values()) {
        		if (type.getDescription().equals(string)) {
        			return type;
        		}
        	}
        	return Type.UNKNOWN_TYPE;
        }
    }
    
    public FormField(Type type) {
    	type_ = type;
    	required_ = false;
    	if (type == Type.BOOLEAN_TYPE) {
    		setBoolValue(false);
    	}
    }
    
    public FormField(Type type, String value) {
    	addValue(value);
    	type_ = type;
        required_ = false;
    }
    
    /**
     * This class defines the option element that can be used in
     * ListSingleFormField and ListMultiFormField. This class is
     * immutable.
     */
    public static class Option {
        /**
         * Human-readable name for the option, will not be null
         */
        public final String label_;

        /**
         * Option value, will not be null
         */
        public final String value_;

        /**
         * Create an option element.
         * @param label Human-readable name for the option, must not be null
         * @param value Option value, must not be null
         */
        public Option(String label, String value) {
            if (label == null) {
                throw new NullPointerException("'label' must not be null");
            }
            if (value == null) {
                throw new NullPointerException("'value' must not be null");
            }
            label_ = label;
            value_ = value;
        }
    }

    /**
     * Set the unique identifier for the field in the form.
     * @param name unique identifier for the field in the form, must not be null
     */
    public void setName(String name) {
        if (name == null) {
            throw new NullPointerException("'name' must not be null");
        }
        name_ = name;
    }

    /**
     * @return unique identifier for the field, will never be null
     */
    public String getName() {
        return name_;
    }

    /**
     * Set the human-readable name for the field.
     * @param label human-readable name for the field, must not be null
     */
    public void setLabel(String label) {
        if (label == null) {
            throw new NullPointerException("'label' must not be null");
        }

        label_ = label;
    }

    /**
     * @return human-readable name for the field, will never be null
     */
    public String getLabel() {
        return label_;
    }

    /**
     * Set the natural-language description for the field.
     * @param description natural-language description for the field, must not
     *            be null
     */
    public void setDescription(String description) {
        if (description == null) {
            throw new NullPointerException("'description' must not be null");
        }

        description_ = description;
    }

    /**
     * @return natural-language description for the field, will never be null
     */
    public String getDescription() {
        return description_;
    }

    /**
     * Set if the field is required for the form to be considered valid.
     * @param required true if the field is required for the form to be
     *            considered valid
     */
    public void setRequired(boolean required) {
        required_ = required;
    }

    /**
     * @return true if the field is required for the form to be considered valid
     */
    public boolean getRequired() {
        return required_;
    }

    /**
     * Add to the list of options_ for this FormField.
     * @param option Option to add, must not be null
     */
    public void addOption(Option option) {
        if (option == null) {
            throw new NullPointerException("'option' must not be null");
        }
        options_.add(option);
    }

    /**
     * @return List of options_ for this FormField, will never be null. The instance
     *         of the list stored in the object is not returned, a copy is made.
     */
    public List<Option> getOptions() {
        return new ArrayList<Option>(options_);
    }
    
    /**
     * Clears the list of options_ for the FormField.
     */
    public void clearOptions() {
    	options_.clear();
    }

    /**
     * Add to values_ for this field. The values_ can be the defaults suggested in
     * a form of {@link Form.Type#FORM_TYPE} or results provided in a form of
     * {@link Type#RESULT_TYPE} or values_ submitted in a form of
     * {@link Type#SUBMIT_TYPE}.
     * @param value Value to add, must not be null
     */
    public void addValue(String value) {
        if (value == null) {
            throw new NullPointerException("'value' must not be null");
        }
        values_.add(value);
    }
    
    /**
     * Creates a single value for the FormField. This resets the values_ for this
     * field to a single argument.
     * @param value String, should not be null
     */
    public void setValue(String value) {
    	if (value == null ) {
    		throw new NullPointerException("'value' should not be null");
    	}
    	values_.clear();
    	values_.add(value);
    }
    
    /**
     * Resets the list of values for this field to the specified argument. The 
     * instance of the list stored in the object is not returned, a copy is made.
     * @param values List<String> of values
     */
    public void setValues(List<String> values) {
    	if (values == null) {
    		throw new NullPointerException("'values' must not be null");
    	}
    	values_ = new ArrayList<String>(values);
    }

    /**
     * @return List of values_ for this field, will never be null. The instance
     *         of the list stored in the object is not returned, a copy is made.
     */
    public List<String> getValues() {
    	if (values_ == null) {
    		values_ = new ArrayList<String>();
    	}
        return new ArrayList<String>(values_);
    }

    /**
     * Returns the type of the FormField.
     * @return type_ Type, never null
     */
    public Type getType() {
    	return type_;
    }
    
    /**
     * Sets the type of the FormField.
     * @param type Type, never null
     */
    public void setType(Type type) {
    	type_ = type;
    }
    
    /**
     * Returns the value of a FormField with the type boolean.
     * @return value boolean, will return false if FormField has no values
     */
    public boolean getBoolValue() {
    	if (type_ != Type.BOOLEAN_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
        return values_.isEmpty() ? false : values_.get(0).equals("true") || values_.get(0).equals("1");
    }
    
    /**
     * Sets the value of a FormField with type boolean to a boolean value.
     * @param bool boolean
     */
    public void setBoolValue(boolean bool) {
    	values_.clear();
    	values_.add(bool ? "1" : "0");
    }
    
    /**
     * Returns a JID single value.
     * @return JID value, or empty JID is FormField has no values
     */
    public JID getJIDSingleValue() {
    	if (type_ != Type.JID_SINGLE_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	return values_.isEmpty() ? new JID() : JID.fromString(values_.get(0));
    }

    /**
     * Gets the value at a specified index of a JID-multi FormField.
     * @param index index of the JID value
     * @return JID value, or empty JID is FormField has no values
     */
    public JID getJIDMultiValue(int index) {
    	if (type_ != Type.JID_MULTI_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	return values_.isEmpty() ? new JID() : JID.fromString(values_.get(index));
    }

    /**
     * Gets the value of a FormField with the type text-private.
     * @return value String, empty String if FormField has no values
     */
    public String getTextPrivateValue() {
    	if (type_ != Type.TEXT_PRIVATE_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	return values_.isEmpty() ? "" : values_.get(0);
    }

    /**
     * Gets the value of a FormField with the type fixed.
     * @return value String, or empty String if invalid FormField type
     */
    public String getFixedValue() {
    	if (type_ != Type.FIXED_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	return values_.isEmpty() ? "" : values_.get(0);
    }
    
    /**
     * Gets the value of a FormField with the type text-single.
     * If unknown type, extract a string value.
     * @return value String, or empty String if invalid FormField type
     */
    public String getTextSingleValue() {
    	if (type_ != Type.TEXT_SINGLE_TYPE && type_ != Type.UNKNOWN_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	return values_.isEmpty() ? "" : values_.get(0);
    }
    
    /**
     * Gets the value of a FormField with the type text-multi.
     * @return value String
     */
    public String getTextMultiValue() {
    	if (type_ != Type.TEXT_MULTI_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	StringBuilder val = new StringBuilder();
    	for (int i=0; i<values_.size(); i++) {
    		String s = values_.get(i);
    		if (i != 0) {
    			val.append("\n");
    		}
    		val.append(s);
    	}
    	return val.toString();
    }

    /**
     * Sets the value of a FormField with the type text-multi.
     * @param val String value to set, must not be null
     */
    public void setTextMultiValue(String val) {
    	if (type_ != Type.TEXT_MULTI_TYPE) {
    		throw new IllegalArgumentException(ILLEGAL_ARG_EX_STR + type_);
    	}
    	values_.clear();
    	if (val.contains("\r\n")){
    		for (String s : val.split("\r\n")) {
    			values_.add(s);
    		}
    	} 
    	else if (val.contains("\n")){
    		for (String s : val.split("\n")) {
    			values_.add(s);
    		}
    	} 
    	else {
    		values_.add(val);
    	}
    }

    @Override
    public String toString() {
        return FormField.class.getSimpleName() + "\nname: " + name_
                + "\nlabel: " + label_ + "\ndescription: " + description_
                + "\nrequired: " + required_;
    }
}