@reality.eth/reality-eth-lib 3.1.15 → 3.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/formatters/question.js +34 -37
- package/package.json +4 -3
- package/test/formatters.js +12 -0
package/formatters/question.js
CHANGED
|
@@ -7,6 +7,7 @@ const vsprintf = require("sprintf-js").vsprintf
|
|
|
7
7
|
const QUESTION_MAX_OUTCOMES = 128;
|
|
8
8
|
const marked = require('marked');
|
|
9
9
|
const DOMPurify = require('isomorphic-dompurify');
|
|
10
|
+
const { convert} = require('html-to-text');
|
|
10
11
|
|
|
11
12
|
exports.delimiter = function() {
|
|
12
13
|
return '\u241f'; // Thought about '\u0000' but it seems to break something;
|
|
@@ -190,17 +191,16 @@ exports.parseQuestionJSON = function(data, errors_to_title) {
|
|
|
190
191
|
};
|
|
191
192
|
}
|
|
192
193
|
|
|
193
|
-
if (question_json['outcomes'] && question_json['outcomes'].length > QUESTION_MAX_OUTCOMES)
|
|
194
|
-
if(question_json['errors'])
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
question_json['errors'] = {'invalid_precision': true};
|
|
194
|
+
if (question_json['outcomes'] && question_json['outcomes'].length > QUESTION_MAX_OUTCOMES) {
|
|
195
|
+
if (!question_json['errors']) question_json['errors'] = {};
|
|
196
|
+
question_json['errors']['too_many_outcomes'] = true;
|
|
197
|
+
}
|
|
198
|
+
if ('type' in question_json && question_json['type'] == 'datetime' && 'precision' in question_json) {
|
|
199
|
+
if (!(['Y', 'm', 'd', 'H', 'i', 's'].includes(question_json['precision']))) {
|
|
200
|
+
if (!question_json['errors']) question_json['errors'] = {};
|
|
201
|
+
question_json['errors']['invalid_precision'] = true;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
204
|
// If errors_to_title is specified, we add any error message to the title to make sure we don't lose it
|
|
205
205
|
if (errors_to_title) {
|
|
206
206
|
if ('errors' in question_json) {
|
|
@@ -216,34 +216,31 @@ exports.parseQuestionJSON = function(data, errors_to_title) {
|
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
218
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
question_json['format'] = 'text/plain';
|
|
237
|
-
break;
|
|
238
|
-
}
|
|
239
|
-
default:{
|
|
240
|
-
question_json['errors'] = {'invalid_format': true};
|
|
241
|
-
break;
|
|
219
|
+
if (!question_json['format']) {
|
|
220
|
+
question_json['format'] = 'text/plain';
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
if (question_json['format'] == 'text/plain') {
|
|
224
|
+
question_json['title_text'] = question_json['title'];
|
|
225
|
+
} else if (question_json['format'] == 'text/markdown') {
|
|
226
|
+
try{
|
|
227
|
+
const safeMarkdown = DOMPurify.sanitize(question_json['title'], { USE_PROFILES: {html: false}});
|
|
228
|
+
if (safeMarkdown !== question_json['title']) {
|
|
229
|
+
if (!question_json['errors']) question_json['errors'] = {};
|
|
230
|
+
question_json['errors']['unsafe_markdown'] = true;
|
|
231
|
+
} else {
|
|
232
|
+
question_json['title_html'] = marked.parse(safeMarkdown).replace(/<img.*src=\"(.*?)\".*alt=\"(.*?)\".*\/?>/, '<a href="$1">$2</a>');
|
|
233
|
+
question_json['title_text'] = convert(question_json['title_html'], {
|
|
234
|
+
selectors: [{selector: 'h1', options: { uppercase: false }}, {selector: 'h2', options: { uppercase: false }}]
|
|
235
|
+
});
|
|
242
236
|
}
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
if(question_json && question_json['errors'])
|
|
237
|
+
} catch(e){
|
|
238
|
+
if (!question_json['errors']) question_json['errors'] = {};
|
|
246
239
|
question_json['errors']['markdown_parse_failed'] = true
|
|
240
|
+
}
|
|
241
|
+
} else {
|
|
242
|
+
if (!question_json['errors']) question_json['errors'] = {};
|
|
243
|
+
question_json['errors']['invalid_format'] = true;
|
|
247
244
|
}
|
|
248
245
|
|
|
249
246
|
// If errors_to_title is specified, we add any error message to the title to make sure we don't lose it
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reality.eth/reality-eth-lib",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.16",
|
|
4
4
|
"description": "Tools for handling questions in the reality.eth fact verification platform",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "env TZ='Asia/Kabul' mocha ./test"
|
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
"author": "Edmund Edgar (https://reality.eth.link)",
|
|
17
17
|
"license": "GPL-3.0",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@reality.eth/contracts": "^3.0.
|
|
19
|
+
"@reality.eth/contracts": "^3.0.17",
|
|
20
20
|
"bignumber.js": "^7.2.1",
|
|
21
21
|
"bn.js": "^5.2.1",
|
|
22
22
|
"ethereumjs-abi": "^0.6.5",
|
|
23
|
+
"html-to-text": "^8.2.1",
|
|
23
24
|
"isomorphic-dompurify": "^0.23.0",
|
|
24
25
|
"marked": "^4.1.1",
|
|
25
26
|
"sprintf-js": "^1.1.1"
|
|
@@ -38,5 +39,5 @@
|
|
|
38
39
|
"url": "https://github.com/RealityETH/monorepo/issues"
|
|
39
40
|
},
|
|
40
41
|
"homepage": "https://reality.eth.link",
|
|
41
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "cb5d687e6d5fe075c7e01bf5cb06517eb211dc24"
|
|
42
43
|
}
|
package/test/formatters.js
CHANGED
|
@@ -240,6 +240,18 @@ describe('Broken questions', function() {
|
|
|
240
240
|
});
|
|
241
241
|
});
|
|
242
242
|
|
|
243
|
+
describe('Markdown questions', function() {
|
|
244
|
+
it('Sets title, title_html and title_text appropriatly', function() {
|
|
245
|
+
const qMarkdown = "{\"title\": \"# my title oh yes\", \"type\": \"bool\", \"category\": \"art\", \"lang\": \"en_US\", \"format\": \"text/markdown\"}";
|
|
246
|
+
const q = rc_question.parseQuestionJSON(qMarkdown, true);
|
|
247
|
+
expect(q.errors).to.equal(undefined);
|
|
248
|
+
expect(q.format).to.equal('text/markdown');
|
|
249
|
+
expect(q.title_text).to.equal('my title oh yes');
|
|
250
|
+
expect(q.title).to.equal('# my title oh yes');
|
|
251
|
+
expect(q.title_html).to.equal('<h1 id="my-title-oh-yes">my title oh yes</h1>'+"\n");
|
|
252
|
+
});
|
|
253
|
+
});
|
|
254
|
+
|
|
243
255
|
describe('Unsafe markdown questions', function() {
|
|
244
256
|
it('Sets an error if a question includes unsafe html in markdown', function() {
|
|
245
257
|
const qUnsafeMarkdown = "{\"title\": \"# Title <p>abc<iframe\/\/src=jAva	script:alert(3)>def<\/p>\", \"type\": \"bool\", \"category\": \"art\", \"lang\": \"en_US\", \"format\": \"text/markdown\"}";
|