2024-03-27 14:24:59 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-03-27 15:13:48 +08:00
|
|
|
|
<title>TGPH URL Transformer</title>
|
|
|
|
|
<!-- INFO -->
|
|
|
|
|
<!--
|
|
|
|
|
本代码完全开源,仅供学习CloudFlare Page和Worker组件编程使用
|
|
|
|
|
仓库地址 https://github.com/BlueSkyXN/WorkerJS_CloudFlare_ImageBed
|
|
|
|
|
不提供任何免费的技术支持、指导、问题解答,请按GitHub标准用法进行issue等方式交互
|
|
|
|
|
请勿滥用本代码,违规使用后果自负,任何操作和后果均与本人无关
|
|
|
|
|
API接口均需要使用者自行解决,本人不提供任何API接口服务
|
|
|
|
|
不得在中国大陆地区使用本代码
|
|
|
|
|
-->
|
2024-03-27 14:24:59 +08:00
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.min.css">
|
|
|
|
|
<style>
|
|
|
|
|
.container {
|
|
|
|
|
margin-top: 50px;
|
|
|
|
|
}
|
2024-03-27 14:29:29 +08:00
|
|
|
|
.url-item {
|
2024-03-27 14:24:59 +08:00
|
|
|
|
margin-top: 10px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border-radius: 5px;
|
2024-03-27 14:29:29 +08:00
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2024-03-27 14:24:59 +08:00
|
|
|
|
}
|
2024-03-27 14:29:29 +08:00
|
|
|
|
.copy-button {
|
|
|
|
|
margin-right: 10px;
|
2024-03-27 14:47:03 +08:00
|
|
|
|
background-color: #12ca49; /* Bootstrap info color */
|
|
|
|
|
border-color: #12ca49; /* Bootstrap info color */
|
2024-03-27 14:24:59 +08:00
|
|
|
|
}
|
2024-03-27 14:29:29 +08:00
|
|
|
|
.copy-button:hover {
|
2024-03-27 14:47:03 +08:00
|
|
|
|
background-color: #149e3e; /* Darker shade */
|
|
|
|
|
border-color: #149e3e; /* Darker shade */
|
2024-03-27 14:29:29 +08:00
|
|
|
|
}
|
|
|
|
|
.input-group-prepend {
|
|
|
|
|
margin-right: 10px;
|
2024-03-27 14:24:59 +08:00
|
|
|
|
}
|
|
|
|
|
</style>
|
2024-03-27 15:13:48 +08:00
|
|
|
|
|
2024-03-27 14:24:59 +08:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2024-04-10 10:38:29 +08:00
|
|
|
|
<a href="https://github.com/BlueSkyXN/WorkerJS_CloudFlare_ImageBed" target="_blank" title="Visit GitHub Repository">
|
|
|
|
|
<img src="https://icons.iconarchive.com/icons/iconoir-team/iconoir/48/github-circle-icon.png" width="48" height="48">
|
|
|
|
|
</a>
|
2024-03-27 14:24:59 +08:00
|
|
|
|
<div class="container">
|
2024-03-27 17:32:06 +08:00
|
|
|
|
<h2>TGPH URL Transformer</h2>
|
2024-03-27 14:29:29 +08:00
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
|
<div class="input-group-prepend">
|
2024-03-27 15:13:48 +08:00
|
|
|
|
<button class="btn btn-outline-secondary" type="button" id="pasteUrl">Paste URL</button>
|
2024-03-27 14:29:29 +08:00
|
|
|
|
</div>
|
2024-03-27 15:13:48 +08:00
|
|
|
|
<input type="text" class="form-control" id="inputUrl" placeholder="Input Raw URL">
|
2024-03-27 14:29:29 +08:00
|
|
|
|
<div class="input-group-append">
|
2024-03-27 15:13:48 +08:00
|
|
|
|
<button class="btn btn-primary" onclick="transformUrl()">Transform URL</button>
|
2024-03-27 14:29:29 +08:00
|
|
|
|
</div>
|
2024-03-27 14:24:59 +08:00
|
|
|
|
</div>
|
2024-03-27 14:29:29 +08:00
|
|
|
|
<div id="urlList"></div>
|
2024-03-27 14:24:59 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-03-27 14:29:29 +08:00
|
|
|
|
document.getElementById('pasteUrl').addEventListener('click', function() {
|
|
|
|
|
navigator.clipboard.readText().then(text => document.getElementById('inputUrl').value = text);
|
|
|
|
|
});
|
|
|
|
|
|
2024-03-27 14:24:59 +08:00
|
|
|
|
function transformUrl() {
|
|
|
|
|
const originalUrl = document.getElementById('inputUrl').value;
|
|
|
|
|
const fileName = originalUrl.match(/\/file\/(.+)$/)[1]; // 提取文件名
|
|
|
|
|
|
|
|
|
|
const prefixes = [
|
|
|
|
|
'https://telegraph.cachefly.net/file/',
|
|
|
|
|
'https://i0.wp.com/telegra.ph/file/',
|
|
|
|
|
'https://i1.wp.com/telegraph.cachefly.net/file/',
|
|
|
|
|
'https://i2.wp.com/im.gurl.eu.org/file/',
|
|
|
|
|
'https://i3.wp.com/missuo.ru/file/',
|
2024-04-12 17:39:37 +08:00
|
|
|
|
'https://i0.wp.com/image.zd8.top/file/',
|
2024-04-26 10:40:32 +08:00
|
|
|
|
'https://image.baidu.com/search/down?thumburl=https://baidu.com&url=https://i1.wp.com/missuo.ru/file/',
|
|
|
|
|
// 对于image.baidu.com的加速接口 以前的接口只需要URL参数,20240426发现还需要thumburl这个参数,否则是空白的响应
|
|
|
|
|
'https://image.baidu.com/search/down?thumburl=https://baidu.com&url=https://i2.wp.com/image.zd8.top/file/',
|
2024-03-27 14:24:59 +08:00
|
|
|
|
'https://images.weserv.nl/?url=https://missuo.ru/file/',
|
|
|
|
|
'https://pic1.xuehuaimg.com/proxy/https://i0.wp.com/missuo.ru/file/',
|
|
|
|
|
'https://im.gurl.eu.org/file/',
|
|
|
|
|
'https://img1.131213.xyz/file/',
|
2024-04-28 11:00:12 +08:00
|
|
|
|
'https://img.111588.xyz/file/',
|
2024-04-12 17:39:37 +08:00
|
|
|
|
'https://image.zd8.top/file/',
|
2024-03-27 14:24:59 +08:00
|
|
|
|
'https://missuo.ru/file/'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
let transformedUrls = prefixes.map(prefix => `${prefix}${fileName}`);
|
|
|
|
|
displayUrls(transformedUrls);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function displayUrls(urls) {
|
|
|
|
|
const urlList = document.getElementById('urlList');
|
|
|
|
|
urlList.innerHTML = ''; // 清空之前的结果
|
|
|
|
|
urls.forEach(url => {
|
2024-03-27 14:29:29 +08:00
|
|
|
|
const urlItem = document.createElement('div');
|
|
|
|
|
urlItem.className = 'url-item';
|
|
|
|
|
|
|
|
|
|
const copyBtn = document.createElement('button');
|
|
|
|
|
copyBtn.className = 'btn btn-info copy-button';
|
2024-03-27 15:13:48 +08:00
|
|
|
|
copyBtn.textContent = 'COPY URL';
|
2024-03-27 14:29:29 +08:00
|
|
|
|
copyBtn.onclick = function() { navigator.clipboard.writeText(url); };
|
|
|
|
|
|
|
|
|
|
const urlText = document.createElement('span');
|
|
|
|
|
urlText.textContent = url;
|
|
|
|
|
|
|
|
|
|
urlItem.appendChild(copyBtn);
|
|
|
|
|
urlItem.appendChild(urlText);
|
|
|
|
|
|
|
|
|
|
urlList.appendChild(urlItem);
|
2024-03-27 14:24:59 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|