Skip to content

Commit fab4c9f

Browse files
authoredSep 28, 2020
Merge pull request #79 from rspective/aw/support-order-metadata-in-validation
Support order metadata in validation
2 parents f07ba85 + 105a710 commit fab4c9f

8 files changed

+54
-7
lines changed
 

‎README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ where params is an object including:
118118
- `amount` *(required for gift vouchers, integer, value in cents)* - order's amount that is going to be paid by voucher (entirely or partially)
119119
- `items` *(required for order validation rules)* - order items, an array of objects with following properties `product_id`, `sku_id` and `quantity`
120120
- `customer` *(optional)* - an object including `id` and/or `source_id` of a customer, if provided then it has higher precedence than `tracking_id`. The object can also define customer's `metadata` used for validation.
121-
- `metadata` *(required for metadata validation rules)* - on object containing values of any type (boolean, number, string)
121+
- `orderMetadata` *(required for metadata validation rules)* - order metadata, an object containing values of any type (boolean, number, string)
122+
- `metadata` *(required for metadata validation rules)* - redemption metadata, an object containing values of any type (boolean, number, string)
122123

123124
or (only voucher validation)
124125

@@ -735,6 +736,7 @@ Description and legal fields do support markdown syntax. It means that you can u
735736
736737
### Changelog
737738
739+
- **2020-09-16** - `1.32.0` - Add possibility to send order metadata with validation request
738740
- **2019-12-23** - `1.31.0` - Add possibility to send customer metadata with validation request
739741
- **2019-02-05** - `1.30.0` - Add method for setting base app url
740742
- **2018-11-05** - `1.29.0` - Web widgets - new attribute for hiding a note describing Voucherify privacy policy

‎dist/voucherify.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,14 @@ window.Voucherify = (function (window, document, $) {
210210
var amount;
211211
var items;
212212
var metadata;
213+
var orderMetadata;
213214
var customer;
214215

215216
if (typeof(code) === "object") {
216217
amount = code.amount;
217218
items = code.items;
218219
metadata = code.metadata;
220+
orderMetadata = code.orderMetadata;
219221
customer = code.customer;
220222
code = code.code;
221223
}
@@ -251,6 +253,12 @@ window.Voucherify = (function (window, document, $) {
251253
}).join("&");
252254
}
253255

256+
if (orderMetadata) {
257+
queryString += "&" + Object.keys(orderMetadata).map(function (key) {
258+
return encodeURIComponent("order[metadata][" + key + "]") + "=" + encodeURIComponent(orderMetadata[key]);
259+
}).join("&");
260+
}
261+
254262
if (customer) {
255263
if (typeof(customer) !== "object") {
256264
console.error("Customer must be an object - please use instead { source_id: 'your_user' }");
@@ -268,7 +276,7 @@ window.Voucherify = (function (window, document, $) {
268276
return encodeURIComponent("customer[metadata][" + metadataKey + "]") + "=" + encodeURIComponent(customer.metadata[metadataKey]);
269277
}).join("&");
270278
}
271-
279+
272280
return encodeURIComponent("customer[" + key + "]") + "=" + encodeURIComponent(customer[key]);
273281
}).join("&");
274282
}

‎dist/voucherify.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/voucherify.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎example/validate-voucher.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="stylesheet" type="text/css" href="../lib/voucherify.css">
6+
</head>
7+
<body>
8+
<div id="voucher-validate"></div>
9+
10+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.12.2/jquery.js"></script>
11+
<script type="text/javascript" src="../lib/voucherify.js"></script>
12+
<script>
13+
Voucherify.initialize(
14+
"011240bf-d5fc-4ef1-9e82-11eb68c43bf5",
15+
"9e2230c5-71fb-460a-91c6-fbee64707a20"
16+
);
17+
Voucherify.setIdentity("gustav@purpleson.com");
18+
Voucherify.validate({
19+
code: "CODE1",
20+
items: [{ product_id: "prod_f1r5Tpr0DuC7" }],
21+
orderMetadata: {
22+
source: "website"
23+
}
24+
})
25+
.done(console.log)
26+
.fail(console.log);
27+
</script>
28+
</body>
29+
</html>

‎lib/voucherify.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,14 @@ window.Voucherify = (function (window, document, $) {
210210
var amount;
211211
var items;
212212
var metadata;
213+
var orderMetadata;
213214
var customer;
214215

215216
if (typeof(code) === "object") {
216217
amount = code.amount;
217218
items = code.items;
218219
metadata = code.metadata;
220+
orderMetadata = code.orderMetadata;
219221
customer = code.customer;
220222
code = code.code;
221223
}
@@ -251,6 +253,12 @@ window.Voucherify = (function (window, document, $) {
251253
}).join("&");
252254
}
253255

256+
if (orderMetadata) {
257+
queryString += "&" + Object.keys(orderMetadata).map(function (key) {
258+
return encodeURIComponent("order[metadata][" + key + "]") + "=" + encodeURIComponent(orderMetadata[key]);
259+
}).join("&");
260+
}
261+
254262
if (customer) {
255263
if (typeof(customer) !== "object") {
256264
console.error("Customer must be an object - please use instead { source_id: 'your_user' }");
@@ -268,7 +276,7 @@ window.Voucherify = (function (window, document, $) {
268276
return encodeURIComponent("customer[metadata][" + metadataKey + "]") + "=" + encodeURIComponent(customer.metadata[metadataKey]);
269277
}).join("&");
270278
}
271-
279+
272280
return encodeURIComponent("customer[" + key + "]") + "=" + encodeURIComponent(customer[key]);
273281
}).join("&");
274282
}

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "voucherify.js",
3-
"version": "1.31.0",
3+
"version": "1.32.0",
44
"homepage": "http://www.voucherify.io",
55
"description": "Client-side SDK for Voucherify.",
66
"author": "rspective",

0 commit comments

Comments
 (0)
Please sign in to comment.