bigbluebutton-Github/bbb-lti
2021-12-17 12:40:33 +00:00
..
gradle/wrapper upgrading bbb-lti 2021-12-17 12:40:33 +00:00
grails-app upgrading bbb-lti 2021-12-17 12:40:33 +00:00
src Make LTI URLs work. 2019-07-16 23:35:56 +03:00
wrapper Added back missing files for bbb-lti project. 2019-06-25 08:52:59 +03:00
.dockerignore push unfinished work on docker 2018-08-24 17:15:47 -03:00
.gitignore Upgrade bbb-lti and make it standalone. 2019-06-12 21:16:25 +03:00
build.gradle upgrading bbb-lti 2021-12-17 12:40:33 +00:00
docker-entrypoint.sh Services run as starting PID 2021-04-05 12:24:29 +02:00
Dockerfile http => https to prevent 403 access denied during gradle download 2020-01-16 13:45:51 +01:00
gradle.properties upgrading bbb-lti 2021-12-17 12:40:33 +00:00
gradlew upgrading bbb-lti to v4 grails 2021-12-02 16:24:39 +00:00
gradlew.bat upgrading bbb-lti to v4 grails 2021-12-02 16:24:39 +00:00
grails-wrapper.jar Upgrade bbb-lti and make it standalone. 2019-06-12 21:16:25 +03:00
grailsw Upgrade bbb-lti and make it standalone. 2019-06-12 21:16:25 +03:00
grailsw.bat Upgrade bbb-lti and make it standalone. 2019-06-12 21:16:25 +03:00
lti-test.launch bbb-lti 0.1: BigBlueButton LTI interface, Initial commit 2012-10-11 11:52:41 -04:00
lti.launch bbb-lti 0.1: BigBlueButton LTI interface, Initial commit 2012-10-11 11:52:41 -04:00
lti.nginx Make LTI URLs work. 2019-07-16 23:35:56 +03:00
lti.tmproj bbb-lti 0.1: BigBlueButton LTI interface, Initial commit 2012-10-11 11:52:41 -04:00
README.rst bbb-lti: Updated README file 2014-08-29 12:57:02 -04:00
run.sh Services run as starting PID 2021-04-05 12:24:29 +02:00
settings.gradle Added back missing files for bbb-lti project. 2019-06-25 08:52:59 +03:00

#
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
#
# Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
#
# 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.
#
# 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
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
#

BigBlueButton LTI Integration
=============================
BigBlueButton is an open source web conferencing system that enables universities and colleges to deliver a high-quality learning experience to remote students.  

These instructions describe how to install the BBB-LTI Plugin into a BigBlueButton server.

With this plugin you can
    - Enable a BigBlueButton server to be a LTI provider 
    - With a LMS acting as a consumer, allow users to create and join meetings using LMS external tools

Development
=============
bbb-lti is a grails project that can be compiled using the bbb-web components installed in any BigBlueButton development environment.
    
To generate the war file
    grails clean
    grails war

Deployment
=============
Place the war file into the tomcat webapps directory and restart tomcat
        
    sudo cp target/lti-0.2.war /var/lib/tomcat6/webapps/lti.war
       
Configure the properties
        
    sudo vi /var/lib/tomcat6/webapps/lti/WEB-INF/classes/lti.properties

Edit the URL and Salt of the BigBlueButton server you are going to connect to (NOTE: Remove any trailing slashes from the URL!)
    
    bigbluebuttonURL=http://yourbigbluebuttonserver.com/bigbluebutton
    
    bigbluebuttonSalt=yoursalt
        
Edit the LTI basic information
    
    ltiEndPoint=yourbigbluebuttonserver.com
        
    ltiConsumers=demo:welcome,consumer1:secret1
    
Restart tomcat
        
    sudo service tomcat6 restart
        
When running on the BigBlueButton server, create the map to this new application on nginx
    
    

How to use the service
======================
You need:

    1.  A server running any LMS which is a LTI consumer compliant 
    2.  A BigBlueButton 0.8 server running on a separate server (not on the same server as your LMS)
    3.  A server running the plugin (It can be your bigbluebutton server or any other java application server)

Add a new external tool
    In the LMS create a new external tool using the parameters added in the configuration file
    Ej.
    Consumer Key: demo
    Shared Secret: welcome
    URL: http://yourbigbluebuttonserver.com/lti/tool.xml
    
The BigBlueButton roles are assigned according to the roles in the LMS.

MODERATOR
    -Faculty
    -urn:lti:instrole:ims/lis/Faculty
    -Instructor
    -urn:lti:instrole:ims/lis/Instructor
    -Mentor
    -urn:lti:instrole:ims/lis/Mentor
    -Administrator
    -urn:lti:instrole:ims/lis/Administrator
    
ATTENDEE
    -Student    
    -urn:lti:instrole:ims/lis/Student
    -Member
    -urn:lti:instrole:ims/lis/Member
    -Learner
    -urn:lti:instrole:ims/lis/Learner
    -Staff
    -urn:lti:instrole:ims/lis/Staff
    -Alumni
    -urn:lti:instrole:ims/lis/Alumni
    -ProspectiveStudent
    -urn:lti:instrole:ims/lis/ProspectiveStudent
    -Guest
    -urn:lti:instrole:ims/lis/Guest
    -Other
    -urn:lti:instrole:ims/lis/Other
    -Observer
    -urn:lti:instrole:ims/lis/Observer
    -None
    -urn:lti:instrole:ims/lis/None