mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-13 21:02:44 +08:00
refactor: 精简代码
This commit is contained in:
parent
ac68df70f7
commit
f3320fbc77
297
Common/Output.go
297
Common/Output.go
@ -17,17 +17,18 @@ var ResultOutput *OutputManager
|
|||||||
// OutputManager 输出管理器结构体
|
// OutputManager 输出管理器结构体
|
||||||
type OutputManager struct {
|
type OutputManager struct {
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
outputPath string
|
outputPath string // 输出文件路径
|
||||||
outputFormat string
|
outputFormat string // 输出格式(txt/json/csv)
|
||||||
file *os.File
|
file *os.File // 文件句柄
|
||||||
csvWriter *csv.Writer
|
csvWriter *csv.Writer // CSV写入器
|
||||||
jsonEncoder *json.Encoder
|
jsonEncoder *json.Encoder // JSON编码器
|
||||||
isInitialized bool
|
isInitialized bool // 是否已初始化
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResultType 定义结果类型
|
// ResultType 定义结果类型的枚举
|
||||||
type ResultType string
|
type ResultType string
|
||||||
|
|
||||||
|
// 结果类型常量
|
||||||
const (
|
const (
|
||||||
HOST ResultType = "HOST" // 主机存活
|
HOST ResultType = "HOST" // 主机存活
|
||||||
PORT ResultType = "PORT" // 端口开放
|
PORT ResultType = "PORT" // 端口开放
|
||||||
@ -44,141 +45,134 @@ type ScanResult struct {
|
|||||||
Details map[string]interface{} `json:"details"` // 详细信息
|
Details map[string]interface{} `json:"details"` // 详细信息
|
||||||
}
|
}
|
||||||
|
|
||||||
// InitOutput 初始化输出系统
|
// InitOutput 初始化输出系统,创建文件并设置相应格式的写入器
|
||||||
func InitOutput() error {
|
func InitOutput() error {
|
||||||
LogDebug(GetText("output_init_start"))
|
LogDebug(GetText("output_init_start"))
|
||||||
|
|
||||||
// 验证输出格式
|
// 验证输出格式
|
||||||
switch OutputFormat {
|
if OutputFormat != "txt" && OutputFormat != "json" && OutputFormat != "csv" {
|
||||||
case "txt", "json", "csv":
|
|
||||||
// 有效的格式
|
|
||||||
default:
|
|
||||||
return fmt.Errorf(GetText("output_format_invalid"), OutputFormat)
|
return fmt.Errorf(GetText("output_format_invalid"), OutputFormat)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 验证输出路径
|
// 验证并创建输出路径
|
||||||
if Outputfile == "" {
|
if Outputfile == "" {
|
||||||
return fmt.Errorf(GetText("output_path_empty"))
|
return fmt.Errorf(GetText("output_path_empty"))
|
||||||
}
|
}
|
||||||
|
|
||||||
dir := filepath.Dir(Outputfile)
|
// 确保目录存在
|
||||||
if err := os.MkdirAll(dir, 0755); err != nil {
|
if err := os.MkdirAll(filepath.Dir(Outputfile), 0755); err != nil {
|
||||||
LogDebug(GetText("output_create_dir_failed", err))
|
LogDebug(GetText("output_create_dir_failed", err))
|
||||||
return fmt.Errorf(GetText("output_create_dir_failed", err))
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// API模式下特殊处理
|
||||||
if ApiAddr != "" {
|
if ApiAddr != "" {
|
||||||
OutputFormat = "csv"
|
OutputFormat = "csv"
|
||||||
Outputfile = filepath.Join(dir, "fscanapi.csv")
|
Outputfile = filepath.Join(filepath.Dir(Outputfile), "fscanapi.csv")
|
||||||
Num = 0
|
Num, End = 0, 0
|
||||||
End = 0
|
// 删除已存在的文件
|
||||||
if _, err := os.Stat(Outputfile); err == nil {
|
if _, err := os.Stat(Outputfile); err == nil {
|
||||||
if err := os.Remove(Outputfile); err != nil {
|
os.Remove(Outputfile)
|
||||||
return fmt.Errorf(GetText("output_file_remove_failed", err))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
manager := &OutputManager{
|
// 创建管理器
|
||||||
|
ResultOutput = &OutputManager{
|
||||||
outputPath: Outputfile,
|
outputPath: Outputfile,
|
||||||
outputFormat: OutputFormat,
|
outputFormat: OutputFormat,
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := manager.initialize(); err != nil {
|
// 创建并打开文件
|
||||||
LogDebug(GetText("output_init_failed", err))
|
file, err := os.OpenFile(Outputfile, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644)
|
||||||
return fmt.Errorf(GetText("output_init_failed", err))
|
if err != nil {
|
||||||
|
LogDebug(GetText("output_open_file_failed", err))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
ResultOutput.file = file
|
||||||
|
|
||||||
|
// 根据格式初始化相应的写入器
|
||||||
|
switch OutputFormat {
|
||||||
|
case "csv":
|
||||||
|
ResultOutput.csvWriter = csv.NewWriter(file)
|
||||||
|
// 写入CSV头部
|
||||||
|
if err := ResultOutput.csvWriter.Write([]string{"Time", "Type", "Target", "Status", "Details"}); err != nil {
|
||||||
|
file.Close()
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
ResultOutput.csvWriter.Flush()
|
||||||
|
|
||||||
|
case "json":
|
||||||
|
ResultOutput.jsonEncoder = json.NewEncoder(file)
|
||||||
|
ResultOutput.jsonEncoder.SetIndent("", " ")
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultOutput = manager
|
ResultOutput.isInitialized = true
|
||||||
LogDebug(GetText("output_init_success"))
|
LogDebug(GetText("output_init_success"))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (om *OutputManager) initialize() error {
|
// SaveResult 保存扫描结果到文件
|
||||||
om.mu.Lock()
|
|
||||||
defer om.mu.Unlock()
|
|
||||||
|
|
||||||
if om.isInitialized {
|
|
||||||
LogDebug(GetText("output_already_init"))
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
LogDebug(GetText("output_opening_file", om.outputPath))
|
|
||||||
file, err := os.OpenFile(om.outputPath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644)
|
|
||||||
if err != nil {
|
|
||||||
LogDebug(GetText("output_open_file_failed", err))
|
|
||||||
return fmt.Errorf(GetText("output_open_file_failed", err))
|
|
||||||
}
|
|
||||||
om.file = file
|
|
||||||
|
|
||||||
switch om.outputFormat {
|
|
||||||
case "csv":
|
|
||||||
LogDebug(GetText("output_init_csv"))
|
|
||||||
om.csvWriter = csv.NewWriter(file)
|
|
||||||
headers := []string{"Time", "Type", "Target", "Status", "Details"}
|
|
||||||
if err := om.csvWriter.Write(headers); err != nil {
|
|
||||||
LogDebug(GetText("output_write_csv_header_failed", err))
|
|
||||||
file.Close()
|
|
||||||
return fmt.Errorf(GetText("output_write_csv_header_failed", err))
|
|
||||||
}
|
|
||||||
om.csvWriter.Flush()
|
|
||||||
case "json":
|
|
||||||
LogDebug(GetText("output_init_json"))
|
|
||||||
om.jsonEncoder = json.NewEncoder(file)
|
|
||||||
om.jsonEncoder.SetIndent("", " ")
|
|
||||||
case "txt":
|
|
||||||
LogDebug(GetText("output_init_txt"))
|
|
||||||
default:
|
|
||||||
LogDebug(GetText("output_format_invalid", om.outputFormat))
|
|
||||||
}
|
|
||||||
|
|
||||||
om.isInitialized = true
|
|
||||||
LogDebug(GetText("output_init_complete"))
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SaveResult 保存扫描结果
|
|
||||||
func SaveResult(result *ScanResult) error {
|
func SaveResult(result *ScanResult) error {
|
||||||
if ResultOutput == nil {
|
// 验证输出管理器是否初始化
|
||||||
|
if ResultOutput == nil || !ResultOutput.isInitialized {
|
||||||
LogDebug(GetText("output_not_init"))
|
LogDebug(GetText("output_not_init"))
|
||||||
return fmt.Errorf(GetText("output_not_init"))
|
return fmt.Errorf(GetText("output_not_init"))
|
||||||
}
|
}
|
||||||
|
|
||||||
LogDebug(GetText("output_saving_result", result.Type, result.Target))
|
LogDebug(GetText("output_saving_result", result.Type, result.Target))
|
||||||
return ResultOutput.saveResult(result)
|
|
||||||
}
|
|
||||||
func GetResults() ([]*ScanResult, error) {
|
|
||||||
if ResultOutput == nil {
|
|
||||||
return nil, fmt.Errorf(GetText("output_not_init"))
|
|
||||||
}
|
|
||||||
|
|
||||||
if ResultOutput.outputFormat == "csv" {
|
ResultOutput.mu.Lock()
|
||||||
return ResultOutput.getResult()
|
defer ResultOutput.mu.Unlock()
|
||||||
}
|
|
||||||
// 其他格式尚未实现读取支持
|
|
||||||
return nil, fmt.Errorf(GetText("output_format_read_not_supported"))
|
|
||||||
}
|
|
||||||
|
|
||||||
func (om *OutputManager) saveResult(result *ScanResult) error {
|
|
||||||
om.mu.Lock()
|
|
||||||
defer om.mu.Unlock()
|
|
||||||
|
|
||||||
if !om.isInitialized {
|
|
||||||
LogDebug(GetText("output_not_init"))
|
|
||||||
return fmt.Errorf(GetText("output_not_init"))
|
|
||||||
}
|
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
switch om.outputFormat {
|
|
||||||
|
// 根据不同格式写入结果
|
||||||
|
switch ResultOutput.outputFormat {
|
||||||
case "txt":
|
case "txt":
|
||||||
err = om.writeTxt(result)
|
// 格式化详情为键值对字符串
|
||||||
|
var details string
|
||||||
|
if len(result.Details) > 0 {
|
||||||
|
pairs := make([]string, 0, len(result.Details))
|
||||||
|
for k, v := range result.Details {
|
||||||
|
pairs = append(pairs, fmt.Sprintf("%s=%v", k, v))
|
||||||
|
}
|
||||||
|
details = strings.Join(pairs, ", ")
|
||||||
|
}
|
||||||
|
|
||||||
|
// 写入文本格式
|
||||||
|
txt := GetText("output_txt_format",
|
||||||
|
result.Time.Format("2006-01-02 15:04:05"),
|
||||||
|
result.Type,
|
||||||
|
result.Target,
|
||||||
|
result.Status,
|
||||||
|
details,
|
||||||
|
) + "\n"
|
||||||
|
_, err = ResultOutput.file.WriteString(txt)
|
||||||
|
|
||||||
case "json":
|
case "json":
|
||||||
err = om.writeJson(result)
|
// 写入JSON格式
|
||||||
|
err = ResultOutput.jsonEncoder.Encode(result)
|
||||||
|
|
||||||
case "csv":
|
case "csv":
|
||||||
err = om.writeCsv(result)
|
// 将详情序列化为JSON字符串
|
||||||
default:
|
details, jsonErr := json.Marshal(result.Details)
|
||||||
LogDebug(GetText("output_format_invalid", om.outputFormat))
|
if jsonErr != nil {
|
||||||
return fmt.Errorf(GetText("output_format_invalid", om.outputFormat))
|
details = []byte("{}")
|
||||||
|
}
|
||||||
|
|
||||||
|
// 写入CSV记录
|
||||||
|
record := []string{
|
||||||
|
result.Time.Format("2006-01-02 15:04:05"),
|
||||||
|
string(result.Type),
|
||||||
|
result.Target,
|
||||||
|
result.Status,
|
||||||
|
string(details),
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = ResultOutput.csvWriter.Write(record); err == nil {
|
||||||
|
ResultOutput.csvWriter.Flush()
|
||||||
|
err = ResultOutput.csvWriter.Error()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -188,134 +182,93 @@ func (om *OutputManager) saveResult(result *ScanResult) error {
|
|||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
func (om *OutputManager) getResult() ([]*ScanResult, error) {
|
|
||||||
om.mu.Lock()
|
|
||||||
defer om.mu.Unlock()
|
|
||||||
|
|
||||||
if !om.isInitialized {
|
// GetResults 从CSV文件中读取已保存的结果
|
||||||
LogDebug(GetText("output_not_init"))
|
func GetResults() ([]*ScanResult, error) {
|
||||||
|
// 验证输出管理器是否初始化且为CSV格式
|
||||||
|
if ResultOutput == nil || !ResultOutput.isInitialized {
|
||||||
return nil, fmt.Errorf(GetText("output_not_init"))
|
return nil, fmt.Errorf(GetText("output_not_init"))
|
||||||
}
|
}
|
||||||
|
|
||||||
file, err := os.Open(om.outputPath)
|
if ResultOutput.outputFormat != "csv" {
|
||||||
|
return nil, fmt.Errorf(GetText("output_format_read_not_supported"))
|
||||||
|
}
|
||||||
|
|
||||||
|
ResultOutput.mu.Lock()
|
||||||
|
defer ResultOutput.mu.Unlock()
|
||||||
|
|
||||||
|
// 打开文件进行读取
|
||||||
|
file, err := os.Open(ResultOutput.outputPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
LogDebug(GetText("output_open_file_failed", err))
|
LogDebug(GetText("output_open_file_failed", err))
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
||||||
reader := csv.NewReader(file)
|
// 读取CSV记录
|
||||||
records, err := reader.ReadAll()
|
records, err := csv.NewReader(file).ReadAll()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
LogDebug(GetText("output_read_csv_failed", err))
|
LogDebug(GetText("output_read_csv_failed", err))
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 解析记录到结构体
|
||||||
var results []*ScanResult
|
var results []*ScanResult
|
||||||
for i, row := range records {
|
for i, row := range records {
|
||||||
// 跳过 CSV 头部
|
// 跳过CSV头部和不完整记录
|
||||||
if i == 0 {
|
if i == 0 || len(row) < 5 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if len(row) < 5 {
|
|
||||||
continue // 数据不完整
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// 解析时间
|
||||||
t, err := time.Parse("2006-01-02 15:04:05", row[0])
|
t, err := time.Parse("2006-01-02 15:04:05", row[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 解析详情JSON
|
||||||
var details map[string]interface{}
|
var details map[string]interface{}
|
||||||
if err := json.Unmarshal([]byte(row[4]), &details); err != nil {
|
if err := json.Unmarshal([]byte(row[4]), &details); err != nil {
|
||||||
details = make(map[string]interface{})
|
details = make(map[string]interface{})
|
||||||
}
|
}
|
||||||
|
|
||||||
result := &ScanResult{
|
// 创建结果对象
|
||||||
|
results = append(results, &ScanResult{
|
||||||
Time: t,
|
Time: t,
|
||||||
Type: ResultType(row[1]),
|
Type: ResultType(row[1]),
|
||||||
Target: row[2],
|
Target: row[2],
|
||||||
Status: row[3],
|
Status: row[3],
|
||||||
Details: details,
|
Details: details,
|
||||||
}
|
})
|
||||||
results = append(results, result)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LogDebug(GetText("output_read_csv_success", len(results)))
|
LogDebug(GetText("output_read_csv_success", len(results)))
|
||||||
return results, nil
|
return results, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (om *OutputManager) writeTxt(result *ScanResult) error {
|
|
||||||
// 格式化 Details 为键值对字符串
|
|
||||||
var details string
|
|
||||||
if len(result.Details) > 0 {
|
|
||||||
pairs := make([]string, 0, len(result.Details))
|
|
||||||
for k, v := range result.Details {
|
|
||||||
pairs = append(pairs, fmt.Sprintf("%s=%v", k, v))
|
|
||||||
}
|
|
||||||
details = strings.Join(pairs, ", ")
|
|
||||||
}
|
|
||||||
|
|
||||||
txt := GetText("output_txt_format",
|
|
||||||
result.Time.Format("2006-01-02 15:04:05"),
|
|
||||||
result.Type,
|
|
||||||
result.Target,
|
|
||||||
result.Status,
|
|
||||||
details,
|
|
||||||
) + "\n"
|
|
||||||
_, err := om.file.WriteString(txt)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (om *OutputManager) writeJson(result *ScanResult) error {
|
|
||||||
return om.jsonEncoder.Encode(result)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (om *OutputManager) writeCsv(result *ScanResult) error {
|
|
||||||
details, err := json.Marshal(result.Details)
|
|
||||||
if err != nil {
|
|
||||||
details = []byte("{}")
|
|
||||||
}
|
|
||||||
|
|
||||||
record := []string{
|
|
||||||
result.Time.Format("2006-01-02 15:04:05"),
|
|
||||||
string(result.Type),
|
|
||||||
result.Target,
|
|
||||||
result.Status,
|
|
||||||
string(details),
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := om.csvWriter.Write(record); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
om.csvWriter.Flush()
|
|
||||||
return om.csvWriter.Error()
|
|
||||||
}
|
|
||||||
|
|
||||||
// CloseOutput 关闭输出系统
|
// CloseOutput 关闭输出系统
|
||||||
func CloseOutput() error {
|
func CloseOutput() error {
|
||||||
if ResultOutput == nil {
|
// 验证是否需要关闭
|
||||||
|
if ResultOutput == nil || !ResultOutput.isInitialized {
|
||||||
LogDebug(GetText("output_no_need_close"))
|
LogDebug(GetText("output_no_need_close"))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
LogDebug(GetText("output_closing"))
|
LogDebug(GetText("output_closing"))
|
||||||
|
|
||||||
ResultOutput.mu.Lock()
|
ResultOutput.mu.Lock()
|
||||||
defer ResultOutput.mu.Unlock()
|
defer ResultOutput.mu.Unlock()
|
||||||
|
|
||||||
if !ResultOutput.isInitialized {
|
// CSV格式需要刷新缓冲
|
||||||
LogDebug(GetText("output_no_need_close"))
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
if ResultOutput.csvWriter != nil {
|
if ResultOutput.csvWriter != nil {
|
||||||
LogDebug(GetText("output_flush_csv"))
|
|
||||||
ResultOutput.csvWriter.Flush()
|
ResultOutput.csvWriter.Flush()
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := ResultOutput.file.Close(); err != nil {
|
// 关闭文件
|
||||||
|
err := ResultOutput.file.Close()
|
||||||
|
if err != nil {
|
||||||
LogDebug(GetText("output_close_failed", err))
|
LogDebug(GetText("output_close_failed", err))
|
||||||
return fmt.Errorf(GetText("output_close_failed", err))
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultOutput.isInitialized = false
|
ResultOutput.isInitialized = false
|
||||||
|
@ -533,18 +533,3 @@ func processHashValues() error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemoveDuplicate 对字符串切片进行去重
|
|
||||||
func RemoveDuplicate(old []string) []string {
|
|
||||||
temp := make(map[string]struct{})
|
|
||||||
var result []string
|
|
||||||
|
|
||||||
for _, item := range old {
|
|
||||||
if _, exists := temp[item]; !exists {
|
|
||||||
temp[item] = struct{}{}
|
|
||||||
result = append(result, item)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
15
Common/Utils.go
Normal file
15
Common/Utils.go
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package Common
|
||||||
|
|
||||||
|
func RemoveDuplicate(old []string) []string {
|
||||||
|
temp := make(map[string]struct{})
|
||||||
|
var result []string
|
||||||
|
|
||||||
|
for _, item := range old {
|
||||||
|
if _, exists := temp[item]; !exists {
|
||||||
|
temp[item] = struct{}{}
|
||||||
|
result = append(result, item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user