The "contact" option in the attachments tray now brings you through an optimized contact sharing flow, allowing you to select specific fields to share. The contact is then presented as a special message type, allowing you to interact with the card to add the contact to your system contacts, invite them to signal, initiate a signal message, etc.
74 lines
2.1 KiB
Java
74 lines
2.1 KiB
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import com.fasterxml.jackson.databind.DeserializationFeature;
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
import com.fasterxml.jackson.databind.SerializationFeature;
|
|
|
|
import org.json.JSONException;
|
|
import org.json.JSONObject;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.InputStreamReader;
|
|
import java.io.Reader;
|
|
|
|
public class JsonUtils {
|
|
|
|
private static final ObjectMapper objectMapper = new ObjectMapper();
|
|
|
|
static {
|
|
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
|
|
objectMapper.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING);
|
|
objectMapper.enable(DeserializationFeature.READ_ENUMS_USING_TO_STRING);
|
|
}
|
|
|
|
public static <T> T fromJson(byte[] serialized, Class<T> clazz) throws IOException {
|
|
return fromJson(new String(serialized), clazz);
|
|
}
|
|
|
|
public static <T> T fromJson(String serialized, Class<T> clazz) throws IOException {
|
|
return objectMapper.readValue(serialized, clazz);
|
|
}
|
|
|
|
public static <T> T fromJson(InputStream serialized, Class<T> clazz) throws IOException {
|
|
return objectMapper.readValue(serialized, clazz);
|
|
}
|
|
|
|
public static <T> T fromJson(Reader serialized, Class<T> clazz) throws IOException {
|
|
return objectMapper.readValue(serialized, clazz);
|
|
}
|
|
|
|
public static String toJson(Object object) throws IOException {
|
|
return objectMapper.writeValueAsString(object);
|
|
}
|
|
|
|
public static ObjectMapper getMapper() {
|
|
return objectMapper;
|
|
}
|
|
|
|
public static class SaneJSONObject {
|
|
|
|
private final JSONObject delegate;
|
|
|
|
public SaneJSONObject(JSONObject delegate) {
|
|
this.delegate = delegate;
|
|
}
|
|
|
|
public String getString(String name) throws JSONException {
|
|
if (delegate.isNull(name)) return null;
|
|
else return delegate.getString(name);
|
|
}
|
|
|
|
public long getLong(String name) throws JSONException {
|
|
return delegate.getLong(name);
|
|
}
|
|
|
|
public boolean isNull(String name) {
|
|
return delegate.isNull(name);
|
|
}
|
|
|
|
public int getInt(String name) throws JSONException {
|
|
return delegate.getInt(name);
|
|
}
|
|
}
|
|
}
|