/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
- define([
- 'dojo/_base/declare',
- 'dojo/_base/xhr',
- 'dojo/json',
- 'dojox/encoding/base64',
- 'dojox/encoding/crypto/_base',
- 'dojox/encoding/crypto/Blowfish'
- ], function(declare, xhr, json, base64, crypto, Blowfish) {
- // Supported REST methods.
- var Method = {
- GET: 'get',
- POST: 'post'
- };
-
- // Api actions.
- var Action = {
- REGISTER_SCORE: 'registerScore'
- };
-
- /**
- * Web games api class.
- * @author Christoffer Niska <ChristofferNiska@gmail.com>
- * @class invaders.api.WebGamesApi
- */
- return declare(null, {
- /**
- * The api key.
- * @type {string}
- */
- apiKey: '',
- /**
- * The api secret.
- * @type {string}
- */
- apiSecret: '',
- /**
- * The api endpoint url.
- * @type {string}
- */
- apiUrl: '',
- /**
- * Registers the players score.
- * @param {object} params the parameters.
- */
- registerScore: function(params) {
- this.call_(Method.POST, Action.REGISTER_SCORE, params);
- },
- /**
- * Calls the api endpoint.
- * @param {Method} method the REST method.
- * @param {string} action the api action to call.
- * @param {object} params the parameters.
- * @param {string} token the access token.
- * @private
- */
- call_: function(method, action, params) {
- xhr.get({
- url: this.apiUrl + 'requestToken',
- load: function(response, ioArgs) {
- if (response) {
- var token = response;
-
- if (xhr.hasOwnProperty(method)) {
- xhr[method]({
- url: this.apiUrl + 'call',
- content: {
- k: this.apiKey,
- r: this.encrypt_(action, params, token)
- },
- load: function(response, ioArgs) {
- console.log('API response: ' + response);
- }
- });
- }
- }
- }.bind(this)
- });
- },
- /**
- * Encrypts the given parameters.
- * @param {string} action the api action.
- * @param {object} params the parameters.
- * @param {string} token the access token.
- * @return {string} the encrypted query.
- * @private
- */
- encrypt_: function(action, params, token) {
- var query = {
- action: action,
- params: params,
- token: token
- };
-
- query = json.stringify(query);
-
- return Blowfish.encrypt(query, this.apiSecret, {
- mode: crypto.cipherModes.ECB,
- outputType: crypto.outputTypes.Base64
- });
- }
- });
- });