Decode widget form values consistently
The helper method `_decodeFormValue` is used to ensure that it happens in one place. Note that form values are field values, display values and export values.
This commit is contained in:
parent
36e149800e
commit
1b82ad8fff
@ -803,11 +803,14 @@ class WidgetAnnotation extends Annotation {
|
|||||||
|
|
||||||
data.annotationType = AnnotationType.WIDGET;
|
data.annotationType = AnnotationType.WIDGET;
|
||||||
data.fieldName = this._constructFieldName(dict);
|
data.fieldName = this._constructFieldName(dict);
|
||||||
data.fieldValue = getInheritableProperty({
|
|
||||||
|
const fieldValue = getInheritableProperty({
|
||||||
dict,
|
dict,
|
||||||
key: "V",
|
key: "V",
|
||||||
getArray: true,
|
getArray: true,
|
||||||
});
|
});
|
||||||
|
data.fieldValue = this._decodeFormValue(fieldValue);
|
||||||
|
|
||||||
data.alternativeText = stringToPDFString(dict.get("TU") || "");
|
data.alternativeText = stringToPDFString(dict.get("TU") || "");
|
||||||
data.defaultAppearance =
|
data.defaultAppearance =
|
||||||
getInheritableProperty({ dict, key: "DA" }) ||
|
getInheritableProperty({ dict, key: "DA" }) ||
|
||||||
@ -882,6 +885,28 @@ class WidgetAnnotation extends Annotation {
|
|||||||
return fieldName.join(".");
|
return fieldName.join(".");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decode the given form value.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @memberof WidgetAnnotation
|
||||||
|
* @param {Array<string>|Name|string} formValue - The (possibly encoded)
|
||||||
|
* form value.
|
||||||
|
* @returns {Array<string>|string|null}
|
||||||
|
*/
|
||||||
|
_decodeFormValue(formValue) {
|
||||||
|
if (Array.isArray(formValue)) {
|
||||||
|
return formValue
|
||||||
|
.filter(item => isString(item))
|
||||||
|
.map(item => stringToPDFString(item));
|
||||||
|
} else if (isName(formValue)) {
|
||||||
|
return stringToPDFString(formValue.name);
|
||||||
|
} else if (isString(formValue)) {
|
||||||
|
return stringToPDFString(formValue);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if a provided field flag is set.
|
* Check if a provided field flag is set.
|
||||||
*
|
*
|
||||||
@ -1194,7 +1219,9 @@ class TextWidgetAnnotation extends WidgetAnnotation {
|
|||||||
const dict = params.dict;
|
const dict = params.dict;
|
||||||
|
|
||||||
// The field value is always a string.
|
// The field value is always a string.
|
||||||
this.data.fieldValue = stringToPDFString(this.data.fieldValue || "");
|
if (!isString(this.data.fieldValue)) {
|
||||||
|
this.data.fieldValue = "";
|
||||||
|
}
|
||||||
|
|
||||||
// Determine the alignment of text in the field.
|
// Determine the alignment of text in the field.
|
||||||
let alignment = getInheritableProperty({ dict, key: "Q" });
|
let alignment = getInheritableProperty({ dict, key: "Q" });
|
||||||
@ -1499,10 +1526,6 @@ class ButtonWidgetAnnotation extends WidgetAnnotation {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_processCheckBox(params) {
|
_processCheckBox(params) {
|
||||||
if (isName(this.data.fieldValue)) {
|
|
||||||
this.data.fieldValue = this.data.fieldValue.name;
|
|
||||||
}
|
|
||||||
|
|
||||||
const customAppearance = params.dict.get("AP");
|
const customAppearance = params.dict.get("AP");
|
||||||
if (!isDict(customAppearance)) {
|
if (!isDict(customAppearance)) {
|
||||||
return;
|
return;
|
||||||
@ -1541,7 +1564,7 @@ class ButtonWidgetAnnotation extends WidgetAnnotation {
|
|||||||
const fieldParentValue = fieldParent.get("V");
|
const fieldParentValue = fieldParent.get("V");
|
||||||
if (isName(fieldParentValue)) {
|
if (isName(fieldParentValue)) {
|
||||||
this.parent = params.dict.getRaw("Parent");
|
this.parent = params.dict.getRaw("Parent");
|
||||||
this.data.fieldValue = fieldParentValue.name;
|
this.data.fieldValue = this._decodeFormValue(fieldParentValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1602,8 +1625,10 @@ class ChoiceWidgetAnnotation extends WidgetAnnotation {
|
|||||||
const isOptionArray = Array.isArray(option);
|
const isOptionArray = Array.isArray(option);
|
||||||
|
|
||||||
this.data.options[i] = {
|
this.data.options[i] = {
|
||||||
exportValue: isOptionArray ? xref.fetchIfRef(option[0]) : option,
|
exportValue: this._decodeFormValue(
|
||||||
displayValue: stringToPDFString(
|
isOptionArray ? xref.fetchIfRef(option[0]) : option
|
||||||
|
),
|
||||||
|
displayValue: this._decodeFormValue(
|
||||||
isOptionArray ? xref.fetchIfRef(option[1]) : option
|
isOptionArray ? xref.fetchIfRef(option[1]) : option
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
@ -2450,16 +2450,12 @@ describe("annotation", function () {
|
|||||||
}, done.fail);
|
}, done.fail);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should sanitize display values in option arrays (issue 8947)", function (done) {
|
it("should decode form values", function (done) {
|
||||||
// The option value is a UTF-16BE string. The display value should be
|
const encodedString = "\xFE\xFF\x00F\x00o\x00o";
|
||||||
// sanitized, but the export value should remain the same since that
|
const decodedString = "Foo";
|
||||||
// may be used as a unique identifier when exporting form values.
|
|
||||||
const options = ["\xFE\xFF\x00F\x00o\x00o"];
|
|
||||||
const expected = [
|
|
||||||
{ exportValue: "\xFE\xFF\x00F\x00o\x00o", displayValue: "Foo" },
|
|
||||||
];
|
|
||||||
|
|
||||||
choiceWidgetDict.set("Opt", options);
|
choiceWidgetDict.set("Opt", [encodedString]);
|
||||||
|
choiceWidgetDict.set("V", encodedString);
|
||||||
|
|
||||||
const choiceWidgetRef = Ref.get(984, 0);
|
const choiceWidgetRef = Ref.get(984, 0);
|
||||||
const xref = new XRefMock([
|
const xref = new XRefMock([
|
||||||
@ -2473,7 +2469,10 @@ describe("annotation", function () {
|
|||||||
idFactoryMock
|
idFactoryMock
|
||||||
).then(({ data }) => {
|
).then(({ data }) => {
|
||||||
expect(data.annotationType).toEqual(AnnotationType.WIDGET);
|
expect(data.annotationType).toEqual(AnnotationType.WIDGET);
|
||||||
expect(data.options).toEqual(expected);
|
expect(data.fieldValue).toEqual([decodedString]);
|
||||||
|
expect(data.options).toEqual([
|
||||||
|
{ exportValue: decodedString, displayValue: decodedString },
|
||||||
|
]);
|
||||||
done();
|
done();
|
||||||
}, done.fail);
|
}, done.fail);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user