Constructor
new OnePay(config)
Instantiate a OnePay checkout helper
Khởi tạo class thanh toán OnePay
Parameters:
Name | Type | Description |
---|---|---|
config |
Object | check OnePay.configSchema for data type requirements. |
- Source:
Members
(static) configSchema :SimpleSchema
OnePay configSchema
Type:
- SimpleSchema
- Source:
checkoutPayloadDefaults
Return default checkout Payloads
Lấy checkout payload mặc định cho cổng thanh toán này
- Source:
Methods
buildCheckoutUrl(payload) → {Promise.<URL>}
Build checkout URL to redirect to the payment gateway.
Hàm xây dựng url để redirect qua OnePay gateway, trong đó có tham số mã hóa (còn gọi là public key).
Parameters:
Name | Type | Description |
---|---|---|
payload |
OnePayCheckoutPayload | Object that contains needed data for the URL builder, refer to typeCheck object above. |
- Source:
Returns:
buildCheckoutUrl promise
- Type
- Promise.<URL>
validateCheckoutPayload(payload)
Validate checkout payload against specific schema. Throw ValidationErrors if invalid against checkoutSchema
Build the schema in subclass.
Kiểm tra tính hợp lệ của dữ liệu thanh toán dựa trên schema đã được đồng bộ với tài liệu của nhà cung cấp.
Hiển thị lỗi nếu không hợp lệ với checkoutSchema.
Schema sẽ được tạo trong class con.
Parameters:
Name | Type | Description |
---|---|---|
payload |
OnePayCheckoutPayload |
- Source:
verifyReturnUrl(query) → {Promise.<Object>}
Verify return query string from OnePay using enclosed vpc_SecureHash string
Hàm thực hiện xác minh tính đúng đắn của các tham số trả về từ cổng thanh toán
Parameters:
Name | Type | Description |
---|---|---|
query |
Object | Query data object from GET handler ( |
- Source:
Returns:
Promise object which resolved with normalized returned data object, with additional fields like isSuccess.
Promise khi hoàn thành sẽ trả về object data từ cổng thanh toán, được chuẩn hóa tên theo camelCase và đính kèm thuộc tính isSuccess
- Type
- Promise.<Object>