<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Upgrade script for tool_moodlenet.
*
* @package tool_moodlenet
* @copyright 2020 Adrian Greeve <adrian@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* Upgrade the plugin.
*
* @param int $oldversion
* @return bool always true
*/
function xmldb_tool_moodlenet_upgrade(int $oldversion) {
global $CFG, $DB;
if ($oldversion < 2020060500) {
// Grab some of the old settings.
$categoryname = get_config('tool_moodlenet', 'profile_category');
$profilefield = get_config('tool_moodlenet', 'profile_field_name');
// Master version only!
// Find out if we have a custom profile field for moodle.net.
$sql = "SELECT f.*
FROM {user_info_field} f
JOIN {user_info_category} c ON c.id = f.categoryid and c.name = :categoryname
WHERE f.shortname = :name";
$params = [
'categoryname' => $categoryname,
'name' => $profilefield
];
$record = $DB->get_record_sql($sql, $params);
if (!empty($record)) {
$userentries = $DB->get_recordset('user_info_data', ['fieldid' => $record->id]);
$recordstodelete = [];
foreach ($userentries as $userentry) {
$data = (object) [
'id' => $userentry->userid,
'moodlenetprofile' => $userentry->data
];
$DB->update_record('user', $data, true);
$recordstodelete[] = $userentry->id;
}
$userentries->close();
// Remove the user profile data, fields, and category.
$DB->delete_records_list('user_info_data', 'id', $recordstodelete);
$DB->delete_records('user_info_field', ['id' => $record->id]);
$DB->delete_records('user_info_category', ['name' => $categoryname]);
unset_config('profile_field_name', 'tool_moodlenet');
unset_config('profile_category', 'tool_moodlenet');
}
upgrade_plugin_savepoint(true, 2020060500, 'tool', 'moodlenet');
}
if ($oldversion < 2020061501) {
// Change the domain.
$defaultmoodlenet = get_config('tool_moodlenet', 'defaultmoodlenet');
if ($defaultmoodlenet === 'https://home.moodle.net') {
set_config('defaultmoodlenet', 'https://moodle.net', 'tool_moodlenet');
}
// Change the name.
$defaultmoodlenetname = get_config('tool_moodlenet', 'defaultmoodlenetname');
if ($defaultmoodlenetname === 'Moodle HQ MoodleNet') {
set_config('defaultmoodlenetname', 'MoodleNet Central', 'tool_moodlenet');
}
upgrade_plugin_savepoint(true, 2020061501, 'tool', 'moodlenet');
}
if ($oldversion < 2020061502) {
// Disable the MoodleNet integration by default till further notice.
set_config('enablemoodlenet', 0, 'tool_moodlenet');
upgrade_plugin_savepoint(true, 2020061502, 'tool', 'moodlenet');
}
// Automatically generated Moodle v3.9.0 release upgrade line.
// Put any upgrade step following this.
< if ($oldversion < 2020090700) {
<
< // Find out if there are users with MoodleNet profiles set.
< $sql = "SELECT u.*
< FROM {user} u
< WHERE u.moodlenetprofile IS NOT NULL";
<
< $records = $DB->get_records_sql($sql);
<
< foreach ($records as $record) {
< // Force clean user value just incase there is something malicious.
< $record->moodlenetprofile = clean_text($record->moodlenetprofile, PARAM_NOTAGS);
< $DB->update_record('user', $record);
> if ($oldversion < 2022021600) {
> // This is a special case for if MoodleNet integration has never been enabled,
> // or if defaultmoodlenet is not set for whatever reason.
> if (!get_config('tool_moodlenet', 'defaultmoodlenet')) {
> set_config('defaultmoodlenet', 'https://moodle.net', 'tool_moodlenet');
> set_config('defaultmoodlenetname', get_string('defaultmoodlenetnamevalue', 'tool_moodlenet'), 'tool_moodlenet');
}
< upgrade_plugin_savepoint(true, 2020090700, 'tool', 'moodlenet');
< }
> // Enable MoodleNet and set it to display on activity chooser footer.
> // But only do this if we know for sure that the default MoodleNet is a working one.
> if (get_config('tool_moodlenet', 'defaultmoodlenet') == 'https://moodle.net') {
> set_config('enablemoodlenet', '1', 'tool_moodlenet');
> set_config('activitychooseractivefooter', 'tool_moodlenet');
< // Automatically generated Moodle v3.10.0 release upgrade line.
< // Put any upgrade step following this.
> // Use an adhoc task to send a notification to admin stating MoodleNet is automatically enabled after upgrade.
> $notificationtask = new tool_moodlenet\task\send_enable_notification();
> core\task\manager::queue_adhoc_task($notificationtask);
> }
< // Automatically generated Moodle v3.11.0 release upgrade line.
< // Put any upgrade step following this.
> upgrade_plugin_savepoint(true, 2022021600, 'tool', 'moodlenet');
> }
< if ($oldversion < 2021051701) {
> if ($oldversion < 2022021601) {
$selectsql = "moodlenetprofile IS NOT NULL AND moodlenetprofile != ''";
// If there are any users with MoodleNet profile set.
if ($DB->count_records_select('user', $selectsql)) {
// Remove the value set for the MoodleNet profile as this format can no longer be used to authenticate
// MoodleNet users.
$DB->set_field_select('user', 'moodlenetprofile', '', $selectsql);
// Use an adhoc task to send a notification to admin stating that the user data related to the linked
// MoodleNet profiles has been removed.
$notificationtask = new tool_moodlenet\task\send_mnet_profiles_data_removed_notification();
core\task\manager::queue_adhoc_task($notificationtask);
}
< upgrade_plugin_savepoint(true, 2021051701, 'tool', 'moodlenet');
> upgrade_plugin_savepoint(true, 2022021601, 'tool', 'moodlenet');
}
>
> // Automatically generated Moodle v4.0.0 release upgrade line.
return true;
> // Put any upgrade step following this.
}
>
> // Automatically generated Moodle v4.1.0 release upgrade line.
> // Put any upgrade step following this.