2012-10-16 02:36:54 +08:00
|
|
|
/*
|
2012-10-25 04:04:40 +08:00
|
|
|
BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
|
2012-10-16 02:36:54 +08:00
|
|
|
|
2012-10-25 04:04:40 +08:00
|
|
|
Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
|
2012-10-16 02:36:54 +08:00
|
|
|
|
2012-10-25 04:04:40 +08:00
|
|
|
This program is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU Lesser General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3.0 of the License, or (at your option) any later
|
|
|
|
version.
|
2012-10-16 02:36:54 +08:00
|
|
|
|
2012-10-25 04:04:40 +08:00
|
|
|
BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
2012-10-16 02:36:54 +08:00
|
|
|
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
|
|
|
2012-10-25 04:04:40 +08:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2012-10-16 23:22:45 +08:00
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
import java.util.ArrayList
|
|
|
|
import java.util.HashMap
|
|
|
|
import java.util.List
|
|
|
|
import java.util.Map
|
|
|
|
import java.util.Properties
|
|
|
|
|
2012-10-13 04:01:27 +08:00
|
|
|
import org.apache.commons.codec.digest.DigestUtils
|
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
import net.oauth.OAuthMessage
|
2012-10-17 06:09:56 +08:00
|
|
|
import net.oauth.signature.OAuthSignatureMethod
|
|
|
|
import net.oauth.signature.HMAC_SHA1
|
|
|
|
import org.bigbluebutton.lti.Parameter
|
2012-10-11 23:52:41 +08:00
|
|
|
|
2012-10-16 23:22:45 +08:00
|
|
|
import BigbluebuttonService
|
|
|
|
import LtiService
|
2012-10-11 23:52:41 +08:00
|
|
|
|
|
|
|
class ToolController {
|
|
|
|
private static final String CONTROLLER_NAME = 'ToolController'
|
|
|
|
private static final String RESP_CODE_SUCCESS = 'SUCCESS'
|
|
|
|
private static final String RESP_CODE_FAILED = 'FAILED'
|
|
|
|
|
|
|
|
LtiService ltiService
|
2012-10-13 04:01:27 +08:00
|
|
|
BigbluebuttonService bigbluebuttonService
|
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
def index = {
|
2012-10-17 00:14:16 +08:00
|
|
|
if( ltiService.consumerMap == null) ltiService.initConsumerMap()
|
|
|
|
log.debug CONTROLLER_NAME + "#index" + ltiService.consumerMap
|
2012-10-17 06:09:56 +08:00
|
|
|
log.debug params
|
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
def resultMessageKey = "init"
|
|
|
|
def resultMessage = "init"
|
|
|
|
def success = false
|
2012-10-16 02:36:54 +08:00
|
|
|
def consumer
|
2012-10-11 23:52:41 +08:00
|
|
|
ArrayList<String> missingParams = new ArrayList<String>()
|
|
|
|
log.debug "Checking for required parameters"
|
|
|
|
if (hasAllRequiredParams(params, missingParams)) {
|
|
|
|
def sanitizedParams = sanitizePrametersForBaseString(params)
|
|
|
|
|
2012-10-17 06:09:56 +08:00
|
|
|
consumer = ltiService.getConsumer(params.get(Parameter.CONSUMER_ID))
|
2012-10-16 02:36:54 +08:00
|
|
|
if (consumer != null) {
|
2012-10-17 23:44:18 +08:00
|
|
|
log.debug "Found consumer with key " + consumer.get("key") //+ " and sharedSecret " + consumer.get("secret")
|
2012-10-17 06:09:56 +08:00
|
|
|
if (checkValidSignature(request.getMethod().toUpperCase(), retrieveLtiEndpoint(), consumer.get("secret"), sanitizedParams, params.get(Parameter.OAUTH_SIGNATURE))) {
|
2012-10-25 04:04:40 +08:00
|
|
|
log.debug "The message has a valid signature."
|
|
|
|
|
|
|
|
String locale = params.get(Parameter.LAUNCH_LOCALE)
|
|
|
|
locale = (locale == null || locale.equals("")?"en":locale)
|
|
|
|
log.debug "Locale code =" + locale
|
|
|
|
String[] localeCodes = locale.split("_")
|
|
|
|
//Localize the default welcome message
|
|
|
|
if( localeCodes.length > 1 )
|
|
|
|
session['org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE'] = new Locale(localeCodes[0], localeCodes[1])
|
|
|
|
else
|
|
|
|
session['org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE'] = new Locale(localeCodes[0])
|
|
|
|
|
|
|
|
log.debug "Locale has been set to " + locale
|
|
|
|
String welcome = message(code: "bigbluebutton.welcome", args: ["\"{0}\"", "\"{1}\""])
|
|
|
|
log.debug "Localized default welcome message: [" + welcome + "]"
|
|
|
|
|
|
|
|
//String destinationURL = "http://www.bigbluebutton.org/"
|
|
|
|
String destinationURL = bigbluebuttonService.getJoinURL(params, welcome)
|
|
|
|
|
|
|
|
log.debug "redirecting to " + destinationURL
|
|
|
|
if( destinationURL != null ) {
|
|
|
|
success = true
|
|
|
|
redirect(url:destinationURL)
|
2012-10-11 23:52:41 +08:00
|
|
|
} else {
|
2012-10-25 04:04:40 +08:00
|
|
|
resultMessageKey = 'BigBlueButtonServerError'
|
|
|
|
resultMessage = "The join could not be completed"
|
|
|
|
log.debug resultMessage
|
2012-10-11 23:52:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
resultMessageKey = 'InvalidSignature'
|
2012-10-17 06:09:56 +08:00
|
|
|
resultMessage = "Invalid signature (" + params.get(Parameter.OAUTH_SIGNATURE) + ")."
|
2012-10-11 23:52:41 +08:00
|
|
|
log.debug resultMessage
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
resultMessageKey = 'CustomerNotFound'
|
2012-10-17 06:09:56 +08:00
|
|
|
resultMessage = "Customer with id = " + params.get(Parameter.CONSUMER_ID) + " was not found."
|
2012-10-11 23:52:41 +08:00
|
|
|
log.debug resultMessage
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
resultMessageKey = 'MissingRequiredParameter'
|
|
|
|
String missingStr = ""
|
|
|
|
for(String str:missingParams)
|
|
|
|
missingStr += str + ", ";
|
|
|
|
|
|
|
|
resultMessage = "Missing parameters [$missingStr]"
|
|
|
|
log.debug resultMessage
|
|
|
|
}
|
|
|
|
|
2012-10-13 04:01:27 +08:00
|
|
|
if (!success) {
|
2012-10-11 23:52:41 +08:00
|
|
|
log.debug "Error"
|
|
|
|
response.addHeader("Cache-Control", "no-cache")
|
|
|
|
withFormat {
|
|
|
|
xml {
|
|
|
|
render(contentType:"text/xml") {
|
|
|
|
response() {
|
|
|
|
returncode(success)
|
|
|
|
messageKey(resultMessageKey)
|
|
|
|
message(resultMessage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-13 04:01:27 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
def test = {
|
|
|
|
log.debug CONTROLLER_NAME + "#index"
|
|
|
|
|
|
|
|
response.addHeader("Cache-Control", "no-cache")
|
|
|
|
withFormat {
|
|
|
|
xml {
|
|
|
|
render(contentType:"text/xml") {
|
|
|
|
response() {
|
|
|
|
returncode(false)
|
|
|
|
messageKey('RequestInvalid')
|
|
|
|
message('The request is not supported.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-25 04:04:40 +08:00
|
|
|
private String retrieveLtiEndpoint() {
|
|
|
|
String endPoint = ltiService.endPoint
|
|
|
|
return endPoint
|
|
|
|
}
|
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
/**
|
|
|
|
* Assemble all parameters passed that is required to sign the request.
|
|
|
|
* @param the HTTP request parameters
|
|
|
|
* @return the key:val pairs needed for Basic LTI
|
|
|
|
*/
|
2012-10-16 23:43:20 +08:00
|
|
|
private Properties sanitizePrametersForBaseString(Object params) {
|
2012-10-11 23:52:41 +08:00
|
|
|
|
|
|
|
Properties reqProp = new Properties();
|
|
|
|
for (String key : ((Map<String, String>)params).keySet()) {
|
|
|
|
if (key == "action" || key == "controller") {
|
|
|
|
// Ignore as these are the grails controller and action tied to this request.
|
|
|
|
continue
|
|
|
|
} else if (key == "oauth_signature") {
|
|
|
|
// We don't need this as part of the base string
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
reqProp.setProperty(key, ((Map<String, String>)params).get(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
return reqProp
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if all required parameters have been passed in the request.
|
|
|
|
* @param params - the HTTP request parameters
|
|
|
|
* @param missingParams - a list of missing parameters
|
|
|
|
* @return - true if all required parameters have been passed in
|
|
|
|
*/
|
2012-10-16 23:43:20 +08:00
|
|
|
private boolean hasAllRequiredParams(Object params, Object missingParams) {
|
2012-10-11 23:52:41 +08:00
|
|
|
boolean hasAllParams = true
|
2012-10-17 06:09:56 +08:00
|
|
|
if (! ((Map<String, String>)params).containsKey(Parameter.CONSUMER_ID)) {
|
|
|
|
((ArrayList<String>)missingParams).add(Parameter.CONSUMER_ID);
|
2012-10-11 23:52:41 +08:00
|
|
|
hasAllParams = false;
|
|
|
|
}
|
|
|
|
|
2012-10-17 06:09:56 +08:00
|
|
|
if (! ((Map<String, String>)params).containsKey(Parameter.OAUTH_SIGNATURE)) {
|
|
|
|
((ArrayList<String>)missingParams).add(Parameter.OAUTH_SIGNATURE);
|
2012-10-11 23:52:41 +08:00
|
|
|
hasAllParams = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hasAllParams
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the passed signature is valid.
|
|
|
|
* @param method - POST or GET method used to make the request
|
|
|
|
* @param URL - The target URL for the Basic LTI tool
|
|
|
|
* @param conSecret - The consumer secret key
|
|
|
|
* @param postProp - the parameters passed in from the tool
|
|
|
|
* @param signature - the passed in signature calculated from the client
|
|
|
|
* @return - TRUE if the signatures matches the calculated signature
|
|
|
|
*/
|
2012-10-16 23:43:20 +08:00
|
|
|
private boolean checkValidSignature(String method, String URL, String conSecret, Object postProp, String signature) {
|
2012-10-11 23:52:41 +08:00
|
|
|
OAuthMessage oam = new OAuthMessage(method, URL, ((Properties)postProp).entrySet());
|
|
|
|
HMAC_SHA1 hmac = new HMAC_SHA1();
|
|
|
|
hmac.setConsumerSecret(conSecret);
|
|
|
|
|
2012-10-17 06:09:56 +08:00
|
|
|
log.debug("Base Message String = [ " + hmac.getBaseString(oam) + " ]\n");
|
2012-10-11 23:52:41 +08:00
|
|
|
String calculatedSignature = hmac.getSignature(hmac.getBaseString(oam))
|
2012-10-17 06:09:56 +08:00
|
|
|
log.debug("Calculated: " + calculatedSignature + " Received: " + signature);
|
2012-10-11 23:52:41 +08:00
|
|
|
return calculatedSignature.equals(signature)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|