change
This commit is contained in:
20
.gitignore
vendored
20
.gitignore
vendored
@@ -4,3 +4,23 @@ frontend/dist
|
||||
frontend/node_modules
|
||||
build/linux/appimage/build
|
||||
build/windows/nsis/MicrosoftEdgeWebview2Setup.exe
|
||||
|
||||
.DS_Store
|
||||
node_modules/
|
||||
/dist/
|
||||
/user-data/
|
||||
/log/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
/www
|
||||
config.yaml
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
.vs/*
|
||||
@@ -12,6 +12,7 @@ type AppConfig struct {
|
||||
StunUrl string `yaml:"stunUrl"`
|
||||
ApiUrl string `yaml:"apiUrl"`
|
||||
AppName string `yaml:"appName"`
|
||||
SiteFileDir string `yaml:"siteFileDir"`
|
||||
}
|
||||
|
||||
func LoadConfig() (*AppConfig, error) {
|
||||
|
||||
@@ -8,14 +8,15 @@
|
||||
<pie-chart-outlined />
|
||||
<span>控制台</span>
|
||||
</a-menu-item>
|
||||
<a-sub-menu key="device">
|
||||
<a-sub-menu key="site">
|
||||
<template #title>
|
||||
<span>
|
||||
<user-outlined />
|
||||
<span>仿站</span>
|
||||
</span>
|
||||
</template>
|
||||
<a-menu-item key="list">整站下载</a-menu-item>
|
||||
<a-menu-item key="download">整站下载</a-menu-item>
|
||||
<a-menu-item key="record">仿站记录</a-menu-item>
|
||||
</a-sub-menu>
|
||||
</a-menu>
|
||||
</a-layout-sider>
|
||||
|
||||
288
frontend/app/pages/site/download.vue
Normal file
288
frontend/app/pages/site/download.vue
Normal file
@@ -0,0 +1,288 @@
|
||||
<template>
|
||||
<div>
|
||||
<a-breadcrumb style="margin: 10px 0">
|
||||
<a-breadcrumb-item>仿站</a-breadcrumb-item>
|
||||
<a-breadcrumb-item>整站下载</a-breadcrumb-item>
|
||||
</a-breadcrumb>
|
||||
<div class="google-like-page">
|
||||
<!-- 主要内容区域 -->
|
||||
<div class="main-content">
|
||||
<!-- Logo区域 -->
|
||||
<div class="logo-container" :class="{ 'logo-small': isSearching }">
|
||||
<h1 class="logo">Google</h1>
|
||||
</div>
|
||||
|
||||
<!-- 搜索框容器,使用动态类名控制动画 -->
|
||||
<div class="search-container" :class="{ 'search-top': isSearching }" ref="searchContainer">
|
||||
<div class="search-box">
|
||||
<a-input v-model:value="searchQuery" class="search-input" placeholder="输入一个网址或者包含网址的链接,点击回车"
|
||||
@press-enter="handleSearch" ref="searchInput">
|
||||
<template #prefix>
|
||||
<SearchOutlined />
|
||||
</template>
|
||||
</a-input>
|
||||
|
||||
<!-- <div class="search-buttons">
|
||||
<a-button type="primary" @click="handleSearch">Google 搜索</a-button>
|
||||
<a-button @click="handleFeelingLucky">手气不错</a-button>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 搜索结果区域 -->
|
||||
<div v-if="showResults" class="search-results">
|
||||
<h2>搜索结果</h2>
|
||||
<p>这是搜索结果区域...</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { SearchOutlined, MenuOutlined } from '@ant-design/icons-vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
SearchOutlined,
|
||||
MenuOutlined
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
searchQuery: '',
|
||||
isSearching: false,
|
||||
showResults: false
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
async handleSearch() {
|
||||
if (!this.searchQuery.trim()) return;
|
||||
|
||||
// 触发搜索状态
|
||||
this.isSearching = true;
|
||||
|
||||
// 等待下一个 tick 确保 DOM 已更新
|
||||
await this.$nextTick();
|
||||
|
||||
// 添加动画类
|
||||
if (this.$refs.searchContainer) {
|
||||
this.$refs.searchContainer.classList.add('animating');
|
||||
|
||||
// 动画结束后显示结果
|
||||
setTimeout(() => {
|
||||
if (this.$refs.searchContainer) {
|
||||
this.$refs.searchContainer.classList.remove('animating');
|
||||
}
|
||||
this.showResults = true;
|
||||
|
||||
// 可选:滚动到顶部
|
||||
window.scrollTo({ top: 0, behavior: 'smooth' });
|
||||
}, 500); // 匹配 CSS 动画时长
|
||||
}
|
||||
},
|
||||
handleFeelingLucky() {
|
||||
// 手气不错功能
|
||||
window.open('https://www.google.com/doodles', '_blank');
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.google-like-page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: calc(100vh - 154px);
|
||||
background-color: #fff;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: 15px 20px;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
text-decoration: none;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.apps-button {
|
||||
color: #5f6368;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
margin-top: 60px;
|
||||
/* 为顶部导航留出空间 */
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
margin-bottom: 30px;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 5rem;
|
||||
font-weight: 400;
|
||||
color: #4285f4;
|
||||
margin: 0;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
.logo-small .logo {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.search-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
transition: all 0.5s ease;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.search-container.animating {
|
||||
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.search-top {
|
||||
position: fixed;
|
||||
top: 180px;
|
||||
z-index: 999;
|
||||
max-width: 500px;
|
||||
transform: translateX(-50%);
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
width: 100%;
|
||||
height: 44px;
|
||||
border-radius: 24px;
|
||||
padding: 0 20px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.search-input :deep(.ant-input) {
|
||||
border-radius: 24px;
|
||||
height: 44px;
|
||||
border: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.search-input :deep(.ant-input):focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.search-buttons {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.search-buttons .ant-btn {
|
||||
background-color: #f8f9fa;
|
||||
border: 1px solid #f8f9fa;
|
||||
border-radius: 4px;
|
||||
color: #3c4043;
|
||||
font-size: 14px;
|
||||
padding: 0 16px;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.search-buttons .ant-btn-primary {
|
||||
background-color: #f8f9fa;
|
||||
border-color: #f8f9fa;
|
||||
color: #3c4043;
|
||||
}
|
||||
|
||||
.search-buttons .ant-btn-primary:hover {
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
background-color: #f8f9fa;
|
||||
border: 1px solid #dadce0;
|
||||
color: #202124;
|
||||
}
|
||||
|
||||
.search-results {
|
||||
margin-top: 50px;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background: #f2f2f2;
|
||||
border-top: 1px solid #e4e4e4;
|
||||
padding: 15px 20px;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.footer-links a {
|
||||
text-decoration: none;
|
||||
color: #5f6368;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footer-links a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 768px) {
|
||||
.logo {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.logo-small .logo {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.search-container {
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
.search-top {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.search-buttons {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.search-buttons .ant-btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
5
frontend/app/pages/site/record.vue
Normal file
5
frontend/app/pages/site/record.vue
Normal file
@@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<div>1</div>
|
||||
</template>
|
||||
<script>
|
||||
</script>
|
||||
@@ -1,5 +1,14 @@
|
||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
app: {
|
||||
head: {
|
||||
title: '仿站小工具',
|
||||
meta: [
|
||||
{ name: 'description', content: '这是我的 Nuxt4 应用默认描述' }
|
||||
]
|
||||
},
|
||||
baseURL: './' // 确保相对路径,方便打包到 Wails
|
||||
},
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: true },
|
||||
ssr: false, // 关闭 SSR,改为 CSR
|
||||
@@ -9,9 +18,6 @@ export default defineNuxtConfig({
|
||||
publicDir: './dist' // 相对 Nuxt3 项目根目录的路径
|
||||
}
|
||||
},
|
||||
app: {
|
||||
baseURL: './' // 确保相对路径,方便打包到 Wails
|
||||
},
|
||||
plugins: [
|
||||
'~/plugins/ant-design-vue',
|
||||
],
|
||||
|
||||
@@ -16,5 +16,8 @@
|
||||
"nuxt": "^4.1.2",
|
||||
"vue": "^3.5.21",
|
||||
"vue-router": "^4.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"sass-embedded": "^1.93.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@ import (
|
||||
|
||||
type SiteService struct {
|
||||
BaseDomain string
|
||||
Port string
|
||||
}
|
||||
|
||||
type RequestParams struct {
|
||||
@@ -36,9 +37,10 @@ func (s SiteService) GetAllResources(rawURL string) ([]RequestParams, []string)
|
||||
host := parsed.Hostname()
|
||||
if parsed.Port() != "" {
|
||||
host += parsed.Port()
|
||||
s.Port = parsed.Port()
|
||||
}
|
||||
obj := Browser.GetBrowser(host, &libs.Fingerprint{})
|
||||
s.BaseDomain = host
|
||||
s.BaseDomain = parsed.Hostname()
|
||||
ActiveHref["https://"+host] = struct{}{}
|
||||
// 进入主站
|
||||
// browser := obj.Browser
|
||||
@@ -171,5 +173,27 @@ func deduplicationRequest(list []RequestParams) []RequestParams {
|
||||
newList = append(newList, v)
|
||||
}
|
||||
}
|
||||
|
||||
return newList
|
||||
}
|
||||
|
||||
func (s SiteService) DeduplicationRequestByUrl(list []RequestParams) []RequestParams {
|
||||
var newList []RequestParams
|
||||
for _, v := range list {
|
||||
is := true
|
||||
u, _ := url.Parse(v.URL)
|
||||
u.RawQuery = ""
|
||||
for _, l := range newList {
|
||||
ur, _ := url.Parse(l.URL)
|
||||
ur.RawQuery = ""
|
||||
if u.String() == ur.String() && l.Type == v.Type {
|
||||
is = false
|
||||
}
|
||||
}
|
||||
if is {
|
||||
newList = append(newList, v)
|
||||
}
|
||||
}
|
||||
|
||||
return newList
|
||||
}
|
||||
|
||||
117
utils/file.go
Normal file
117
utils/file.go
Normal file
@@ -0,0 +1,117 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"go-site-clone/config"
|
||||
"io"
|
||||
"log"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
"path"
|
||||
"path/filepath"
|
||||
)
|
||||
|
||||
type File struct{}
|
||||
|
||||
func (*File) Download(uri string) string {
|
||||
// 解析文件链接及 路径
|
||||
u, err := url.Parse(uri)
|
||||
if err != nil {
|
||||
return ""
|
||||
}
|
||||
host := u.Hostname()
|
||||
if u.Port() != "" {
|
||||
host += u.Port()
|
||||
}
|
||||
// 获取路径部分
|
||||
filePath := u.Path
|
||||
appConfig, _ := config.LoadConfig()
|
||||
fp := filepath.Join(appConfig.SiteFileDir, host, filePath)
|
||||
// 获取文件名
|
||||
// fileName := path.Base(filePath)
|
||||
log.Println("开始下载:", uri)
|
||||
resp, err := http.Get(uri)
|
||||
if err != nil {
|
||||
fmt.Println("下载失败:", err)
|
||||
return ""
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
// 创建本地文件
|
||||
outFile, err := CreateFileWithDirs(fp)
|
||||
if err != nil {
|
||||
fmt.Println("文件创建失败:", err)
|
||||
return ""
|
||||
}
|
||||
defer outFile.Close()
|
||||
// 将响应内容写入文件
|
||||
_, err = io.Copy(outFile, resp.Body)
|
||||
if err != nil {
|
||||
fmt.Println("写入失败:", err)
|
||||
return ""
|
||||
}
|
||||
fmt.Println("下载完成:", fp)
|
||||
return fp
|
||||
}
|
||||
|
||||
func CreateFileWithDirs(filePath string) (*os.File, error) {
|
||||
// 取出目录部分
|
||||
dir := filepath.Dir(filePath)
|
||||
|
||||
// 确保目录存在(递归创建)
|
||||
if err := os.MkdirAll(dir, os.ModePerm); err != nil {
|
||||
return nil, fmt.Errorf("创建目录失败: %w", err)
|
||||
}
|
||||
|
||||
// 创建文件(如果已存在会清空)
|
||||
f, err := os.Create(filePath)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("创建文件失败: %w", err)
|
||||
}
|
||||
|
||||
return f, nil
|
||||
}
|
||||
|
||||
func (*File) HTMLDownload(uri string) string {
|
||||
// 解析文件链接及 路径
|
||||
u, err := url.Parse(uri)
|
||||
if err != nil {
|
||||
return ""
|
||||
}
|
||||
host := u.Hostname()
|
||||
if u.Port() != "" {
|
||||
host += u.Port()
|
||||
}
|
||||
// 获取路径部分
|
||||
filePath := u.Path
|
||||
appConfig, _ := config.LoadConfig()
|
||||
// 获取文件名
|
||||
fileName := path.Base(filePath)
|
||||
if fileName == "/" || filePath == "" {
|
||||
filePath = filePath + "/index.html"
|
||||
}
|
||||
fp := filepath.Join(appConfig.SiteFileDir, host, filePath)
|
||||
|
||||
log.Println("开始下载:", uri)
|
||||
resp, err := http.Get(uri)
|
||||
if err != nil {
|
||||
fmt.Println("下载失败:", err)
|
||||
return ""
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
// 创建本地文件
|
||||
outFile, err := CreateFileWithDirs(fp)
|
||||
if err != nil {
|
||||
fmt.Println("文件创建失败:", err)
|
||||
return ""
|
||||
}
|
||||
defer outFile.Close()
|
||||
// 将响应内容写入文件
|
||||
_, err = io.Copy(outFile, resp.Body)
|
||||
if err != nil {
|
||||
fmt.Println("写入失败:", err)
|
||||
return ""
|
||||
}
|
||||
fmt.Println("下载完成:", fp)
|
||||
return fp
|
||||
}
|
||||
Reference in New Issue
Block a user