package io.vertx.ext.shell.term;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
public class HttpTermOptionsConverter {
public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HttpTermOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authOptions":
if (member.getValue() instanceof JsonObject) {
obj.setAuthOptions(((JsonObject)member.getValue()).copy());
}
break;
case "charset":
if (member.getValue() instanceof String) {
obj.setCharset((String)member.getValue());
}
break;
case "intputrc":
if (member.getValue() instanceof String) {
obj.setIntputrc((String)member.getValue());
}
break;
case "shellHtmlResource":
if (member.getValue() instanceof String) {
obj.setShellHtmlResource(io.vertx.core.buffer.Buffer.buffer(JsonUtil.BASE64_DECODER.decode((String)member.getValue())));
}
break;
case "sockJSHandlerOptions":
if (member.getValue() instanceof JsonObject) {
obj.setSockJSHandlerOptions(new io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions((io.vertx.core.json.JsonObject)member.getValue()));
}
break;
case "sockJSPath":
if (member.getValue() instanceof String) {
obj.setSockJSPath((String)member.getValue());
}
break;
case "termJsResource":
if (member.getValue() instanceof String) {
obj.setTermJsResource(io.vertx.core.buffer.Buffer.buffer(JsonUtil.BASE64_DECODER.decode((String)member.getValue())));
}
break;
case "vertsShellJsResource":
if (member.getValue() instanceof String) {
obj.setVertsShellJsResource(io.vertx.core.buffer.Buffer.buffer(JsonUtil.BASE64_DECODER.decode((String)member.getValue())));
}
break;
}
}
}
public static void toJson(HttpTermOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(HttpTermOptions obj, java.util.Map<String, Object> json) {
if (obj.getAuthOptions() != null) {
json.put("authOptions", obj.getAuthOptions());
}
if (obj.getCharset() != null) {
json.put("charset", obj.getCharset());
}
if (obj.getIntputrc() != null) {
json.put("intputrc", obj.getIntputrc());
}
if (obj.getShellHtmlResource() != null) {
json.put("shellHtmlResource", JsonUtil.BASE64_ENCODER.encodeToString(obj.getShellHtmlResource().getBytes()));
}
if (obj.getSockJSPath() != null) {
json.put("sockJSPath", obj.getSockJSPath());
}
if (obj.getTermJsResource() != null) {
json.put("termJsResource", JsonUtil.BASE64_ENCODER.encodeToString(obj.getTermJsResource().getBytes()));
}
if (obj.getVertsShellJsResource() != null) {
json.put("vertsShellJsResource", JsonUtil.BASE64_ENCODER.encodeToString(obj.getVertsShellJsResource().getBytes()));
}
}
}