-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdfParser.js
218 lines (191 loc) · 7.74 KB
/
pdfParser.js
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
const fs = require('fs');
const pdfParse = require("mighty-pdf-parser");
const parseQuestions = (pdfText) => {
const questions = [];
let isProcessStart = false, isQuesParsed = true;
let isOption = false, isStatement = false, isQuestion = false;
const quesPattern = /^[0-9]+\.\s/;
const statementPattern = /^[0-9]\.\s/;
const optionPattern = /^\([a-d]\)/;
const excludeStrings = ["vision", "ias"];
const excludePattern = new RegExp(excludeStrings.join("|"), "i");
const textLines = pdfText.split('\n');
let currQues = {description: "", options: []};
textLines.filter(line => line.trim().length)
.forEach(line => {
if(!isProcessStart) {
// avoid all other lines until questions start
isProcessStart = quesPattern.test(line);
}
if (isProcessStart) {
line = line.trim();
if(isQuesParsed && quesPattern.test(line)) {
// question
if(isOption) {
isOption = false;
questions.push({...currQues});
// clear currQues
currQues.description = "";
currQues.options = [];
}
const ques = line.split(quesPattern)[1].trim();
currQues.description += ques;
isQuesParsed = false;
isQuestion = true;
} else {
// only question pattern will start the process
if(statementPattern.test(line)) {
// statement
currQues.description = currQues.description.concat("\n", line);
isQuestion = false;
isOption = false;
isStatement = true;
} else if(optionPattern.test(line)) {
// option
currQues.options.push(line);
isQuesParsed = true;
isQuestion = false;
isStatement = false;
isOption = true;
} else if (!excludePattern.test(line)) {
// continued line
if(isOption)
currQues.options[currQues.options.length - 1] += (" " + line);
else if(isQuestion)
currQues.description = currQues.description.concat(currQues.description.endsWith(':') || currQues.description.endsWith('.') ? "\n" : " ", line);
else if(isStatement) {
// currQues.description = currQues.description.concat(currQues.description.endsWith('.') ? "\n" : " ", line);
currQues.description = currQues.description.concat("\n", line);
}
}
}
}
});
if(currQues.description)
questions.push(currQues);
return questions;
};
const parseAnswers = (pdfText) => {
const answers = [];
const ansPattern = /^\([a-d]\)/;
const textLines = pdfText.split('\n');
let foundAnswer = true;
let counter = 1;
let carriedOverOption;
textLines.forEach(line => {
line = line.trim();
if (line.length && (ansPattern.test(line) || !foundAnswer)) {
foundAnswer = false;
let [ correctOption, questionNumber ] = line.split("Q.");
correctOption = correctOption ? correctOption.trim() : "";
questionNumber = questionNumber ? questionNumber.trim() : "";
correctOption = correctOption || carriedOverOption;
if (correctOption && questionNumber && counter === parseInt(questionNumber)) {
answers.push(correctOption);
counter++;
foundAnswer = true;
carriedOverOption = "";
} else {
carriedOverOption = correctOption;
}
}
});
return answers;
};
// const getQuestionsFromPdf = (callback) => {
// try {
// // const fileData = fs.readFileSync('./sample.pdf');
// const fileData = fs.readFileSync('./VisionIAS_TestBooklet.pdf');
// pdfParse(fileData, {startPage: 2}).then(function(data) {
// // number of pages
// // console.log(data.numpages);
// // number of rendered pages
// // console.log(data.numrender);
// // PDF info
// // console.log(data.info);
// // PDF metadata
// // console.log(data.metadata);
// // PDF.js version
// // check https://mozilla.github.io/pdf.js/getting_started/
// // console.log(data.version);
// // PDF text
// // console.log(data.text.slice(0, 535));
// if (typeof callback === "function") {
// callback(parseQuestions(data.text));
// }
// }).catch(function(error) {
// // handle pdf file read exceptions
// console.log(error);
// })
// } catch (err) {
// console.error(err);
// }
// };
const readPdf = async (filePath, handler, options = {}) => {
if (!filePath)
return;
const {
startPage = 0,
maxPages = 0
} = options;
console.log("startPage: ", startPage);
console.log("maxPages: ", maxPages);
try {
// const fileData = fs.readFileSync('./sample.pdf');
// './VisionIAS_TestBooklet.pdf'
console.log(filePath);
const fileData = fs.readFileSync(filePath);
// temporary hack to get pageCount to pass it to endPage option.
const { pageCount } = await pdfParse(fileData);
return pdfParse(fileData, {
pageRange: true,
startPage: startPage,
endPage: maxPages || pageCount
}).then(function(data) {
// number of pages
// console.log(data.numpages);
// number of rendered pages
// console.log(data.numrender);
// PDF info
// console.log(data.info);
// PDF metadata
// console.log(data.metadata);
// PDF.js version
// check https://mozilla.github.io/pdf.js/getting_started/
// console.log(data.version);
// PDF text
// console.log(data.text.slice(0, 535));
if (typeof handler === "function") {
// console.log("dataText", data.text.slice(0, 535));
return handler(data.text);
}
}).catch(function(error) {
// handle pdf file read exceptions
console.log(error);
})
} catch (err) {
console.error(err);
}
};
const getQuestionsFromPdf = (filePath, options) => {
const {
startPage: startPageString = "0",
maxPages: maxPagesString = "0"
} = options || {};
const startPage = isNaN(parseInt(startPageString)) ? 0 : parseInt(startPageString);
const maxPages = isNaN(parseInt(maxPagesString)) ? 0 : parseInt(maxPagesString);
return readPdf(filePath, parseQuestions, { startPage, maxPages });
};
const getAnswersFromPdf = (filePath, options) => {
const {
startPage: startPageString = "0",
maxPages: maxPagesString = "0"
} = options || {};
const startPage = isNaN(parseInt(startPageString)) ? 0 : parseInt(startPageString);
const maxPages = isNaN(parseInt(maxPagesString)) ? 0 : parseInt(maxPagesString);
return readPdf(filePath, parseAnswers, { startPage, maxPages });
};
module.exports = {
getQuestionsFromPdf: getQuestionsFromPdf,
getAnswersFromPdf: getAnswersFromPdf
}