1. 1 :
  2. 2 :
  3. 3 : (function(root, factory) {
  4. 4 :
  5. 5 : if (typeof module === 'object' && module.exports) {
  6. 6 : // CommonJS-like environments that support module.exports, like Node.
  7. 7 : module.exports = factory(require('../ApiClient'), require('./InvocationContext'), require('../CommonUtil'), require('../ResponseWrapper'), require('./Base')
  8. 8 : , require('../handlers/CreateCustomerHandler')
  9. 9 : , require('../handlers/GetCustomerHandler')
  10. 10 : , require('../handlers/UpdateCustomerHandler'), require('../OrbipayApiError'));
  11. 11 : }
  12. 12 : }(this, function(ApiClient, InvocationContext, CommonUtil, ResponseWrapper, Base, CreateCustomerHandler, GetCustomerHandler, UpdateCustomerHandler, OrbipayApiError) {
  13. 13 : 'use strict';
  14. 14 :
  15. 15 : /**
  16. 16 : * The Customer wrapper module.
  17. 17 : * @module wrappers/Customer
  18. 18 : */
  19. 19 : var exports = function(id_customer) {
  20. 20 : var _this = this;
  21. 21 : Base.call(_this);
  22. 22 : _this['ID_CUSTOMER'] = id_customer;
  23. 23 : _this.id = id_customer;
  24. 24 : };
  25. 25 :
  26. 26 : /**
  27. 27 : * Constructs a <code>Customer</code> from a plain JavaScript object, optionally creating a new instance.
  28. 28 : * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
  29. 29 : * @param {Object} data The plain JavaScript object bearing properties of interest.
  30. 30 : * @param {module:wrappers/Customer} obj Optional instance to populate.
  31. 31 : * @return {module:wrappers/Customer} The populated <code>Customer</code> instance.
  32. 32 : */
  33. 33 : exports.constructFromObject = function (data, obj) {
  34. 34 : if (data) {
  35. 35 : obj = obj || new exports();
  36. 36 : if (data.hasOwnProperty('first_name')) {
  37. 37 : obj['first_name'] = data['first_name'];
  38. 38 : }
  39. 39 : if (data.hasOwnProperty('last_name')) {
  40. 40 : obj['last_name'] = data['last_name'];
  41. 41 : }
  42. 42 : if (data.hasOwnProperty('middle_name')) {
  43. 43 : obj['middle_name'] = data['middle_name'];
  44. 44 : }
  45. 45 : if (data.hasOwnProperty('gender')) {
  46. 46 : obj['gender'] = data['gender'];
  47. 47 : }
  48. 48 : if (data.hasOwnProperty('date_of_birth')) {
  49. 49 : obj['date_of_birth'] = data['date_of_birth'];
  50. 50 : }
  51. 51 : if (data.hasOwnProperty('ssn')) {
  52. 52 : obj['ssn'] = data['ssn'];
  53. 53 : }
  54. 54 : if (data.hasOwnProperty('locale')) {
  55. 55 : obj['locale'] = data['locale'];
  56. 56 : }
  57. 57 : if (data.hasOwnProperty('email')) {
  58. 58 : obj['email'] = data['email'];
  59. 59 : }
  60. 60 : if (data.hasOwnProperty('registered_email')) {
  61. 61 : obj['registered_email'] = data['registered_email'];
  62. 62 : }
  63. 63 : if (data.hasOwnProperty('home_phone')) {
  64. 64 : obj['home_phone'] = data['home_phone'];
  65. 65 : }
  66. 66 : if (data.hasOwnProperty('work_phone')) {
  67. 67 : obj['work_phone'] = data['work_phone'];
  68. 68 : }
  69. 69 : if (data.hasOwnProperty('mobile_phone')) {
  70. 70 : obj['mobile_phone'] = data['mobile_phone'];
  71. 71 : }
  72. 72 : if (data.hasOwnProperty('address')) {
  73. 73 : var Address = require('./Address');
  74. 74 : obj['address'] = Address.constructFromObject(data['address']);
  75. 75 : }
  76. 76 : if (data.hasOwnProperty('custom_fields')) {
  77. 77 : obj['custom_fields'] = data['custom_fields'];
  78. 78 : }
  79. 79 : if (data.hasOwnProperty('customer_reference')) {
  80. 80 : obj['customer_reference'] = data['customer_reference'];
  81. 81 : }
  82. 82 : if (data.hasOwnProperty('id')) {
  83. 83 : obj['id'] = data['id'];
  84. 84 : }
  85. 85 : if (data.hasOwnProperty('status')) {
  86. 86 : obj['status'] = data['status'];
  87. 87 : }
  88. 88 : if (data.hasOwnProperty('url')) {
  89. 89 : obj['url'] = data['url'];
  90. 90 : }
  91. 91 : if (data.hasOwnProperty('comments')) {
  92. 92 : obj['comments'] = data['comments'];
  93. 93 : }
  94. 94 : if (data.hasOwnProperty('customer_accounts')) {
  95. 95 : var CustomerAccounts = require('./CustomerAccounts');
  96. 96 : obj['customer_accounts'] = CustomerAccounts.constructFromObject(data['customer_accounts']);
  97. 97 : }
  98. 98 : if (data.hasOwnProperty('funding_accounts')) {
  99. 99 : var FundingAccounts = require('./FundingAccounts');
  100. 100 : obj['funding_accounts'] = FundingAccounts.constructFromObject(data['funding_accounts']);
  101. 101 : }
  102. 102 : if (data.hasOwnProperty('payments')) {
  103. 103 : var Payments = require('./Payments');
  104. 104 : obj['payments'] = Payments.constructFromObject(data['payments']);
  105. 105 : }
  106. 106 : if (data.hasOwnProperty('payment_setups')) {
  107. 107 : var PaymentSetups = require('./PaymentSetups');
  108. 108 : obj['payment_setups'] = PaymentSetups.constructFromObject(data['payment_setups']);
  109. 109 : }
  110. 110 : if (data.hasOwnProperty('audit_info')) {
  111. 111 : var AuditInfo = require('./AuditInfo');
  112. 112 : obj['audit_info'] = AuditInfo.constructFromObject(data['audit_info']);
  113. 113 : }
  114. 114 : if (data.hasOwnProperty('ID_CUSTOMER')) {
  115. 115 : obj['ID_CUSTOMER'] = data['ID_CUSTOMER'];
  116. 116 : }
  117. 117 : }
  118. 118 : return obj;
  119. 119 : };
  120. 120 :
  121. 121 :
  122. 122 : exports.prototype = Object.create(Base.prototype);
  123. 123 : exports.prototype.constructor = exports;
  124. 124 :
  125. 125 : /**
  126. 126 : * The first name of the customer. Either first_name or last_name is required to create a customer.
  127. 127 : * @member {String} first_name
  128. 128 : */
  129. 129 : exports.prototype['first_name'] = undefined;
  130. 130 : /**
  131. 131 : * The last name of the customer. Either first_name or last_name is required to create a customer.
  132. 132 : * @member {String} last_name
  133. 133 : */
  134. 134 : exports.prototype['last_name'] = undefined;
  135. 135 : /**
  136. 136 : * The middle name of the customer.
  137. 137 : * @member {String} middle_name
  138. 138 : */
  139. 139 : exports.prototype['middle_name'] = undefined;
  140. 140 : /**
  141. 141 : * The gender of the customer.
  142. 142 : * @member {String} gender
  143. 143 : */
  144. 144 : exports.prototype['gender'] = undefined;
  145. 145 : /**
  146. 146 : * The date of birth of the customer. It should be in the full-date format as per ISO8601, namely, YYYY-MM-DD.
  147. 147 : * @member {String} date_of_birth
  148. 148 : */
  149. 149 : exports.prototype['date_of_birth'] = undefined;
  150. 150 : /**
  151. 151 : * The SSN of the customer if the account holder is an individual or the tax ID, if the customer is a business.
  152. 152 : * @member {String} ssn
  153. 153 : */
  154. 154 : exports.prototype['ssn'] = undefined;
  155. 155 : /**
  156. 156 : * The language in which the customer wants the alerts and notifications from EBPP. This is to be specified in the format,<br><i>< <b>ISO-639-1 language code</b> >_< <b>ISO ALPHA-2 Country Code</b> ></i>.<br> For e.g., <b>en_US</b> indicates the language preference as US English, which is also the default value.
  157. 157 : * @member {String} locale
  158. 158 : */
  159. 159 : exports.prototype['locale'] = undefined;
  160. 160 : /**
  161. 161 : * The email address of the customer to which notifications from EBPP will be sent. This will default to the registered_email while creating a customer.
  162. 162 : * @member {String} email
  163. 163 : */
  164. 164 : exports.prototype['email'] = undefined;
  165. 165 : /**
  166. 166 : * The email address of the customer registered with the client. This may be used to uniquely identify the customer if the client is set up accordingly in EBPP.
  167. 167 : * @member {String} registered_email
  168. 168 : */
  169. 169 : exports.prototype['registered_email'] = undefined;
  170. 170 : /**
  171. 171 : * The home phone number of the customer.
  172. 172 : * @member {String} home_phone
  173. 173 : */
  174. 174 : exports.prototype['home_phone'] = undefined;
  175. 175 : /**
  176. 176 : * The work phone number of the customer.
  177. 177 : * @member {String} work_phone
  178. 178 : */
  179. 179 : exports.prototype['work_phone'] = undefined;
  180. 180 : /**
  181. 181 : * The mobile phone number of the customer.
  182. 182 : * @member {String} mobile_phone
  183. 183 : */
  184. 184 : exports.prototype['mobile_phone'] = undefined;
  185. 185 : /**
  186. 186 : * @member {Address} address
  187. 187 : */
  188. 188 : exports.prototype['address'] = undefined;
  189. 189 : /**
  190. 190 : * The additional information or meta-information that EBPP can accept, maintain and transmit back to the client. The custom fields need to be configured with EBPP before they can be accepted. EBPP would reject custom fields that are not pre-configured. Please contact <a href = \"mailto: support@billerpayments.com\">support@billerpayments.com</a> for more information on configuring and using custom fields. Only the custom fields enabled for the client, in EBPP, would be accepted in the requests.
  191. 191 : * @member {{String: String}} custom_fields
  192. 192 : */
  193. 193 : exports.prototype['custom_fields'] = undefined;
  194. 194 : /**
  195. 195 : * The unique identifier in the client system for the customer.
  196. 196 : * @member {String} customer_reference
  197. 197 : */
  198. 198 : exports.prototype['customer_reference'] = undefined;
  199. 199 : /**
  200. 200 : * The unique identifier assigned by EBPP to the customer.
  201. 201 : * @member {String} id
  202. 202 : */
  203. 203 : exports.prototype['id'] = undefined;
  204. 204 : /**
  205. 205 : * The status of the customer in EBPP.
  206. 206 : * @member {String} status
  207. 207 : */
  208. 208 : exports.prototype['status'] = undefined;
  209. 209 : /**
  210. 210 : * This URL fetches the Customer details.
  211. 211 : * @member {String} url
  212. 212 : */
  213. 213 : exports.prototype['url'] = undefined;
  214. 214 : /**
  215. 215 : * Comments that can be used to recollect the operation performed on the resource object. API clients need to ensure that no sensitive information is passed in the memo. Alacriti (EBPP) is not responsible for the security of any sensitive information that may be passed as part of the memo.
  216. 216 : * @member {String} comments
  217. 217 : */
  218. 218 : exports.prototype['comments'] = undefined;
  219. 219 : /**
  220. 220 : * @member {CustomerAccounts} customer_accounts
  221. 221 : */
  222. 222 : exports.prototype['customer_accounts'] = undefined;
  223. 223 : /**
  224. 224 : * @member {FundingAccounts} funding_accounts
  225. 225 : */
  226. 226 : exports.prototype['funding_accounts'] = undefined;
  227. 227 : /**
  228. 228 : * @member {Payments} payments
  229. 229 : */
  230. 230 : exports.prototype['payments'] = undefined;
  231. 231 : /**
  232. 232 : * @member {PaymentSetups} payment_setups
  233. 233 : */
  234. 234 : exports.prototype['payment_setups'] = undefined;
  235. 235 : /**
  236. 236 : * @member {AuditInfo} audit_info
  237. 237 : */
  238. 238 : exports.prototype['audit_info'] = undefined;
  239. 239 : /**
  240. 240 : * The unique identifier assigned by EBPP to the customer.
  241. 241 : * @member {String} ID_CUSTOMER
  242. 242 : */
  243. 243 : exports.prototype['ID_CUSTOMER'] = undefined;
  244. 244 :
  245. 245 : /**
  246. 246 : * @param {String} client_key - The client_key of Customer.
  247. 247 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  248. 248 : */
  249. 249 : exports.prototype.forClient = function (client_key) {
  250. 250 : var _this = this;
  251. 251 : Base.prototype.forClient.call(_this,client_key);
  252. 252 : return _this;
  253. 253 : };
  254. 254 : /**
  255. 255 : * @param {String} channel - The channel of Customer.
  256. 256 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  257. 257 : */
  258. 258 : exports.prototype.videChannel = function (channel) {
  259. 259 : var _this = this;
  260. 260 : Base.prototype.videChannel.call(_this,channel);
  261. 261 : return _this;
  262. 262 : };
  263. 263 : /**
  264. 264 : * @param {String} first_name - The first_name of Customer.
  265. 265 : * @param {String} last_name - The last_name of Customer.
  266. 266 : * @param {String} middle_name - The middle_name of Customer.
  267. 267 : * @param {String} date_of_birth - The date_of_birth of Customer.
  268. 268 : * @param {String} ssn - The ssn of Customer.
  269. 269 : * @param {String} gender - The gender of Customer.
  270. 270 : * @param {String} registered_email - The registered_email of Customer.
  271. 271 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  272. 272 : */
  273. 273 : exports.prototype.withDetails = function (first_name, last_name, middle_name, date_of_birth, ssn, gender, registered_email) {
  274. 274 : var _this = this;
  275. 275 :
  276. 276 : _this['first_name'] = first_name;
  277. 277 :
  278. 278 : _this['last_name'] = last_name;
  279. 279 :
  280. 280 : _this['middle_name'] = middle_name;
  281. 281 :
  282. 282 : _this['date_of_birth'] = date_of_birth;
  283. 283 :
  284. 284 : _this['ssn'] = ssn;
  285. 285 :
  286. 286 : _this['gender'] = gender;
  287. 287 :
  288. 288 : _this['registered_email'] = registered_email;
  289. 289 :
  290. 290 :
  291. 291 : return _this;
  292. 292 : };
  293. 293 : /**
  294. 294 : * @param {String} customer_reference - The customer_reference of Customer.
  295. 295 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  296. 296 : */
  297. 297 : exports.prototype.withReference = function (customer_reference) {
  298. 298 : var _this = this;
  299. 299 :
  300. 300 : _this['customer_reference'] = customer_reference;
  301. 301 :
  302. 302 :
  303. 303 : return _this;
  304. 304 : };
  305. 305 : /**
  306. 306 : * @param {String} status - The status of Customer.
  307. 307 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  308. 308 : */
  309. 309 : exports.prototype.withStatus = function (status) {
  310. 310 : var _this = this;
  311. 311 :
  312. 312 : _this['status'] = status;
  313. 313 :
  314. 314 :
  315. 315 : return _this;
  316. 316 : };
  317. 317 : /**
  318. 318 : * @param {String} email - The email of Customer.
  319. 319 : * @param {String} home_phone - The home_phone of Customer.
  320. 320 : * @param {String} work_phone - The work_phone of Customer.
  321. 321 : * @param {String} mobile_phone - The mobile_phone of Customer.
  322. 322 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  323. 323 : */
  324. 324 : exports.prototype.withContactInfo = function (email, home_phone, work_phone, mobile_phone) {
  325. 325 : var _this = this;
  326. 326 :
  327. 327 : _this['email'] = email;
  328. 328 :
  329. 329 : _this['home_phone'] = home_phone;
  330. 330 :
  331. 331 : _this['work_phone'] = work_phone;
  332. 332 :
  333. 333 : _this['mobile_phone'] = mobile_phone;
  334. 334 :
  335. 335 :
  336. 336 : return _this;
  337. 337 : };
  338. 338 : /**
  339. 339 : * @param {String} locale - The locale of Customer.
  340. 340 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  341. 341 : */
  342. 342 : exports.prototype.withLocale = function (locale) {
  343. 343 : var _this = this;
  344. 344 :
  345. 345 : _this['locale'] = locale;
  346. 346 :
  347. 347 :
  348. 348 : return _this;
  349. 349 : };
  350. 350 : /**
  351. 351 : * @param {CustomerAccounts} customer_accounts - The customer_accounts of Customer.
  352. 352 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  353. 353 : */
  354. 354 : exports.prototype.withAccounts = function (customer_accounts) {
  355. 355 : var _this = this;
  356. 356 :
  357. 357 : _this['customer_accounts'] = customer_accounts;
  358. 358 :
  359. 359 :
  360. 360 : return _this;
  361. 361 : };
  362. 362 : /**
  363. 363 : * @param {Address} address - The address of Customer.
  364. 364 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  365. 365 : */
  366. 366 : exports.prototype.withAddress = function (address) {
  367. 367 : var _this = this;
  368. 368 :
  369. 369 : _this['address'] = address;
  370. 370 :
  371. 371 :
  372. 372 : return _this;
  373. 373 : };
  374. 374 : /**
  375. 375 : * @param {{String: String}} custom_fields - The custom_fields of Customer.
  376. 376 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  377. 377 : */
  378. 378 : exports.prototype.withCustomFields = function (custom_fields) {
  379. 379 : var _this = this;
  380. 380 :
  381. 381 : _this['custom_fields'] = custom_fields;
  382. 382 :
  383. 383 :
  384. 384 : return _this;
  385. 385 : };
  386. 386 : /**
  387. 387 : * @param {String} comments - The comments of Customer.
  388. 388 : * @return {module:wrappers/Customer} The instance of <code>Customer</code>.
  389. 389 : */
  390. 390 : exports.prototype.withMemo = function (comments) {
  391. 391 : var _this = this;
  392. 392 :
  393. 393 : _this['comments'] = comments;
  394. 394 :
  395. 395 :
  396. 396 : return _this;
  397. 397 : };
  398. 398 :
  399. 399 : exports.prototype.createdBy = function (requestor, requestor_type) {
  400. 400 : var _this = this;
  401. 401 : _this.requestedBy(requestor, requestor_type);
  402. 402 : return _this;
  403. 403 : };
  404. 404 : exports.prototype.retrievedBy = function (requestor, requestor_type) {
  405. 405 : var _this = this;
  406. 406 : _this.requestedBy(requestor, requestor_type);
  407. 407 : return _this;
  408. 408 : };
  409. 409 : exports.prototype.updatedBy = function (requestor, requestor_type) {
  410. 410 : var _this = this;
  411. 411 : _this.requestedBy(requestor, requestor_type);
  412. 412 : return _this;
  413. 413 : };
  414. 414 :
  415. 415 : exports.prototype.create = function (invocation_context, callback, live_mode, api_end_point) {
  416. 416 : var _this = this;
  417. 417 : var internalCallback = function (errorMessage, parsedData, httpResponse, exception) {
  418. 418 : try {
  419. 419 : var response = ResponseWrapper.wrapResponse(exports, exception, errorMessage, parsedData, httpResponse);
  420. 420 : if (callback) {
  421. 421 : callback(response['exception'], response['data'])
  422. 422 : }
  423. 423 : } catch (e) {
  424. 424 : exception = OrbipayApiError.getDefaultException(e);
  425. 425 : if (callback) {
  426. 426 : callback(exception)
  427. 427 : }
  428. 428 : }
  429. 429 : };
  430. 430 : try {
  431. 431 : _this.withContext(invocation_context, live_mode, api_end_point);
  432. 432 : var handler = new CreateCustomerHandler();
  433. 433 : if (callback && CommonUtil.isFunction(callback)) {
  434. 434 : return handler.process(_this, internalCallback);
  435. 435 : } else {
  436. 436 : return handler.process(_this);
  437. 437 : }
  438. 438 : }
  439. 439 : catch (e){
  440. 440 : var error = OrbipayApiError.getDefaultException(e);
  441. 441 : if (callback) {
  442. 442 : callback(error)
  443. 443 : }
  444. 444 : }
  445. 445 : };
  446. 446 : exports.prototype.get = function (invocation_context, callback, live_mode, api_end_point) {
  447. 447 : var _this = this;
  448. 448 : var internalCallback = function (errorMessage, parsedData, httpResponse, exception) {
  449. 449 : try {
  450. 450 : var response = ResponseWrapper.wrapResponse(exports, exception, errorMessage, parsedData, httpResponse);
  451. 451 : if (callback) {
  452. 452 : callback(response['exception'], response['data'])
  453. 453 : }
  454. 454 : } catch (e) {
  455. 455 : exception = OrbipayApiError.getDefaultException(e);
  456. 456 : if (callback) {
  457. 457 : callback(exception)
  458. 458 : }
  459. 459 : }
  460. 460 : };
  461. 461 : try {
  462. 462 : _this.withContext(invocation_context, live_mode, api_end_point);
  463. 463 : var handler = new GetCustomerHandler();
  464. 464 : if (callback && CommonUtil.isFunction(callback)) {
  465. 465 : return handler.process(_this, internalCallback);
  466. 466 : } else {
  467. 467 : return handler.process(_this);
  468. 468 : }
  469. 469 : }
  470. 470 : catch (e){
  471. 471 : var error = OrbipayApiError.getDefaultException(e);
  472. 472 : if (callback) {
  473. 473 : callback(error)
  474. 474 : }
  475. 475 : }
  476. 476 : };
  477. 477 : exports.prototype.update = function (invocation_context, callback, live_mode, api_end_point) {
  478. 478 : var _this = this;
  479. 479 : var internalCallback = function (errorMessage, parsedData, httpResponse, exception) {
  480. 480 : try {
  481. 481 : var response = ResponseWrapper.wrapResponse(exports, exception, errorMessage, parsedData, httpResponse);
  482. 482 : if (callback) {
  483. 483 : callback(response['exception'], response['data'])
  484. 484 : }
  485. 485 : } catch (e) {
  486. 486 : exception = OrbipayApiError.getDefaultException(e);
  487. 487 : if (callback) {
  488. 488 : callback(exception)
  489. 489 : }
  490. 490 : }
  491. 491 : };
  492. 492 : try {
  493. 493 : _this.withContext(invocation_context, live_mode, api_end_point);
  494. 494 : var handler = new UpdateCustomerHandler();
  495. 495 : if (callback && CommonUtil.isFunction(callback)) {
  496. 496 : return handler.process(_this, internalCallback);
  497. 497 : } else {
  498. 498 : return handler.process(_this);
  499. 499 : }
  500. 500 : }
  501. 501 : catch (e){
  502. 502 : var error = OrbipayApiError.getDefaultException(e);
  503. 503 : if (callback) {
  504. 504 : callback(error)
  505. 505 : }
  506. 506 : }
  507. 507 : };
  508. 508 :
  509. 509 : return exports;
  510. 510 :
  511. 511 : }));