org.jxmpp.stringprep.rocksxmppprecis.RocksXmppPrecisStringprep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxmpp-stringprep-rocksxmppprecis Show documentation
Show all versions of jxmpp-stringprep-rocksxmppprecis Show documentation
JXMPP Stringprep with xmpp.rocks's Precis library.
The newest version!
/**
*
* Copyright 2019-2023 Florian Schmaus
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jxmpp.stringprep.rocksxmppprecis;
import org.jxmpp.stringprep.XmppStringprep;
import org.jxmpp.stringprep.XmppStringprepException;
import org.jxmpp.stringprep.simple.SimpleXmppStringprep;
import rocks.xmpp.precis.InvalidCodePointException;
import rocks.xmpp.precis.PrecisProfiles;
/**
* XMPP string preparation using rocks-xmpp-precis.
*/
public class RocksXmppPrecisStringprep implements XmppStringprep {
/**
* The ready to use instance of this.
*/
public static final RocksXmppPrecisStringprep INSTANCE = new RocksXmppPrecisStringprep();
/**
* The name of the stringprep implementation.
*/
public static final String NAME = "rocks-xmpp-precis";
private RocksXmppPrecisStringprep() {
}
@Override
public String localprep(String string) throws XmppStringprepException {
// Workaround until https://bitbucket.org/sco0ter/precis/pull-requests/3 is merged.
SimpleXmppStringprep.ensureLocalpartDoesNotIncludeFurtherExcludedCharacters(string);
try {
return PrecisProfiles.USERNAME_CASE_MAPPED.enforce(string);
} catch (InvalidCodePointException e) {
throw new XmppStringprepException(string, e);
}
}
@Override
public String domainprep(String string) throws XmppStringprepException {
try {
return PrecisProfiles.IDN.enforce(string);
} catch (IllegalArgumentException e) {
throw new XmppStringprepException(string, e);
}
}
@Override
public String resourceprep(String string) throws XmppStringprepException {
try {
return PrecisProfiles.OPAQUE_STRING.enforce(string);
} catch (InvalidCodePointException e) {
throw new XmppStringprepException(string, e);
}
}
}