Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -715,8 +715,20 @@ upcase("<sourceField>")

Encodes a field value as URI. Aka percent-encoding.

Options:

- `allow_empty_values`: Sets whether to allow empty values in the filemap or to ignore these entries. (Default: `false`)
- `compression`: Sets the compression of the file.


```perl
uri_encode("<sourceField>"[, <options>...])
```

E.g.:

```perl
uri_encode("<sourceField>")
uri_encode("path.to.field", plus_for_space:"false", safe_chars:"")
```

### Selectors
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ subprojects {
'jquery': '3.3.1-1',
'junit_jupiter': '5.8.2',
'junit_platform': '1.4.2',
'metafacture': '5.7.0-rc1',
'metafacture': '5.7.0-rc2',
'mockito': '2.27.0',
'requirejs': '2.3.6',
'slf4j': '1.7.21',
Expand Down
3 changes: 2 additions & 1 deletion metafix/src/main/java/org/metafacture/metafix/FixMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,8 @@ public void apply(final Metafix metafix, final Record record, final List<String>
@Override
public void apply(final Metafix metafix, final Record record, final List<String> params, final Map<String, String> options) {
final URLEncode urlEncoder = new URLEncode();
urlEncoder.setPlusForSpace(false);
withOption(options, "safe_chars", urlEncoder::setSafeChars);
withOption(options, "plus_for_space", urlEncoder::setPlusForSpace, this::getBoolean);

record.transform(params.get(0), urlEncoder::process);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4015,12 +4015,48 @@ public void shouldUriEncodePathSegment() {
),
i -> {
i.startRecord("1");
i.literal("id", "slash/990223521400206441:DE-A96:61 TYD 16(3)#!");
i.literal("id", "/DE-A96:% (3)#!");
i.endRecord();
},
o -> {
o.get().startRecord("1");
o.get().literal("id", "slash%2F990223521400206441%3ADE%2DA96%3A61%20TYD%2016%283%29%23%21");
o.get().literal("id", "%2FDE-A96%3A%25+%283%29%23%21");
o.get().endRecord();
}
);
}

@Test
public void shouldUriEncodePathSegmentWithoutPlusForSpace() {
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
"uri_encode('id', plus_for_space:'false')"
),
i -> {
i.startRecord("1");
i.literal("id", "/DE-A96:% (3)#!");
i.endRecord();
},
o -> {
o.get().startRecord("1");
o.get().literal("id", "%2FDE-A96%3A%25%20%283%29%23%21");
o.get().endRecord();
}
);
}

@Test
public void shouldUriEncodePathSegmentWithoutSafeChars() {
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
"uri_encode('id', safe_chars:'', plus_for_space:'false')"
),
i -> {
i.startRecord("1");
i.literal("id", "/DE-A96:% (3)#!");
i.endRecord();
},
o -> {
o.get().startRecord("1");
o.get().literal("id", "%2FDE%2DA96%3A%25%20%283%29%23%21");
o.get().endRecord();
}
);
Expand Down