2014-02-05 12:39:14 -05:00
|
|
|
config = require '../../server_config'
|
|
|
|
winston = require 'winston'
|
|
|
|
mongoose = require 'mongoose'
|
|
|
|
async = require 'async'
|
|
|
|
errors = require '../commons/errors'
|
|
|
|
aws = require 'aws-sdk'
|
2014-02-06 16:25:11 -05:00
|
|
|
db = require './../routes/db'
|
2014-02-05 12:39:14 -05:00
|
|
|
mongoose = require 'mongoose'
|
|
|
|
events = require 'events'
|
|
|
|
queues = require '../commons/queue'
|
2014-02-05 18:07:15 -05:00
|
|
|
LevelSession = require '../levels/sessions/LevelSession'
|
2014-02-05 12:39:14 -05:00
|
|
|
|
2014-02-05 18:07:15 -05:00
|
|
|
connectToScoringQueue = ->
|
|
|
|
unless queues.scoringTaskQueue
|
|
|
|
queues.initializeScoringTaskQueue (err, data) ->
|
2014-02-05 19:41:01 -05:00
|
|
|
winston.info "Connected to scoring task queue!" unless err?
|
2014-02-05 12:39:14 -05:00
|
|
|
|
2014-02-05 18:07:15 -05:00
|
|
|
module.exports.setup = (app) ->
|
|
|
|
connectToScoringQueue()
|
2014-02-05 12:39:14 -05:00
|
|
|
|
2014-02-06 16:25:11 -05:00
|
|
|
module.exports.dispatchTaskToConsumer = (req, res) ->
|
|
|
|
queues.scoringTaskQueue.receiveMessage (err, message) ->
|
2014-02-05 19:41:01 -05:00
|
|
|
|
2014-02-06 16:25:11 -05:00
|
|
|
if message.isEmpty()
|
|
|
|
#TODO: Set message code as 504 Gateway Timeout
|
|
|
|
sendResponseObject req, res, {"error":"No messages were received."}
|
|
|
|
else
|
|
|
|
messageBody = JSON.parse message.getBody()
|
|
|
|
constructTaskObject messageBody, (taskConstructionError, taskObject) ->
|
|
|
|
if taskConstructionError?
|
|
|
|
sendResponseObject req, res, {"error":taskConstructionError}
|
|
|
|
else
|
|
|
|
sendResponseObject req, res, taskObject
|
|
|
|
|
|
|
|
|
|
|
|
module.exports.processTaskResult = (req, res) ->
|
|
|
|
clientResponseObject = JSON.parse req.body
|
|
|
|
res.end("You posted an object to score!")
|
|
|
|
###
|
|
|
|
sampleClientResponseObject =
|
|
|
|
"processorUserID": "51eb2714fa058cb20d0006ef" #user ID of the person processing
|
|
|
|
"processingTime": 2745 #time in milliseconds
|
|
|
|
"processedSessionID": "52dfeb17c8b5f435c7000025" #the processed session
|
|
|
|
"processedSessionChangedTime": ISODate("2014-01-22T16:28:12.450Z") #to see if the session processed is the one in the database
|
|
|
|
"playerResults": [
|
|
|
|
{"ID":"51eb2714fa058cb20d0006ef", "team":"humans","metrics": {"reachedGoal":false, "rank":2}}
|
|
|
|
{"ID":"51eb2714fa058cb20d00fedg", "team":"ogres","metrics": {"reachedGoal":true, "rank":1}}
|
|
|
|
]
|
|
|
|
###
|
2014-02-05 12:39:14 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sendResponseObject = (req,res,object) ->
|
|
|
|
res.setHeader('Content-Type', 'application/json')
|
|
|
|
res.send(object)
|
|
|
|
res.end()
|
|
|
|
|
|
|
|
|
2014-02-05 18:07:15 -05:00
|
|
|
constructTaskObject = (taskMessageBody, callback) ->
|
|
|
|
getSessionInformation taskMessageBody.sessionID, (err, sessionInformation) ->
|
|
|
|
return callback err, data if err?
|
|
|
|
taskObject =
|
|
|
|
"messageGenerated": Date.now()
|
|
|
|
"sessionID": sessionInformation.sessionID
|
|
|
|
"sessionChangedTime": sessionInformation.changed
|
|
|
|
"taskGeneratingPlayerID": sessionInformation.creator
|
|
|
|
"code": sessionInformation.code
|
|
|
|
"players": sessionInformation.players
|
|
|
|
|
2014-02-05 19:41:01 -05:00
|
|
|
callback err, taskObject
|
|
|
|
###
|
|
|
|
"players" : [
|
|
|
|
{"ID":"51eb2714fa058cb20d0006ef", "team":"humans", "userCodeMap": "code goes here"}
|
|
|
|
{"ID":"51eb2714fa058cb20d00fedg", "team":"ogres","userCodeMap": "code goes here"}
|
|
|
|
]
|
|
|
|
###
|
2014-02-05 18:07:15 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-05 19:41:01 -05:00
|
|
|
getSessionInformation = (sessionIDString, callback) ->
|
|
|
|
LevelSession.findOne {"_id": sessionIDString }, (err, session) ->
|
2014-02-05 18:07:15 -05:00
|
|
|
if err?
|
|
|
|
callback err, {"error":"There was an error retrieving the session."}
|
|
|
|
else
|
2014-02-05 19:41:01 -05:00
|
|
|
session = session.toJSON()
|
2014-02-05 18:07:15 -05:00
|
|
|
sessionInformation =
|
|
|
|
"sessionID": session._id
|
2014-02-05 19:41:01 -05:00
|
|
|
"players": _.cloneDeep session.players
|
|
|
|
"code": _.cloneDeep session.code
|
2014-02-05 18:07:15 -05:00
|
|
|
"changed": session.changed
|
|
|
|
"creator": session.creator
|
|
|
|
callback err, sessionInformation
|
|
|
|
|
|
|
|
processClientResponse = (clientResponseBody, callback) ->
|
|
|
|
return
|
|
|
|
|
2014-02-05 12:39:14 -05:00
|
|
|
|
|
|
|
|