/js/invaders/src/api/WebGamesApi.js

https://bitbucket.org/Crisu83/invaders · JavaScript · 102 lines · 58 code · 5 blank · 39 comment · 2 complexity · c2cf20b82f71c585a2fd12f912e262ae MD5 · raw file

  1. define([
  2. 'dojo/_base/declare',
  3. 'dojo/_base/xhr',
  4. 'dojo/json',
  5. 'dojox/encoding/base64',
  6. 'dojox/encoding/crypto/_base',
  7. 'dojox/encoding/crypto/Blowfish'
  8. ], function(declare, xhr, json, base64, crypto, Blowfish) {
  9. // Supported REST methods.
  10. var Method = {
  11. GET: 'get',
  12. POST: 'post'
  13. };
  14. // Api actions.
  15. var Action = {
  16. REGISTER_SCORE: 'registerScore'
  17. };
  18. /**
  19. * Web games api class.
  20. * @author Christoffer Niska <ChristofferNiska@gmail.com>
  21. * @class invaders.api.WebGamesApi
  22. */
  23. return declare(null, {
  24. /**
  25. * The api key.
  26. * @type {string}
  27. */
  28. apiKey: '',
  29. /**
  30. * The api secret.
  31. * @type {string}
  32. */
  33. apiSecret: '',
  34. /**
  35. * The api endpoint url.
  36. * @type {string}
  37. */
  38. apiUrl: '',
  39. /**
  40. * Registers the players score.
  41. * @param {object} params the parameters.
  42. */
  43. registerScore: function(params) {
  44. this.call_(Method.POST, Action.REGISTER_SCORE, params);
  45. },
  46. /**
  47. * Calls the api endpoint.
  48. * @param {Method} method the REST method.
  49. * @param {string} action the api action to call.
  50. * @param {object} params the parameters.
  51. * @param {string} token the access token.
  52. * @private
  53. */
  54. call_: function(method, action, params) {
  55. xhr.get({
  56. url: this.apiUrl + 'requestToken',
  57. load: function(response, ioArgs) {
  58. if (response) {
  59. var token = response;
  60. if (xhr.hasOwnProperty(method)) {
  61. xhr[method]({
  62. url: this.apiUrl + 'call',
  63. content: {
  64. k: this.apiKey,
  65. r: this.encrypt_(action, params, token)
  66. },
  67. load: function(response, ioArgs) {
  68. console.log('API response: ' + response);
  69. }
  70. });
  71. }
  72. }
  73. }.bind(this)
  74. });
  75. },
  76. /**
  77. * Encrypts the given parameters.
  78. * @param {string} action the api action.
  79. * @param {object} params the parameters.
  80. * @param {string} token the access token.
  81. * @return {string} the encrypted query.
  82. * @private
  83. */
  84. encrypt_: function(action, params, token) {
  85. var query = {
  86. action: action,
  87. params: params,
  88. token: token
  89. };
  90. query = json.stringify(query);
  91. return Blowfish.encrypt(query, this.apiSecret, {
  92. mode: crypto.cipherModes.ECB,
  93. outputType: crypto.outputTypes.Base64
  94. });
  95. }
  96. });
  97. });