mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 05:56:46 +08:00

主要更改: - 统一包目录命名为小写(Core→core, Plugins→plugins, WebScan→webscan) - 更新所有import路径以符合Go语言命名规范 - 重构parsers模块,简化复杂的工厂模式(从2000+行优化至400行) - 移除i18n兼容层,统一使用模块化i18n包 - 简化Core/Manager.go架构(从591行优化至133行) - 清理冗余文件:备份文件、构建产物、测试配置、重复图片 - 移除TestDocker测试环境配置目录 - 解决变量命名冲突问题 性能优化: - 减少代码复杂度60-70% - 提升构建和运行性能 - 保持完整功能兼容性 代码质量: - 符合Go语言最佳实践 - 统一命名规范 - 优化项目结构
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package core
|
||
|
||
import (
|
||
"fmt"
|
||
"github.com/shadow1ng/fscan/common"
|
||
"strings"
|
||
)
|
||
|
||
// 插件列表解析和验证
|
||
func parsePluginList(pluginStr string) []string {
|
||
if pluginStr == "" {
|
||
return nil
|
||
}
|
||
|
||
// 按逗号分割并去除每个插件名称两端的空白
|
||
plugins := strings.Split(pluginStr, ",")
|
||
for i, p := range plugins {
|
||
plugins[i] = strings.TrimSpace(p)
|
||
}
|
||
|
||
// 过滤空字符串
|
||
var result []string
|
||
for _, p := range plugins {
|
||
if p != "" {
|
||
result = append(result, p)
|
||
}
|
||
}
|
||
|
||
return result
|
||
}
|
||
|
||
// 验证扫描插件的有效性
|
||
func validateScanPlugins() error {
|
||
// 如果未指定扫描模式或使用All模式,则无需验证
|
||
if common.ScanMode == "" || common.ScanMode == "all" {
|
||
return nil
|
||
}
|
||
|
||
// 解析插件列表
|
||
plugins := parsePluginList(common.ScanMode)
|
||
if len(plugins) == 0 {
|
||
plugins = []string{common.ScanMode}
|
||
}
|
||
|
||
// 验证每个插件是否有效
|
||
var invalidPlugins []string
|
||
for _, plugin := range plugins {
|
||
if _, exists := common.PluginManager[plugin]; !exists {
|
||
invalidPlugins = append(invalidPlugins, plugin)
|
||
}
|
||
}
|
||
|
||
if len(invalidPlugins) > 0 {
|
||
return fmt.Errorf("无效的插件: %s", strings.Join(invalidPlugins, ", "))
|
||
}
|
||
|
||
return nil
|
||
}
|