├── .gitignore ├── LICENSE ├── Moodle_Tool_Config.png ├── Provider ├── keyGenerator.js ├── launch_validation.js ├── mongoDB │ └── Database.js ├── oauth2_validation.js ├── oidc.js ├── register_platform.js ├── student_score.js └── token_generator.js ├── README.md ├── favicon.ico ├── package.json └── tests ├── oauth_request.spec.js └── request_validation.spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/LICENSE -------------------------------------------------------------------------------- /Moodle_Tool_Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Moodle_Tool_Config.png -------------------------------------------------------------------------------- /Provider/keyGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/keyGenerator.js -------------------------------------------------------------------------------- /Provider/launch_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/launch_validation.js -------------------------------------------------------------------------------- /Provider/mongoDB/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/mongoDB/Database.js -------------------------------------------------------------------------------- /Provider/oauth2_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/oauth2_validation.js -------------------------------------------------------------------------------- /Provider/oidc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/oidc.js -------------------------------------------------------------------------------- /Provider/register_platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/register_platform.js -------------------------------------------------------------------------------- /Provider/student_score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/student_score.js -------------------------------------------------------------------------------- /Provider/token_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/Provider/token_generator.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/package.json -------------------------------------------------------------------------------- /tests/oauth_request.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/tests/oauth_request.spec.js -------------------------------------------------------------------------------- /tests/request_validation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanDiegoCodeSchool/lti-node-library/HEAD/tests/request_validation.spec.js --------------------------------------------------------------------------------