Files
fantaibao-crawler-desktop/src/main/java/com/fantaibao/page/PlatformSelectionView.java
wangchunxiang 0a810aadb0 feat(service): 抽离公共爬虫逻辑到抽象基类
将抖音和美团爬虫中共用的 cookie 处理与页面关闭逻辑,抽取至 `AbstractFtbCrawlNetBase` 抽象类中,提升代码复用性。

- 新增抽象基类 `AbstractFtbCrawlNetBase`,包含:
  - `processCookie`: 统一处理 cookie 提取与上传逻辑 - `showSuccessAlertAndClose`: 显示成功提示弹窗并关闭页面
- 抖音与美团服务类继承该抽象类,调用父类方法重构原有逻辑
- 引入日志记录替代原有 `System.out.println` 输出方式
- 增加原子布尔变量控制爬取流程结束状态
- 登录页面地址配置项添加至 `GlobalConfig`与 `LoginUserVO` 中
- UI 页面标题文案从“请选择爬虫平台”调整为“请选择采集平台”
2025-10-14 14:56:37 +08:00

134 lines
4.5 KiB
Java

package com.fantaibao.page;
import com.alibaba.fastjson.JSON;
import com.fantaibao.base.FtbCrawlNetBase;
import com.fantaibao.config.GlobalConfig;
import com.fantaibao.config.SpringContext;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class PlatformSelectionView {
private Stage primaryStage;
public PlatformSelectionView(Stage primaryStage) {
this.primaryStage = primaryStage;
initialize();
}
private void initialize() {
// 设置窗口标题
primaryStage.setTitle("中差评采集工具");
// 主容器
VBox root = new VBox();
root.setAlignment(Pos.CENTER);
root.setSpacing(20);
root.setPadding(new Insets(40));
// 标题
Label titleLabel = new Label("请选择采集平台");
titleLabel.setStyle("-fx-font-size: 18px; -fx-font-weight: bold;");
// 描述信息
Label infoLabel = new Label("连接您的电商平台,智能化采集中差评数据");
infoLabel.setStyle("-fx-font-size: 14px;");
// 平台选项容器
HBox platformOptions = new HBox();
platformOptions.setAlignment(Pos.CENTER);
platformOptions.setSpacing(20);
// 美团开店宝选项
VBox meituanOption = createPlatformMtOption(
"美团开店宝",
"https://placehold.co/64x64?text=MT&bg=FFD700&fg=333",
"#FFD700"
);
// 抖音来客选项
VBox douyinOption = createPlatformDyOption(
"抖音来客",
"https://placehold.co/64x64?text=DY&bg=4A90E2&fg=FFF",
"#4A90E2"
);
platformOptions.getChildren().addAll(meituanOption, douyinOption);
// 添加组件到主容器
root.getChildren().addAll(titleLabel, infoLabel, platformOptions);
// 设置场景并显示窗口
Scene scene = new Scene(root, 800, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
private VBox createPlatformMtOption(String title, String imageUrl, String buttonColor) {
VBox option = new VBox();
option.setAlignment(Pos.CENTER);
option.setSpacing(10);
option.setPadding(new Insets(20));
option.setStyle("-fx-background-color: white; -fx-border-radius: 8px; -fx-padding: 20px;");
ImageView imageView = new ImageView(new Image(imageUrl));
imageView.setFitWidth(64);
imageView.setFitHeight(64);
Label titleLabel = new Label(title);
titleLabel.setStyle("-fx-font-size: 16px; -fx-font-weight: bold;");
Button connectButton = new Button("立即连接");
connectButton.setCursor(javafx.scene.Cursor.HAND);
connectButton.setStyle("-fx-background-color: " + buttonColor + "; -fx-text-fill: white; -fx-padding: 10px 20px; -fx-border-radius: 4px;");
connectButton.setOnAction(event -> {
FtbCrawlNetBase ftbCrawlNetMt = SpringContext.getBean("ftbCrawlNetMt");
ftbCrawlNetMt.executeCookieIntercept();
});
option.getChildren().addAll(imageView, titleLabel, connectButton);
return option;
}
private VBox createPlatformDyOption(String title, String imageUrl, String buttonColor) {
VBox option = new VBox();
option.setAlignment(Pos.CENTER);
option.setSpacing(10);
option.setPadding(new Insets(20));
option.setStyle("-fx-background-color: white; -fx-border-radius: 8px; -fx-padding: 20px;");
ImageView imageView = new ImageView(new Image(imageUrl));
imageView.setFitWidth(64);
imageView.setFitHeight(64);
Label titleLabel = new Label(title);
titleLabel.setStyle("-fx-font-size: 16px; -fx-font-weight: bold;");
Button connectButton = new Button("立即连接");
connectButton.setCursor(javafx.scene.Cursor.HAND);
connectButton.setStyle("-fx-background-color: " + buttonColor + "; -fx-text-fill: white; -fx-padding: 10px 20px; -fx-border-radius: 4px;");
connectButton.setOnAction(event -> {
FtbCrawlNetBase ftbCrawlNetMt = SpringContext.getBean("ftbCrawlNetDy");
ftbCrawlNetMt.executeCookieIntercept();
});
option.getChildren().addAll(imageView, titleLabel, connectButton);
return option;
}
}