-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sakai LTI compatibility. LTI module combined with app. #1428
base: master
Are you sure you want to change the base?
Changes from all commits
702747b
c705e91
3ed6072
e021f5a
acbfbd7
63384fe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ DCTEST="docker-compose -f docker-compose.yml -f docker-compose.override.test.yml | |
set -e | ||
set -o xtrace | ||
|
||
$DCTEST run --rm app /wait-for-it.sh mysql:3306 -t 20 -- composer run testci -- "$@" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding -T allowed the commit hook to work for me |
||
$DCTEST run -T --rm app /wait-for-it.sh mysql:3306 -t 20 -- composer run testci -- "$@" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ DCTEST="docker-compose -f docker-compose.yml -f docker-compose.override.test.yml | |
set -e | ||
set -o xtrace | ||
|
||
$DCTEST run --rm --no-deps app composer sniff-ci | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again, working to add better support for pre-commit hooks |
||
$DCTEST run -T --rm --no-deps app composer sniff-ci |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,13 @@ protected function tearDown(): void | |
} | ||
} | ||
|
||
protected static function remove_all_roles_for_user($user_id) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To get the tests to pass, I needed a way to easily wipe all roles for a user |
||
{ | ||
\DB::delete('perm_role_to_user') | ||
->where('user_id', $user_id) | ||
->execute(); | ||
} | ||
|
||
protected static function clear_fuel_input() | ||
{ | ||
// reset fuelphp's input class | ||
|
@@ -196,6 +203,10 @@ protected function _as_student() | |
\Fuel\Tasks\Admin::new_user($uname, 'test', 'd', 'student', 'testStudent@ucf.edu', $pword); | ||
$user = \Model_User::find_by_username($uname); | ||
} | ||
else | ||
{ | ||
static::remove_all_roles_for_user($user->id); | ||
} | ||
|
||
$login = \Service_User::login($uname, $pword); | ||
$this->assertTrue($login); | ||
|
@@ -215,13 +226,16 @@ protected function _as_author() | |
{ | ||
require_once(APPPATH.'/tasks/admin.php'); | ||
\Fuel\Tasks\Admin::new_user($uname, 'Prof', 'd', 'Author', 'testAuthor@ucf.edu', $pword); | ||
\Fuel\Tasks\Admin::give_user_role($uname, 'basic_author'); | ||
$user = \Model_User::find_by_username($uname); | ||
} | ||
else | ||
{ | ||
static::remove_all_roles_for_user($user->id); | ||
} | ||
|
||
\Materia\Perm_Manager::add_users_to_roles_system_only([$user->id], [\Materia\Perm_Role::AUTHOR]); | ||
$login = \Service_User::login($uname, $pword); | ||
$this->assertTrue($login); | ||
|
||
$this->users_to_clean[] = $user; | ||
return $user; | ||
} | ||
|
@@ -238,10 +252,14 @@ protected function _as_author_2() | |
{ | ||
require_once(APPPATH.'/tasks/admin.php'); | ||
\Fuel\Tasks\Admin::new_user($uname, 'test', 'd', 'author', 'testAuthor2@ucf.edu', $pword); | ||
\Fuel\Tasks\Admin::give_user_role($uname, 'basic_author'); | ||
$user = \Model_User::find_by_username($uname); | ||
} | ||
else | ||
{ | ||
static::remove_all_roles_for_user($user->id); | ||
} | ||
|
||
\Materia\Perm_Manager::add_users_to_roles_system_only([$user->id], [\Materia\Perm_Role::AUTHOR]); | ||
$login = \Service_User::login($uname, $pword); | ||
$this->assertTrue($login); | ||
$this->users_to_clean[] = $user; | ||
|
@@ -260,10 +278,14 @@ protected function _as_author_3() | |
{ | ||
require_once(APPPATH.'/tasks/admin.php'); | ||
\Fuel\Tasks\Admin::new_user($uname, 'test', 'd', 'author', 'testAuthor3@ucf.edu', $pword); | ||
\Fuel\Tasks\Admin::give_user_role($uname, 'basic_author'); | ||
$user = \Model_User::find_by_username($uname); | ||
} | ||
else | ||
{ | ||
static::remove_all_roles_for_user($user->id); | ||
} | ||
|
||
\Materia\Perm_Manager::add_users_to_roles_system_only([$user->id], [\Materia\Perm_Role::AUTHOR]); | ||
$login = \Service_User::login($uname, $pword); | ||
$this->assertTrue($login); | ||
$this->users_to_clean[] = $user; | ||
|
@@ -282,12 +304,14 @@ protected function _as_super_user() | |
{ | ||
require_once(APPPATH.'/tasks/admin.php'); | ||
\Fuel\Tasks\Admin::new_user($uname, 'test', 'd', 'su', 'testSu@ucf.edu', $pword); | ||
// TODO: super_user should get all these rights inherently right??????!!!! | ||
\Fuel\Tasks\Admin::give_user_role($uname, 'super_user'); | ||
\Fuel\Tasks\Admin::give_user_role($uname, 'basic_author'); | ||
$user = \Model_User::find_by_username($uname); | ||
} | ||
else | ||
{ | ||
static::remove_all_roles_for_user($user->id); | ||
} | ||
|
||
\Materia\Perm_Manager::add_users_to_roles_system_only([$user->id], [\Materia\Perm_Role::AUTHOR, \Materia\Perm_Role::SU]); | ||
$login = \Service_User::login($uname, $pword); | ||
$this->assertTrue($login); | ||
$this->users_to_clean[] = $user; | ||
|
@@ -305,11 +329,14 @@ protected function _as_noauth() | |
{ | ||
require_once(APPPATH.'/tasks/admin.php'); | ||
\Fuel\Tasks\Admin::new_user($uname, 'test', 'd', 'noauth', 'testNoAuth@ucf.edu', $pword); | ||
// TODO: super_user should get all these rights inherently right??????!!!! | ||
\Fuel\Tasks\Admin::give_user_role($uname, 'no_author'); | ||
$user = \Model_User::find_by_username($uname); | ||
} | ||
else | ||
{ | ||
static::remove_all_roles_for_user($user->id); | ||
} | ||
|
||
\Materia\Perm_Manager::add_users_to_roles_system_only([$user->id], [\Materia\Perm_Role::NOAUTH]); | ||
$login = \Service_User::login($uname, $pword); | ||
$this->assertTrue($login); | ||
$this->users_to_clean[] = $user; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
* License outlined in licenses folder | ||
*/ | ||
|
||
namespace Lti; | ||
|
||
class Controller_Lti extends \Controller | ||
{ | ||
use \Trait_Analytics; | ||
|
@@ -20,7 +18,7 @@ public function before() | |
*/ | ||
public function action_index() | ||
{ | ||
$cfg = \Config::get('lti::lti.consumers.default'); | ||
$cfg = \Config::get('lti.consumers.default'); | ||
// TODO: this is hard coded for Canvas, figure out if the request carries any info we can use to figure this out | ||
$this->theme->set_template('partials/config_xml'); | ||
$this->theme->get_template() | ||
|
@@ -58,8 +56,8 @@ public function action_login() | |
$this->theme->set_partial('content', 'partials/post_login'); | ||
$this->insert_analytics(); | ||
|
||
\Js::push_inline('var BASE_URL = "'.\Uri::base().'";'); | ||
\Js::push_inline('var STATIC_CROSSDOMAIN = "'.\Config::get('materia.urls.static').'";'); | ||
\Js::push_inline('const BASE_URL = "'.\Uri::base().'";'); | ||
\Js::push_inline('const STATIC_CROSSDOMAIN = "'.\Config::get('materia.urls.static').'";'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hey, const is a thing! |
||
|
||
\Css::push_group('core'); | ||
|
||
|
@@ -77,8 +75,10 @@ public function action_picker(bool $authenticate = true) | |
$launch = LtiLaunch::from_request(); | ||
if ($authenticate && ! LtiUserManager::authenticate($launch)) return \Response::redirect('/lti/error/unknown_user'); | ||
|
||
$system = ucfirst(\Input::post('tool_consumer_info_product_family_code', 'this system')); | ||
$is_selector_mode = \Input::post('selection_directive') === 'select_link' || \Input::post('lti_message_type') === 'ContentItemSelectionRequest'; | ||
$system = \Input::post('tool_consumer_info_product_family_code', 'this system'); | ||
$lti_message_type = \Input::post('lti_message_type', 'none'); | ||
$lti_key = \Input::post('oauth_consumer_key', ''); | ||
$is_selector_mode = \Input::post('selection_directive') === 'select_link' || $lti_message_type === 'ContentItemSelectionRequest'; | ||
$return_url = \Input::post('launch_presentation_return_url') ?? \Input::post('content_item_return_url'); | ||
|
||
\Materia\Log::profile(['action_picker', \Input::post('selection_directive'), $system, $is_selector_mode ? 'yes' : 'no', $return_url], 'lti'); | ||
|
@@ -89,17 +89,18 @@ public function action_picker(bool $authenticate = true) | |
\Js::push_inline('var BASE_URL = "'.\Uri::base().'";'); | ||
\Js::push_inline('var WIDGET_URL = "'.\Config::get('materia.urls.engines').'";'); | ||
\Js::push_inline('var STATIC_CROSSDOMAIN = "'.\Config::get('materia.urls.static').'";'); | ||
\Js::push_inline($this->theme->view('partials/select_item_js') | ||
->set('system', $system)); | ||
\Css::push_group(['core', 'lti']); | ||
|
||
\Js::push_inline('var LTI_MESSAGE_TYPE = "'.$lti_message_type.'"'); | ||
\Js::push_inline('var system = "'.htmlentities($system).'"'); | ||
\Js::push_inline('const LTI_KEY = "'.$lti_key.'"'); | ||
if ($is_selector_mode && ! empty($return_url)) | ||
{ | ||
\Js::push_inline('var RETURN_URL = "'.$return_url.'"'); | ||
} | ||
|
||
\Css::push_group(['core', 'lti']); | ||
|
||
$this->theme->get_template() | ||
->set('title', 'Select a Widget for Use in '.$system) | ||
->set('title', 'Select a Widget for Use in '.ucfirst($system)) | ||
->set('page_type', 'lti-select'); | ||
|
||
$this->theme->set_partial('content', 'partials/select_item'); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My Docker build process was dying regularly for some reason, this seems to have helped.