summaryrefslogtreecommitdiffstats
blob: bd347df3c7d3a40e62171560f6298e28ae5f6d94 (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
/*
 * Copyright (c) 2012-2013 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.idn;

import com.isode.stroke.base.SafeByteArray;
import com.isode.stroke.idn.IDNConverter;
import com.isode.stroke.idn.IDNA;
import com.ibm.icu.text.StringPrep;
import com.ibm.icu.text.StringPrepParseException;

public class ICUConverter implements IDNConverter {

	public String getStringPrepared(String s, StringPrepProfile profile) throws StringPrepParseException {
		StringPrep str = StringPrep.getInstance(getICUProfileType(profile));

		String preparedData = str.prepare(s, StringPrep.DEFAULT);
		return preparedData;
	}

	public SafeByteArray getStringPrepared(SafeByteArray s, StringPrepProfile profile) throws StringPrepParseException {
		StringPrep str = StringPrep.getInstance(getICUProfileType(profile));

		String preparedData = str.prepare(s.toString(), StringPrep.DEFAULT);
		return new SafeByteArray(preparedData);
	}

	public String getIDNAEncoded(String s) {
		return IDNA.getEncoded(s);
	}

	private int getICUProfileType(IDNConverter.StringPrepProfile profile) {
		switch(profile) {
			case NamePrep: return StringPrep.RFC3491_NAMEPREP;
			case XMPPNodePrep: return StringPrep.RFC3920_NODEPREP;
			case XMPPResourcePrep: return StringPrep.RFC3920_RESOURCEPREP;
			case SASLPrep: return StringPrep.RFC4013_SASLPREP;
		}
		assert(false);
		return StringPrep.RFC3491_NAMEPREP;
	}
}