-
-
Notifications
You must be signed in to change notification settings - Fork 19.6k
/
Copy pathEpub.ts
202 lines (184 loc) · 7.26 KB
/
Epub.ts
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
import { omit } from 'lodash'
import { IDocument, ICommonObject, INode, INodeData, INodeParams } from '../../../src/Interface'
import { TextSplitter } from 'langchain/text_splitter'
import { getFileFromStorage, handleEscapeCharacters, INodeOutputsValue } from '../../../src'
import { EPubLoader } from '@langchain/community/document_loaders/fs/epub'
import * as fs from 'fs'
import * as path from 'path'
class Epub_DocumentLoaders implements INode {
label: string
name: string
version: number
description: string
type: string
icon: string
category: string
baseClasses: string[]
inputs: INodeParams[]
outputs: INodeOutputsValue[]
constructor() {
this.label = 'Epub File'
this.name = 'epubFile'
this.version = 1.0
this.type = 'Document'
this.icon = 'epub.svg'
this.category = 'Document Loaders'
this.description = 'Load data from EPUB files'
this.baseClasses = [this.type]
this.inputs = [
{
label: 'Epub File',
name: 'epubFile',
type: 'file',
fileType: '.epub'
},
{
label: 'Text Splitter',
name: 'textSplitter',
type: 'TextSplitter',
optional: true
},
{
label: 'Usage',
name: 'usage',
type: 'options',
options: [
{
label: 'One document per chapter',
name: 'perChapter'
},
{
label: 'One document per file',
name: 'perFile'
}
],
default: 'perChapter'
},
{
label: 'Additional Metadata',
name: 'metadata',
type: 'json',
description: 'Additional metadata to be added to the extracted documents',
optional: true,
additionalParams: true
},
{
label: 'Omit Metadata Keys',
name: 'omitMetadataKeys',
type: 'string',
rows: 4,
description: 'Metadata keys to omit, comma-separated',
placeholder: 'key1, key2, key3',
optional: true,
additionalParams: true
}
]
this.outputs = [
{
label: 'Document',
name: 'document',
description: 'Array of document objects',
baseClasses: [...this.baseClasses, 'json']
},
{
label: 'Text',
name: 'text',
description: 'Concatenated text from documents',
baseClasses: ['string', 'json']
}
]
}
async init(nodeData: INodeData, _: string, options: ICommonObject): Promise<any> {
const textSplitter = nodeData.inputs?.textSplitter as TextSplitter
const epubFileBase64 = nodeData.inputs?.epubFile as string
const usage = nodeData.inputs?.usage as string
const metadata = nodeData.inputs?.metadata
const _omitMetadataKeys = nodeData.inputs?.omitMetadataKeys as string
const output = nodeData.outputs?.output as string
let omitMetadataKeys: string[] = []
if (_omitMetadataKeys) {
omitMetadataKeys = _omitMetadataKeys.split(',').map((key) => key.trim())
}
let docs: IDocument[] = []
let files: string[] = []
const tempDir = path.join(process.cwd(), 'temp_epub_files')
fs.mkdirSync(tempDir, { recursive: true })
try {
if (epubFileBase64.startsWith('FILE-STORAGE::')) {
const fileName = epubFileBase64.replace('FILE-STORAGE::', '')
files = fileName.startsWith('[') && fileName.endsWith(']') ? JSON.parse(fileName) : [fileName]
const chatflowid = options.chatflowid
for (const file of files) {
if (!file) continue
const fileData = await getFileFromStorage(file, chatflowid)
const tempFilePath = path.join(tempDir, `${Date.now()}_${file}`)
fs.writeFileSync(tempFilePath, fileData)
await this.extractDocs(usage, tempFilePath, textSplitter, docs)
}
} else {
files = epubFileBase64.startsWith('[') && epubFileBase64.endsWith(']') ? JSON.parse(epubFileBase64) : [epubFileBase64]
for (const file of files) {
if (!file) continue
const splitDataURI = file.split(',')
splitDataURI.pop()
const fileBuffer = Buffer.from(splitDataURI.pop() || '', 'base64')
const tempFilePath = path.join(tempDir, `${Date.now()}_epub_file.epub`)
fs.writeFileSync(tempFilePath, fileBuffer)
await this.extractDocs(usage, tempFilePath, textSplitter, docs)
}
}
if (metadata) {
const parsedMetadata = typeof metadata === 'object' ? metadata : JSON.parse(metadata)
docs = docs.map((doc) => ({
...doc,
metadata:
_omitMetadataKeys === '*'
? {
...parsedMetadata
}
: omit(
{
...doc.metadata,
...parsedMetadata
},
omitMetadataKeys
)
}))
} else {
docs = docs.map((doc) => ({
...doc,
metadata:
_omitMetadataKeys === '*'
? {}
: omit(
{
...doc.metadata
},
omitMetadataKeys
)
}))
}
if (output === 'document') {
return docs
} else {
let finaltext = ''
for (const doc of docs) {
finaltext += `${doc.pageContent}\n`
}
return handleEscapeCharacters(finaltext, false)
}
} catch (error) {
console.error('Error processing EPUB files:', error)
throw error
} finally {
fs.rmSync(tempDir, { recursive: true, force: true })
}
}
private async extractDocs(usage: string, filePath: string, textSplitter: TextSplitter, docs: IDocument[]) {
const loader = new EPubLoader(filePath, { splitChapters: usage === 'perChapter' })
const loadedDocs = await loader.load()
const processedDocs = textSplitter ? await textSplitter.splitDocuments(loadedDocs) : loadedDocs
docs.push(...processedDocs)
}
}
module.exports = { nodeClass: Epub_DocumentLoaders }