Skip to content

Commit 21aa64f

Browse files
authored
Merge pull request #101 from starkbank/feature/br-code-rules
Add rules and display description on DynamicBrCode
2 parents 85c4356 + d3713fc commit 21aa64f

File tree

3 files changed

+91
-1
lines changed

3 files changed

+91
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ Given a version number MAJOR.MINOR.PATCH, increment:
1212
- PATCH version when backwards compatible bug **fixes** are implemented.
1313

1414
## [Unreleased]
15+
### Added
16+
- rules parameter on DynamicBrcode resource
17+
- displayDescription parameter on DynamicBrcode resource
1518

1619
## [2.19.0] - 2024-09-17
1720
### Added

src/main/java/com/starkbank/DynamicBrcode.java

+83-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ public final class DynamicBrcode extends Resource {
2929
* tags [list of strings, default []]: list of strings for tagging, these will be passed to the respective Deposit resource when paid
3030
* id [string]: id returned on creation, this is the BR code. ex: "00020126360014br.gov.bcb.pix0114+552840092118152040000530398654040.095802BR5915Jamie Lannister6009Sao Paulo620705038566304FC6C"
3131
* uuid [string]: unique uuid returned when the DynamicBrcode is created. ex: "4e2eab725ddd495f9c98ffd97440702d"
32+
* rules [list of DynamicBrcode.Rules, default []]: list of DynamicBrcode.Rule objects for modifying DynamicBrcode behavior. ex: [DynamicBrcode.Rule(key="allowedTaxIds", value=[ "012.345.678-90", "45.059.493/0001-73" ])]
33+
* displayDescription [string]: purchase descriptions. ex: "Payment for service #1234"
3234
* pictureUrl [string]: public QR Code (png image) URL. "https://sandbox.api.starkbank.com/v2/dynamic-brcode/d3ebb1bd92024df1ab6e5a353ee799a4.png"
3335
* updated [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
3436
* created [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
@@ -40,6 +42,8 @@ public final class DynamicBrcode extends Resource {
4042
public Number expiration;
4143
public String[] tags;
4244
public String uuid;
45+
public String displayDescription;
46+
public List<DynamicBrcode.Rule> rules;
4347
public String pictureUrl;
4448
public String updated;
4549
public String created;
@@ -61,19 +65,23 @@ public final class DynamicBrcode extends Resource {
6165
* @param tags [list of strings, default []]: list of strings for tagging, these will be passed to the respective Deposit resource when paid
6266
* @param id [string]: id returned on creation, this is the BR code. ex: "00020126360014br.gov.bcb.pix0114+552840092118152040000530398654040.095802BR5915Jamie Lannister6009Sao Paulo620705038566304FC6C"
6367
* @param uuid [string]: unique uuid returned when the DynamicBrcode is created. ex: "4e2eab725ddd495f9c98ffd97440702d"
68+
* @param rules [list of DynamicBrcode.Rules, default []]: list of DynamicBrcode.Rule objects for modifying DynamicBrcode behavior. ex: [DynamicBrcode.Rule(key="allowedTaxIds", value=[ "012.345.678-90", "45.059.493/0001-73" ])]
69+
* @param displayDescription [string]: purchase descriptions. ex: "Payment for service #1234"
6470
* @param pictureUrl [string]: public QR Code (png image) URL. "https://sandbox.api.starkbank.com/v2/dynamic-brcode/d3ebb1bd92024df1ab6e5a353ee799a4.png"
6571
* @param updated [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
6672
* @param created [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
6773
*/
6874
public DynamicBrcode(
6975
Number amount, Number expiration, String[] tags, String id, String uuid, String pictureUrl,
70-
String updated, String created
76+
String displayDescription, List<DynamicBrcode.Rule> rules, String updated, String created
7177
) {
7278
super(id);
7379
this.amount = amount;
7480
this.expiration = expiration;
7581
this.tags = tags;
7682
this.uuid = uuid;
83+
this.displayDescription = displayDescription;
84+
this.rules = rules;
7785
this.pictureUrl = pictureUrl;
7886
this.updated = updated;
7987
this.created = created;
@@ -101,6 +109,8 @@ public DynamicBrcode(
101109
* Attributes (return-only):
102110
* id [string]: id returned on creation, this is the BR code. ex: "00020126360014br.gov.bcb.pix0114+552840092118152040000530398654040.095802BR5915Jamie Lannister6009Sao Paulo620705038566304FC6C"
103111
* uuid [string]: unique uuid returned when the DynamicBrcode is created. ex: "4e2eab725ddd495f9c98ffd97440702d"
112+
* rules [list of DynamicBrcode.Rules, default []]: list of DynamicBrcode.Rule objects for modifying DynamicBrcode behavior. ex: [DynamicBrcode.Rule(key="allowedTaxIds", value=[ "012.345.678-90", "45.059.493/0001-73" ])]
113+
* displayDescription [string]: purchase descriptions. ex: "Payment for service #1234"
104114
* pictureUrl [string]: public QR Code (png image) URL. "https://sandbox.api.starkbank.com/v2/dynamic-brcode/d3ebb1bd92024df1ab6e5a353ee799a4.png"
105115
* updated [string]: latest updated datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
106116
* created [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
@@ -116,6 +126,8 @@ public DynamicBrcode(Map<String, Object> data) throws Exception {
116126
this.tags = (String[]) dataCopy.remove("tags");
117127
this.uuid = null;
118128
this.pictureUrl = null;
129+
this.displayDescription = (String) dataCopy.remove("displayDescription");
130+
this.rules = parseRules((List<Object>) dataCopy.remove("rules"));
119131
this.created = null;
120132
this.updated = null;
121133

@@ -376,4 +388,74 @@ public static Page page(Map<String, Object> params, User user) throws Exception
376388
}
377389
return new Page(brcodes, page.cursor);
378390
}
391+
392+
private List<DynamicBrcode.Rule> parseRules(List<Object> rules) throws Exception {
393+
if (rules == null)
394+
return null;
395+
396+
List<DynamicBrcode.Rule> parsed = new ArrayList<>();
397+
if (rules.size() == 0 || rules.get(0) instanceof DynamicBrcode.Rule) {
398+
for (Object rule : rules) {
399+
parsed.add((DynamicBrcode.Rule) rule);
400+
}
401+
return parsed;
402+
}
403+
404+
for (Object rule : rules) {
405+
DynamicBrcode.Rule ruleObject = new DynamicBrcode.Rule((Map<String, Object>) rule);
406+
parsed.add(ruleObject);
407+
}
408+
return parsed;
409+
}
410+
411+
/**
412+
* DynamicBrcode.Rule object
413+
* <p>
414+
* The DynamicBrcode.Rule object modifies the behavior of DynamicBrcode objects when passed as an argument upon their creation.
415+
* <p>
416+
* Parameters:
417+
* key [string]: Rule to be customized, describes what DynamicBrcode behavior will be altered. ex: "allowedTaxIds"
418+
* value [list of string]: Value of the rule. ex: ["012.345.678-90", "45.059.493/0001-73"]
419+
*
420+
*/
421+
public final static class Rule extends SubResource{
422+
public String key;
423+
public String[] value;
424+
425+
426+
/**
427+
* DynamicBrcode.Rule object
428+
* <p>
429+
* The DynamicBrcode.Rule object modifies the behavior of DynamicBrcode objects when passed as an argument upon their creation.
430+
* <p>
431+
* Parameters:
432+
* @param key [string]: Rule to be customized, describes what DynamicBrcode behavior will be altered. ex: "allowedTaxIds"
433+
* @param value [list of string]: Value of the rule. ex: ["012.345.678-90", "45.059.493/0001-73"]
434+
*/
435+
public Rule(String key, String[] value){
436+
this.key = key;
437+
this.value = value;
438+
}
439+
440+
/**
441+
* DynamicBrcode.Rule object
442+
* <p>
443+
* The DynamicBrcode.Rule object modifies the behavior of DynamicBrcode objects when passed as an argument upon their creation.
444+
* <p>
445+
* Parameters:
446+
* @param data map of properties for the creation of the DynamicBrcode.Rule
447+
* key [string]: Rule to be customized, describes what DynamicBrcode behavior will be altered. ex: "allowedTaxIds"
448+
* value [list of string]: Value of the rule. ex: ["012.345.678-90", "45.059.493/0001-73"]
449+
*/
450+
public Rule(Map<String, Object> data) throws Exception {
451+
HashMap<String, Object> dataCopy = new HashMap<>(data);
452+
453+
this.key = (String) dataCopy.remove("key");
454+
this.value = (String[]) dataCopy.remove("value");
455+
456+
if (!dataCopy.isEmpty()) {
457+
throw new Exception("Unknown parameters used in constructor: [" + String.join(", ", dataCopy.keySet()) + "]");
458+
}
459+
}
460+
}
379461
}

src/test/java/TestDynamicBrcode.java

+5
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ public void testCreateAndGet() throws Exception {
1616

1717
List<DynamicBrcode> brcodes = new ArrayList<>();
1818

19+
List<DynamicBrcode.Rule> rule = new ArrayList<>();
20+
rule.add(new DynamicBrcode.Rule("allowedTaxIds", new String[]{"012.345.678-90"}));
21+
1922
HashMap<String, Object> data = new HashMap<>();
2023
data.put("amount", 400000);
2124
data.put("expiration", 5000);
25+
data.put("displayDescription", "Description");
2226
data.put("tags", new String[] {"tags1", "tags2"});
27+
data.put("rules", rule);
2328
brcodes.add(new DynamicBrcode(data));
2429

2530
brcodes = DynamicBrcode.create(brcodes);

0 commit comments

Comments
 (0)