升级 orion-kit 到 v1.0.6.

This commit is contained in:
lijiahang
2023-07-04 12:17:17 +08:00
parent 1eeb950cf8
commit 27bf523001
22 changed files with 52 additions and 403 deletions

View File

@@ -7,7 +7,7 @@ package com.orion.ops.framework.common.constant;
* @version 1.0.0
* @since 2023/6/23 18:49
*/
public class Const extends com.orion.lang.constant.Const {
public class Const implements com.orion.lang.constant.Const {
private Const() {
}

View File

@@ -1,265 +0,0 @@
package com.orion.ops.framework.common.utils;
/**
* ANSI 高亮颜色转义码
* <p>
* \u001B = \x1b = 27 = esc
* <p>
* 基本8色 基本高对比色 xterm 256 色
* 30 ~ 37 90 ~ 97 0 ~ 256
* <p>
* \033[0m 关闭所有属性
* \033[1m 设置高亮度
* \033[4m 下划线
* \033[5m 闪烁
* \033[7m 反显
* \033[8m 消隐
* \033[30m 至 \33[37m 设置前景色
* \033[40m 至 \33[47m 设置背景色
* \033[nA 光标上移n行
* \033[nB 光标下移n行
* \033[nC 光标右移n行
* \033[nD 光标左移n行
* \033[y;xH 设置光标位置
* \033[2J 清屏
* \033[K 清除从光标到行尾的内容
* \033[s 保存光标位置
* \033[u 恢复光标位置
* \033[?25l 隐藏光标
* \033[?25h 显示光标
* <p>
* FIXME KIT
*
* @author Jiahang Li
* @version 1.0.0
* @since 2023/6/20 10:51
*/
public enum AnsiCode {
/**
* 黑色
*/
BLACK(30),
/**
* 红色
*/
RED(31),
/**
* 绿色
*/
GREEN(32),
/**
* 黄色
*/
YELLOW(33),
/**
* 蓝色
*/
BLUE(34),
/**
* 紫色
*/
PURPLE(35),
/**
* 青色
*/
CYAN(36),
/**
* 白色
*/
WHITE(37),
// -------------------- 背景色 --------------------
/**
* 黑色 背景色
*/
BG_BLACK(40),
/**
* 红色 背景色
*/
BG_RED(41),
/**
* 绿色 背景色
*/
BG_GREEN(42),
/**
* 黄色 背景色
*/
BG_YELLOW(43),
/**
* 蓝色 背景色
*/
BG_BLUE(44),
/**
* 紫色 背景色
*/
BG_PURPLE(45),
/**
* 青色 背景色
*/
BG_CYAN(46),
/**
* 白色 背景色
*/
BG_WHITE(47),
// -------------------- 亮色 --------------------
/**
* 亮黑色 (灰)
*/
GLOSS_BLACK(90),
/**
* 亮红色
*/
GLOSS_RED(91),
/**
* 亮绿色
*/
GLOSS_GREEN(92),
/**
* 亮黄色
*/
GLOSS_YELLOW(93),
/**
* 亮蓝色
*/
GLOSS_BLUE(94),
/**
* 亮紫色
*/
GLOSS_PURPLE(95),
/**
* 亮青色
*/
GLOSS_CYAN(96),
/**
* 亮白色
*/
GLOSS_WHITE(97),
// -------------------- 亮背景色 --------------------
/**
* 亮黑色 (灰) 背景色
*/
BG_GLOSS_BLACK(100),
/**
* 亮红色 背景色
*/
BG_GLOSS_RED(101),
/**
* 亮绿色 背景色
*/
BG_GLOSS_GREEN(102),
/**
* 亮黄色 背景色
*/
BG_GLOSS_YELLOW(103),
/**
* 亮蓝色 背景色
*/
BG_GLOSS_BLUE(104),
/**
* 亮紫色 背景色
*/
BG_GLOSS_PURPLE(105),
/**
* 亮青色 背景色
*/
BG_GLOSS_CYAN(106),
/**
* 亮白色 背景色
*/
BG_GLOSS_WHITE(107),
;
/**
* 颜色码
*/
public final int code;
/**
* 前缀
*/
public final String prefix;
/**
* 后缀
* \x1b[0m
*/
public static final String SUFFIX = (char) 27 + "[0m";
AnsiCode(int code) {
this.code = code;
this.prefix = getPrefix(code);
}
/**
* 文字着色
*
* @param s s
* @return s
*/
public String stain(String s) {
return prefix + s + SUFFIX;
}
/**
* 获取颜色前缀
* .e.g \x1b[31m
*
* @param code code
* @return 前缀
*/
public static String getPrefix(int code) {
return (char) 27 + "[" + code + "m";
}
/**
* 文字着色
*
* @param s s
* @param code code
* @return s
*/
public static String getStain(String s, int code) {
return getPrefix(code) + s + SUFFIX;
}
@Override
public String toString() {
return prefix;
}
}

View File

@@ -1,84 +0,0 @@
package com.orion.ops.framework.common.utils;
import com.orion.lang.utils.Strings;
/**
* 脱敏工具类
* <p>
* // FIXME KIT
*
* @author Jiahang Li
* @version 1.0.0
* @since 2019/9/10 9:45
*/
public class Desensitizes {
public static final String REPLACER = "*";
public static final char REPLACER_CHAR = '*';
private Desensitizes() {
}
public static String mix(String s, int keepStart, int keepEnd) {
return mix(s, keepStart, keepEnd, REPLACER_CHAR);
}
/**
* 字符串脱敏
* 脱敏后的长度和原先的长度一样
*
* @param s 原字符
* @param keepStart 开始保留长度
* @param keepEnd 结束保留长度
* @param replacer 脱敏字符
* @return 脱敏字符串
*/
public static String mix(String s, int keepStart, int keepEnd, char replacer) {
int length = Strings.length(s);
if (length == 0) {
return Strings.EMPTY;
}
return mix(s, keepStart, keepEnd, Strings.repeat(replacer, length - keepStart - keepEnd), 1);
}
public static String mix(String s, int keepStart, int keepEnd, String replacer) {
return mix(s, keepStart, keepEnd, replacer, 1);
}
/**
* 字符串脱敏
*
* @param s 原字符
* @param keepStart 开始保留长度
* @param keepEnd 结束保留长度
* @param replacer 脱敏字符串
* @param repeat 脱敏字符串重复次数
* @return 脱敏字符串
*/
public static String mix(String s, int keepStart, int keepEnd, String replacer, int repeat) {
int length = Strings.length(s);
if (length == 0) {
return Strings.EMPTY;
}
if (keepStart < 0) {
keepStart = 0;
}
if (keepEnd < 0) {
keepEnd = 0;
}
// 保留的长度大于等于文本的长度则不脱敏
if (keepStart + keepEnd >= length) {
return s;
}
char[] chars = s.toCharArray();
char[] replacerArr = Strings.repeat(replacer, repeat).toCharArray();
char[] res = new char[keepStart + keepEnd + replacerArr.length];
System.arraycopy(chars, 0, res, 0, keepStart);
System.arraycopy(replacerArr, 0, res, keepStart, replacerArr.length);
System.arraycopy(chars, chars.length - keepEnd, res, keepStart + replacerArr.length, keepEnd);
return new String(res);
}
}