-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocx.go
More file actions
250 lines (220 loc) · 5.98 KB
/
docx.go
File metadata and controls
250 lines (220 loc) · 5.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package docreader
import (
"archive/zip"
"encoding/xml"
"io"
"strings"
)
// DocxReader 用于读取 .docx 文件
type DocxReader struct{}
// WordDocument 表示 Word 文档的 XML 结构
type WordDocument struct {
XMLName xml.Name `xml:"document"`
Body struct {
Paragraphs []struct {
Runs []struct {
Text string `xml:"t"`
} `xml:"r"`
} `xml:"p"`
Tables []struct {
Rows []struct {
Cells []struct {
Paragraphs []struct {
Runs []struct {
Text string `xml:"t"`
} `xml:"r"`
} `xml:"p"`
} `xml:"tc"`
} `xml:"tr"`
} `xml:"tbl"`
} `xml:"body"`
}
// CoreProperties 表示文档核心属性
type CoreProperties struct {
XMLName xml.Name `xml:"coreProperties"`
Title string `xml:"title"`
Subject string `xml:"subject"`
Creator string `xml:"creator"`
Description string `xml:"description"`
Created string `xml:"created"`
Modified string `xml:"modified"`
}
// ReadText 读取 DOCX 文件的文本内容
func (r *DocxReader) ReadText(filePath string) (string, error) {
// 打开 zip 文件
zipReader, err := zip.OpenReader(filePath)
if err != nil {
return "", WrapError("DocxReader.ReadText", filePath, ErrFileOpen)
}
defer zipReader.Close()
// 查找并读取 document.xml
var documentXML []byte
for _, file := range zipReader.File {
if file.Name == "word/document.xml" {
rc, err := file.Open()
if err != nil {
return "", WrapError("DocxReader.ReadText", filePath, ErrFileRead)
}
documentXML, err = io.ReadAll(rc)
rc.Close()
if err != nil {
return "", WrapError("DocxReader.ReadText", filePath, ErrFileRead)
}
break
}
}
if documentXML == nil {
return "", WrapError("DocxReader.ReadText", filePath, ErrInvalidFormat)
}
// 解析 XML
var doc WordDocument
if err := xml.Unmarshal(documentXML, &doc); err != nil {
return "", WrapError("DocxReader.ReadText", filePath, ErrFileParse)
}
// 提取文本
var builder strings.Builder
// 提取段落文本
for _, para := range doc.Body.Paragraphs {
for _, run := range para.Runs {
builder.WriteString(run.Text)
}
builder.WriteString("\n")
}
// 提取表格文本
for _, table := range doc.Body.Tables {
for _, row := range table.Rows {
for _, cell := range row.Cells {
for _, para := range cell.Paragraphs {
for _, run := range para.Runs {
builder.WriteString(run.Text)
builder.WriteString(" ")
}
}
builder.WriteString("\t")
}
builder.WriteString("\n")
}
}
return builder.String(), nil
}
// GetMetadata 获取 DOCX 文件的元数据
func (r *DocxReader) GetMetadata(filePath string) (map[string]string, error) {
zipReader, err := zip.OpenReader(filePath)
if err != nil {
return nil, WrapError("DocxReader.GetMetadata", filePath, ErrFileOpen)
}
defer zipReader.Close()
metadata := make(map[string]string)
// 读取核心属性
for _, file := range zipReader.File {
if file.Name == "docProps/core.xml" {
rc, err := file.Open()
if err != nil {
continue
}
data, err := io.ReadAll(rc)
rc.Close()
if err != nil {
continue
}
var props CoreProperties
if err := xml.Unmarshal(data, &props); err == nil {
metadata["title"] = props.Title
metadata["subject"] = props.Subject
metadata["creator"] = props.Creator
metadata["description"] = props.Description
metadata["created"] = props.Created
metadata["modified"] = props.Modified
}
break
}
}
return metadata, nil
}
// ReadWithConfig 根据配置读取 DOCX 文件,返回结构化结果
// DOCX 文件以段落为单位,将每个段落视为一行
func (r *DocxReader) ReadWithConfig(filePath string, config *ReadConfig) (*DocumentResult, error) {
zipReader, err := zip.OpenReader(filePath)
if err != nil {
return nil, WrapError("DocxReader.ReadWithConfig", filePath, ErrFileOpen)
}
defer zipReader.Close()
// 查找并读取 document.xml
var documentXML []byte
for _, file := range zipReader.File {
if file.Name == "word/document.xml" {
rc, err := file.Open()
if err != nil {
return nil, WrapError("DocxReader.ReadWithConfig", filePath, ErrFileRead)
}
documentXML, err = io.ReadAll(rc)
rc.Close()
if err != nil {
return nil, WrapError("DocxReader.ReadWithConfig", filePath, ErrFileRead)
}
break
}
}
if documentXML == nil {
return nil, WrapError("DocxReader.ReadWithConfig", filePath, ErrInvalidFormat)
}
// 解析 XML
var doc WordDocument
if err := xml.Unmarshal(documentXML, &doc); err != nil {
return nil, WrapError("DocxReader.ReadWithConfig", filePath, ErrFileParse)
}
result := &DocumentResult{
FilePath: filePath,
TotalPages: 1, // DOCX 作为单页处理
Pages: make([]PageContent, 0),
Metadata: make(map[string]string),
}
// 获取元数据
metadata, _ := r.GetMetadata(filePath)
result.Metadata = metadata
// 提取所有段落和表格行
lines := make([]string, 0)
// 提取段落文本
for _, para := range doc.Body.Paragraphs {
var lineBuilder strings.Builder
for _, run := range para.Runs {
lineBuilder.WriteString(run.Text)
}
line := lineBuilder.String()
if line != "" {
lines = append(lines, line)
}
}
// 提取表格文本
for _, table := range doc.Body.Tables {
for _, row := range table.Rows {
var rowBuilder strings.Builder
for cellIndex, cell := range row.Cells {
if cellIndex > 0 {
rowBuilder.WriteString("\t")
}
for _, para := range cell.Paragraphs {
for _, run := range para.Runs {
rowBuilder.WriteString(run.Text)
rowBuilder.WriteString(" ")
}
}
}
line := strings.TrimSpace(rowBuilder.String())
if line != "" {
lines = append(lines, line)
}
}
}
// 根据配置筛选行
filteredLines := filterLinesForSinglePage(lines, config)
pageContent := PageContent{
PageNumber: 0,
Lines: filteredLines,
TotalLines: len(filteredLines),
}
result.Pages = append(result.Pages, pageContent)
result.TotalLines = len(filteredLines)
result.Content = strings.Join(filteredLines, "\n")
return result, nil
}