初始化了一个可用的版本

This commit is contained in:
zayac 2023-08-31 12:13:26 +08:00
commit 9306091d3b
12 changed files with 494 additions and 0 deletions

33
.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/

77
pom.xml Normal file
View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.3</version>
<relativePath/>
</parent>
<groupId>com.zayac</groupId>
<artifactId>changeURL</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>changeURL</name>
<description>通过http请求修改指定模板内指定关键词的小工具</description>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.21</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,18 @@
package com.zayac.changeurl;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
/**
* @author zayac
*/
@SpringBootApplication
@EnableCaching
public class ChangeUrlApiApplication {
public static void main(String[] args) {
SpringApplication.run(ChangeUrlApiApplication.class, args);
}
}

View File

@ -0,0 +1,23 @@
package com.zayac.changeurl.api;
import com.zayac.changeurl.service.ChangeURLService;
import jakarta.annotation.Resource;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author zayac
* @since 2023-08-30 12:07
*/
@RestController
@RequestMapping("/api/v1")
public class ChangeURLApi {
@Resource
private ChangeURLService changeURLService;
@GetMapping("/change")
public Boolean changeURL(String text) {
return changeURLService.change(text);
}
}

View File

@ -0,0 +1,33 @@
package com.zayac.changeurl.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authorization.AuthorizationDecision;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer;
import org.springframework.security.web.SecurityFilterChain;
import org.springframework.security.web.util.matcher.IpAddressMatcher;
/**
* @author zayac
*/
@Configuration
public class SecurityConfig {
@Value("${ip.white}")
private String ip;
@Bean
public SecurityFilterChain filterChain(HttpSecurity security) throws Exception {
IpAddressMatcher hasIpAddress = new IpAddressMatcher(ip);
return security
.authorizeHttpRequests(conf -> conf
.requestMatchers("/api/**")
.access((authentication, context) ->
new AuthorizationDecision(hasIpAddress.matches(context.getRequest()))
).anyRequest().denyAll())
.csrf(AbstractHttpConfigurer::disable)
.formLogin(AbstractHttpConfigurer::disable)
.build();
}
}

View File

@ -0,0 +1,7 @@
package com.zayac.changeurl.entity;
/**
* @author zayac
* @since 2023-08-30 15:19
*/
public record Msg2JSEntity(String original, String target) { }

View File

@ -0,0 +1,9 @@
package com.zayac.changeurl.service;
/**
* @author zayac
* @since 2023-08-30 12:07
*/
public interface ChangeURLService {
Boolean change(String text);
}

View File

@ -0,0 +1,171 @@
package com.zayac.changeurl.service;
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.util.ReUtil;
import cn.hutool.core.util.StrUtil;
import com.zayac.changeurl.entity.Msg2JSEntity;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
import java.util.*;
import java.util.stream.Collectors;
/**
* @author zayac
* @since 2023-08-30 12:08
*/
@Service
public class ChangeURLServiceImpl implements ChangeURLService {
public static final String URL_PATTERN = "(https?://[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,6})(:[0-9]{1,5})?";
private static final String PREFER = "";
@Value("${js.path.targets}")
//开云唯一词
private String[] targets;
@Value("${js.path.template}")
//开云唯一词
private String templatePath;
@Value("${msg.ky.startWith.web}")
private String msgKyWeb;
@Value("${msg.ky.startWith.h5}")
private String msgKyH5;
@Value("${msg.ky.startWith.app}")
private String msgKyApp;
@Value("${msg.hth.startWith.web}")
private String msgHthWeb;
@Value("${msg.hth.startWith.h5}")
private String msgHthH5;
@Value("${msg.hth.startWith.app1}")
private String msgHthApp1;
@Value("${msg.hth.startWith.app2}")
private String msgHthApp2;
//js修改部分
@Value("${js.ky.kyweb1}")
private String jsKyWeb1;
@Value("${js.ky.kyweb2}")
private String jsKyWeb2;
@Value("${js.ky.kyh51}")
private String jsKyH51;
@Value("${js.ky.kyh52}")
private String jsKyH52;
@Value("${js.ky.kyApp1}")
private String jsKyApp1;
@Value("${js.ky.kyApp2}")
private String jsKyApp2;
@Value("${js.hth.hthweb}")
private String jsHthWeb;
@Value("${js.hth.hthh5}")
private String jsHthH5;
@Value("${js.hth.hthApp1}")
private String jsHthApp1;
@Value("${js.hth.hthApp2}")
private String jsHthApp2;
@Override
public Boolean change(String text) {
//如果传入参数为空,返回修改失败
if (StrUtil.isEmpty(text)) {
return false;
} else {
text = StrUtil.subBefore(text, "SEO防拦截域名", false);
}
//处理传入参数
String[] strings = StrUtil.splitToArray(text, "\n");
List<String> msgKyWebList = getByStartWith(strings, msgKyWeb, URL_PATTERN, PREFER);
List<String> msgKyH5List = getByStartWith(strings, msgKyH5, URL_PATTERN, PREFER);
List<String> msgKyAppList = getByStartWith(strings, msgKyApp, URL_PATTERN, PREFER);
String template = loadTemplate(templatePath);
List<Msg2JSEntity> listEntity = toListEntity(msgKyWebList, msgKyH5List, msgKyAppList);
for (Msg2JSEntity msg2JSEntity : listEntity) {
template = template.replace(msg2JSEntity.original(), msg2JSEntity.target());
}
for (String target : targets) {
if (FileUtil.exist(target)) {
FileUtil.del(target);
} else {
FileUtil.newFile(target);
}
FileUtil.writeString(template, target, "UTF-8");
}
return true;
}
/**
* 从模板文件中读取文件
*
* @param path 文件路径
* @return js文件模板中行List
*/
@Cacheable("template")
public String loadTemplate(String path) {
if (FileUtil.exist(path)) {
return FileUtil.readUtf8String(path);
} else {
throw new RuntimeException("模板文件不存在");
}
}
/**
* 处理传入飞机信息
*
* @param arr 字符数组
* @param startWith 开始标识
* @param pattern url正则字符
* @param prefer 优先
* @return List
*/
public List<String> getByStartWith(String[] arr, String startWith, String pattern, String prefer) {
List<String> list = Arrays.stream(arr)
.filter(item -> item.startsWith(startWith))
.map(x -> ReUtil.getGroup1(pattern, x))
.sorted(Comparator.comparing(str -> str.contains(prefer)))
.collect(Collectors.toList());
if (list.size() == 0) {
throw new RuntimeException("飞机信息处理错误");
}
return list;
}
public List<Msg2JSEntity> toListEntity(List<String> msgKyWebList,
List<String> msgKyH5List,
List<String> msgKyAppList) {
ArrayList<Msg2JSEntity> msg2JSEntities = new ArrayList<>();
msg2JSEntities.add(build(jsKyWeb1, msgKyWebList.get(0)));
msg2JSEntities.add(build(jsKyWeb2, msgKyWebList.get(1)));
msg2JSEntities.add(build(jsKyH51, msgKyH5List.get(0)));
msg2JSEntities.add(build(jsKyH52, msgKyH5List.get(1)));
msg2JSEntities.add(build(jsKyApp1, msgKyAppList.get(0)));
msg2JSEntities.add(build(jsKyApp2, msgKyAppList.get(1)));
return msg2JSEntities.stream().filter(Objects::nonNull).collect(Collectors.toList());
}
public static Msg2JSEntity build(String js, String msg) {
if (StrUtil.isNotEmpty(js) && StrUtil.isNotEmpty(msg)) {
return new Msg2JSEntity("{{" + js + "}}", msg);
}
return null;
}
}

