Skip to content

Commit

Permalink
MDL-68845 calendar: Move duplicated code to function
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyva committed Sep 29, 2020
1 parent 5486b03 commit ea9c822
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 7 deletions.
3 changes: 1 addition & 2 deletions calendar/export.php
Expand Up @@ -141,10 +141,9 @@
$exportform = new core_calendar_export_form(null, $formdata);
$calendarurl = '';
if ($data = $exportform->get_data()) {
$password = $DB->get_record('user', array('id' => $USER->id), 'password');
$params = array();
$params['userid'] = $USER->id;
$params['authtoken'] = sha1($USER->id . (isset($password->password) ? $password->password : '') . $CFG->calendar_exportsalt);
$params['authtoken'] = calendar_get_export_token($USER);
$params['preset_what'] = $data->events['exportevents'];
$params['preset_time'] = $data->period['timeperiod'];

Expand Down
4 changes: 2 additions & 2 deletions calendar/export_execute.php
Expand Up @@ -24,7 +24,7 @@
}

//Check authentication token
$authuserid = !empty($userid) && $authtoken == sha1($userid . $user->password . $CFG->calendar_exportsalt);
$authuserid = !empty($userid) && $authtoken == calendar_get_export_token($user);
//allowing for fallback check of old url - MDL-27542
$authusername = !empty($username) && $authtoken == sha1($username . $user->password . $CFG->calendar_exportsalt);
if (!$authuserid && !$authusername) {
Expand All @@ -44,7 +44,7 @@
$allowedtime = ['weeknow', 'weeknext', 'monthnow', 'monthnext', 'recentupcoming', 'custom'];

if (!empty($generateurl)) {
$authtoken = sha1($user->id . $user->password . $CFG->calendar_exportsalt);
$authtoken = calendar_get_export_token($user);
$params = array();
$params['preset_what'] = $what;
$params['preset_time'] = $time;
Expand Down
17 changes: 14 additions & 3 deletions calendar/lib.php
Expand Up @@ -3667,11 +3667,10 @@ function calendar_get_timestamp($d, $m, $y, $time = 0) {
* @return array The data for template and template name.
*/
function calendar_get_footer_options($calendar) {
global $CFG, $USER, $DB, $PAGE;
global $CFG, $USER, $PAGE;

// Generate hash for iCal link.
$rawhash = $USER->id . $DB->get_field('user', 'password', ['id' => $USER->id]) . $CFG->calendar_exportsalt;
$authtoken = sha1($rawhash);
$authtoken = calendar_get_export_token($USER);

$renderer = $PAGE->get_renderer('core_calendar');
$footer = new \core_calendar\external\footer_options_exporter($calendar, $USER->id, $authtoken);
Expand Down Expand Up @@ -3905,3 +3904,15 @@ function calendar_internal_update_course_and_group_permission(int $courseid, con
}
}
}

/**
* Get the auth token for exporting the given user calendar.
* @param stdClass $user The user to export the calendar for
*
* @return string The export token.
*/
function calendar_get_export_token(stdClass $user): string {
global $CFG, $DB;

return sha1($user->id . $DB->get_field('user', 'password', ['id' => $user->id]) . $CFG->calendar_exportsalt);
}
32 changes: 32 additions & 0 deletions calendar/tests/lib_test.php
Expand Up @@ -963,4 +963,36 @@ public function test_calendar_view_event_allowed_course_event() {
// Viewing as someone not enrolled in a course with guest access on.
$this->assertTrue(calendar_view_event_allowed($caleventguest));
}

/**
* Test for calendar_get_export_token for current user.
*/
public function test_calendar_get_export_token_for_current_user() {
global $USER, $DB, $CFG;

$this->setAdminUser();

// Get my token.
$authtoken = calendar_get_export_token($USER);
$expected = sha1($USER->id . $DB->get_field('user', 'password', ['id' => $USER->id]) . $CFG->calendar_exportsalt);

$this->assertEquals($expected, $authtoken);
}

/**
* Test for calendar_get_export_token for another user.
*/
public function test_calendar_get_export_token_for_another_user() {
global $CFG;

// Get any user token.
$generator = $this->getDataGenerator();
$user = $generator->create_user();

// Get other user token.
$authtoken = calendar_get_export_token($user);
$expected = sha1($user->id . $user->password . $CFG->calendar_exportsalt);

$this->assertEquals($expected, $authtoken);
}
}

0 comments on commit ea9c822

Please sign in to comment.