UNPKG

paymaya-node-sdk

Version:

Node.js Client for Paymaya API

81 lines (70 loc) 1.79 kB
module.exports = Customization; var APIManager = require("./../core/APIManager"); var paymayaSdk = require("./../PaymayaSDK"); function Customization() { this._apiManager = new APIManager(); this.logoUrl = ""; this.iconUrl = ""; this.appleTouchIconUrl = ""; this.customTitle = ""; this.colorScheme = ""; } Customization.prototype = { /* PUBLIC FUNCTIONS */ set: function(callback) { if(!this.logoUrl) { callback("Missing logoUrl"); return; } if(!this.iconUrl) { callback("Missing iconUrl"); return; } if(!this.appleTouchIconUrl) { callback("Missing appleTouchIconUrl"); return; } if(!this.customTitle) { callback("Missing customTitle"); return; } if(!this.colorScheme) { callback("Missing colorScheme"); return; } var customizationData = { logoUrl: this.logoUrl, iconUrl: this.iconUrl, appleTouchIconUrl: this.appleTouchIconUrl, customTitle: this.customTitle, colorScheme: this.colorScheme } this._apiManager.executeSetCustomization(customizationData, callback); }, get: function(callback) { var self = this; this._apiManager.executeGetCustomization(function(err, response) { if(response) { self.logoUrl = response.logoUrl; self.iconUrl = response.iconUrl; self.appleTouchIconUrl = response.appleTouchIconUrl; self.customTitle = response.customTitle; self.colorScheme = response.appcolorSchemeleTouchIconUrl; } callback(err, response); }); }, remove: function(callback) { var self = this; this._apiManager.executeRemoveCustomization(function(err, response) { if(response) { self.logoUrl = ""; self.iconUrl = ""; self.appleTouchIconUrl = ""; self.customTitle = ""; self.colorScheme = ""; } callback(err, response); }); } };