Files
fizz-gateway-node/fizz-common/src/main/java/we/util/MapUtil.java

215 lines
5.2 KiB
Java
Raw Normal View History

2020-09-02 18:35:03 +08:00
/*
* Copyright (C) 2020 the original author or authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2020-09-04 19:43:19 +08:00
package we.util;
2020-09-02 18:35:03 +08:00
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.springframework.http.HttpHeaders;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import com.alibaba.fastjson.JSON;
/**
*
2021-03-30 11:52:12 +08:00
* @author Francis Dong
2020-09-02 18:35:03 +08:00
*
*/
public class MapUtil {
public static HttpHeaders toHttpHeaders(Map<String, Object> params) {
HttpHeaders headers = new HttpHeaders();
2021-03-30 11:52:12 +08:00
if (params == null || params.isEmpty()) {
2020-09-02 18:35:03 +08:00
return headers;
}
for (Entry<String, Object> entry : params.entrySet()) {
Object val = entry.getValue();
List<String> list = new ArrayList<>();
if (val instanceof List) {
List<Object> vals = (List<Object>) val;
for (Object value : vals) {
if (value != null) {
list.add(value.toString());
}
}
} else {
if (val != null) {
list.add(val.toString());
}
}
if (list.size() > 0) {
headers.put(entry.getKey(), list);
}
}
return headers;
}
public static MultiValueMap<String, String> toMultiValueMap(Map<String, Object> params) {
MultiValueMap<String, String> mvmap = new LinkedMultiValueMap<>();
2021-03-30 11:52:12 +08:00
if (params == null || params.isEmpty()) {
2020-09-02 18:35:03 +08:00
return mvmap;
}
for (Entry<String, Object> entry : params.entrySet()) {
Object val = entry.getValue();
List<String> list = new ArrayList<>();
if (val instanceof List) {
List<Object> vals = (List<Object>) val;
for (Object value : vals) {
if (value != null) {
list.add(value.toString());
}
}
} else {
if (val != null) {
list.add(val.toString());
}
}
if (list.size() > 0) {
mvmap.put(entry.getKey(), list);
}
}
return mvmap;
}
public static Map<String, Object> toHashMap(MultiValueMap<String, String> params) {
HashMap<String, Object> m = new HashMap<>();
2021-03-30 11:52:12 +08:00
if (params == null || params.isEmpty()) {
2020-09-02 18:35:03 +08:00
return m;
}
for (Entry<String, List<String>> entry : params.entrySet()) {
List<String> val = entry.getValue();
if (val != null && val.size() > 0) {
if (val.size() > 1) {
m.put(entry.getKey(), val);
} else {
m.put(entry.getKey(), val.get(0));
}
}
}
return m;
}
2021-03-30 11:52:12 +08:00
public static Map<String, Object> headerToHashMap(HttpHeaders headers) {
HashMap<String, Object> m = new HashMap<>();
if (headers == null || headers.isEmpty()) {
return m;
}
for (Entry<String, List<String>> entry : headers.entrySet()) {
List<String> val = entry.getValue();
if (val != null && val.size() > 0) {
if (val.size() > 1) {
m.put(entry.getKey().toUpperCase(), val);
} else {
m.put(entry.getKey().toUpperCase(), val.get(0));
}
}
}
return m;
}
public static Map<String, Object> upperCaseKey(Map<String, Object> m) {
HashMap<String, Object> rs = new HashMap<>();
if (m == null || m.isEmpty()) {
return rs;
}
for (Entry<String, Object> entry : m.entrySet()) {
rs.put(entry.getKey().toUpperCase(), entry.getValue());
}
return rs;
}
2020-09-02 18:35:03 +08:00
/**
* Set value by pathsupport multiple levelsega.b.c <br>
* Do NOT use this method if field name contains a dot <br>
* @param data
* @param path
* @param value
*/
@SuppressWarnings("unchecked")
public static void set(Map<String, Object> data, String path, Object value) {
String[] fields = path.split("\\.");
if(fields.length < 2) {
data.put(path, value);
}else {
Map<String, Object> next = data;
for (int i = 0; i < fields.length - 1; i++) {
Map<String, Object> val = (Map<String, Object>) next.get(fields[i]);
if(val == null) {
val = new HashMap<>();
next.put(fields[i], val);
}
if(i == fields.length - 2) {
val.put(fields[i+1], value);
break;
}
next = val;
}
}
}
/**
* Get value by path, support multiple levelsega.b.c <br>
* Do NOT use this method if field name contains a dot <br>
* @param data
* @param path
* @return
*/
public static Object get(Map<String, Object> data, String path) {
String[] fields = path.split("\\.");
if(fields.length < 2) {
return data.get(path);
}else {
Map<String, Object> next = data;
for (int i = 0; i < fields.length - 1; i++) {
if(!(next.get(fields[i]) instanceof Map)) {
return null;
}
Map<String, Object> val = (Map<String, Object>) next.get(fields[i]);
if(val == null) {
return null;
}
if(i == fields.length - 2) {
return val.get(fields[i+1]);
}
next = val;
}
}
return null;
}
}