View File

@ -0,0 +1,8 @@
package com.zayac.changeurl.util;
/**
* @author zayac
* @since 2023-08-30 13:12
*/
public class util {
}

View File

@ -0,0 +1,38 @@
msg:
ky:
startWith:
web: "WEB"
h5: "H5"
app: "全站"
hth:
startWith:
web: ""
h5: ""
app1: ""
app2: ""
js:
ky:
kyweb1: "kyPc"
kyweb2: ""
kyh51: "kyH5"
kyh52: ""
kyApp1: "kyApp"
kyApp2: ""
hth:
hthweb: ""
hthh5: ""
hthApp1: ""
hthApp2: ""
path:
template: "link.js.template"
targets: "link.js"
server:
port: 8888
spring:
cache:
type: CAFFEINE
caffeine:
spec: maximumSize=100,expireAfterWrite=10m
ip:
white: "127.0.0.1"

View File

@ -0,0 +1,39 @@
msg:
ky:
startWith:
web: "WEB"
h5: "H5"
app: "全站"
hth:
startWith:
web: "web"
h5: "h5"
app1: "全站APP"
app2: "体育APP"
js:
ky:
kyweb1: "kyweb1"
kyweb2: "kyweb2"
kyh51: "kyh51"
kyh52: "kyh52"
kyApp1: "kyApp"
kyApp2: "kyApp2"
hth:
hthweb: "hthweb"
hthh5: "hthh5"
hthApp1: "hthApp1"
hthApp2: "hthApp2"
path:
template: "link.js.template"
targets: "link.js"
server:
port: 8888
spring:
cache:
type: CAFFEINE
caffeine:
spec: maximumSize=100,expireAfterWrite=10m
profiles:
active: ky

View File

@ -0,0 +1,38 @@
let code = '97238304',
ybty_link = {
kyApp: '{{kyApp}}/?i_code=' + code,// 开云全站app
kyPc: '{{kyPc}}/register/?i_code=' + code,//·开云体育电脑端
kyH5: '{{kyH5}}/entry/register/?i_code=' + code,//·开云体育手机端
}
function ybty_visit(key) {
window.location.href = ybty_link[key];
}
function ybty_visit_newopen(key) {
window.open(ybty_link[key])
}
function ybty_kf(url) {
window.open(url)
}
function getMyUrl(key) {
return ybty_link[key];
}
function deviceYBRegister(code) {
if (window.innerWidth < 768) {
window.open(ybty_link['ybH5']);
} else {
window.open(ybty_link['ybPc']);
}
}
function deviceLYRegister(code) {
if (window.innerWidth < 768) {
window.open(ybty_link['ybH55']);
} else {
window.open(ybty_link['ybPc']);
}
}