first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-09-30 18:11:26 -04:00
commit e592ca6823
27270 changed files with 5002257 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
<?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/>.
/**
* Class for loading/storing access records from the DB.
*
* @package repository_onedrive
* @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace repository_onedrive;
defined('MOODLE_INTERNAL') || die();
use core\persistent;
/**
* Class for loading/storing issuer from the DB
*
* @package repository_onedrive
* @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class access extends persistent {
const TABLE = 'repository_onedrive_access';
/**
* Return the definition of the properties of this model.
*
* @return array
*/
protected static function define_properties() {
return array(
'permissionid' => array(
'type' => PARAM_RAW
),
'itemid' => array(
'type' => PARAM_RAW
)
);
}
}
@@ -0,0 +1,259 @@
<?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/>.
/**
* Privacy Subsystem implementation for repository_onedrive.
*
* @package repository_onedrive
* @copyright 2018 Zig Tan <zig@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace repository_onedrive\privacy;
use core_privacy\local\metadata\collection;
use core_privacy\local\request\approved_contextlist;
use core_privacy\local\request\approved_userlist;
use core_privacy\local\request\context;
use core_privacy\local\request\contextlist;
use core_privacy\local\request\transform;
use core_privacy\local\request\userlist;
use \core_privacy\local\request\writer;
defined('MOODLE_INTERNAL') || die();
/**
* Privacy Subsystem for repository_onedrive implementing metadata and plugin providers.
*
* @copyright 2018 Zig Tan <zig@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class provider implements
\core_privacy\local\metadata\provider,
\core_privacy\local\request\core_userlist_provider,
\core_privacy\local\request\plugin\provider {
/**
* Returns meta data about this system.
*
* @param collection $collection The initialised collection to add items to.
* @return collection A listing of user data stored through this system.
*/
public static function get_metadata(collection $collection): collection {
$collection->add_external_location_link(
'onedrive.live.com',
[
'searchtext' => 'privacy:metadata:repository_onedrive:searchtext'
],
'privacy:metadata:repository_onedrive'
);
// The repository_onedrive has a 'repository_onedrive_access' table that contains user data.
$collection->add_database_table(
'repository_onedrive_access',
[
'itemid' => 'privacy:metadata:repository_onedrive:repository_onedrive_access:itemid',
'permissionid' => 'privacy:metadata:repository_onedrive:repository_onedrive_access:permissionid',
'timecreated' => 'privacy:metadata:repository_onedrive:repository_onedrive_access:timecreated',
'timemodified' => 'privacy:metadata:repository_onedrive:repository_onedrive_access:timemodified',
'usermodified' => 'privacy:metadata:repository_onedrive:repository_onedrive_access:usermodified'
],
'privacy:metadata:repository_onedrive'
);
return $collection;
}
/**
* Get the list of contexts that contain user information for the specified user.
*
* @param int $userid The user to search.
* @return contextlist $contextlist The contextlist containing the list of contexts used in this plugin.
*/
public static function get_contexts_for_userid(int $userid): contextlist {
$contextlist = new contextlist();
// The data is associated at the user context level, so retrieve the user's context id.
$sql = "SELECT c.id
FROM {repository_onedrive_access} roa
JOIN {context} c ON c.instanceid = roa.usermodified AND c.contextlevel = :contextuser
WHERE roa.usermodified = :userid
GROUP BY c.id";
$params = [
'contextuser' => CONTEXT_USER,
'userid' => $userid
];
$contextlist->add_from_sql($sql, $params);
return $contextlist;
}
/**
* Get the list of users who have data within a context.
*
* @param userlist $userlist The userlist containing the list of users who have data in this context/plugin combination.
*/
public static function get_users_in_context(userlist $userlist) {
$context = $userlist->get_context();
if (!$context instanceof \context_user) {
return;
}
// The data is associated at the user context level, so retrieve the user's context id.
$sql = "SELECT usermodified AS userid
FROM {repository_onedrive_access}
WHERE usermodified = ?";
$params = [$context->instanceid];
$userlist->add_from_sql('userid', $sql, $params);
}
/**
* Export all user data for the specified user, in the specified contexts.
*
* @param approved_contextlist $contextlist The approved contexts to export information for.
*/
public static function export_user_data(approved_contextlist $contextlist) {
global $DB;
// If the user has data, then only the User context should be present so get the first context.
$contexts = $contextlist->get_contexts();
if (count($contexts) == 0) {
return;
}
$context = reset($contexts);
// Sanity check that context is at the User context level, then get the userid.
if ($context->contextlevel !== CONTEXT_USER) {
return;
}
$userid = $context->instanceid;
$sql = "SELECT roa.id as id,
roa.itemid as itemid,
roa.permissionid as permissionid,
roa.timecreated as timecreated,
roa.timemodified as timemodified
FROM {repository_onedrive_access} roa
WHERE roa.usermodified = :userid";
$params = [
'userid' => $userid
];
$onedriveaccesses = $DB->get_records_sql($sql, $params);
$index = 0;
foreach ($onedriveaccesses as $onedriveaccess) {
// Data export is organised in: {User Context}/Repository plug-ins/{Plugin Name}/Access/{index}/data.json.
$index++;
$subcontext = [
get_string('plugin', 'core_repository'),
get_string('pluginname', 'repository_onedrive'),
get_string('access', 'repository_onedrive'),
$index
];
$data = (object) [
'itemid' => $onedriveaccess->itemid,
'permissionid' => $onedriveaccess->permissionid,
'timecreated' => transform::datetime($onedriveaccess->timecreated),
'timemodified' => transform::datetime($onedriveaccess->timemodified)
];
writer::with_context($context)->export_data($subcontext, $data);
}
}
/**
* Delete all data for all users in the specified context.
*
* @param context $context The specific context to delete data for.
*/
public static function delete_data_for_all_users_in_context(\context $context) {
global $DB;
// Sanity check that context is at the User context level, then get the userid.
if ($context->contextlevel !== CONTEXT_USER) {
return;
}
$userid = $context->instanceid;
$DB->delete_records('repository_onedrive_access', ['usermodified' => $userid]);
}
/**
* Delete all user data for the specified user, in the specified contexts.
*
* @param approved_contextlist $contextlist The approved contexts and user information to delete information for.
*/
public static function delete_data_for_user(approved_contextlist $contextlist) {
global $DB;
// If the user has data, then only the User context should be present so get the first context.
$contexts = $contextlist->get_contexts();
if (count($contexts) == 0) {
return;
}
$context = reset($contexts);
// Sanity check that context is at the User context level, then get the userid.
if ($context->contextlevel !== CONTEXT_USER) {
return;
}
$userid = $context->instanceid;
$DB->delete_records('repository_onedrive_access', ['usermodified' => $userid]);
}
/**
* Delete multiple users within a single context.
*
* @param approved_userlist $userlist The approved context and user information to delete information for.
*/
public static function delete_data_for_users(approved_userlist $userlist) {
global $DB;
$context = $userlist->get_context();
// Sanity check that context is at the User context level, then get the userid.
if ($context->contextlevel !== CONTEXT_USER) {
return;
}
$userids = $userlist->get_userids();
list($insql, $inparams) = $DB->get_in_or_equal($userids, SQL_PARAMS_NAMED);
$params = [
'contextid' => $context->id,
'contextuser' => CONTEXT_USER,
];
$params = array_merge($params, $inparams);
// Fetch the repository_onedrive_access IDs in the context for approved users.
$sql = "SELECT roa.id
FROM {repository_onedrive_access} roa
JOIN {context} c ON c.instanceid = roa.usermodified
AND c.contextlevel = :contextuser
AND c.id = :contextid
WHERE roa.usermodified {$insql}";
$accessids = $DB->get_fieldset_sql($sql, $params);
// Delete the relevant repository_onedrive_access data.
list($insql, $params) = $DB->get_in_or_equal($accessids, SQL_PARAMS_NAMED);
$DB->delete_records_select('repository_onedrive_access', "id {$insql}", $params);
}
}
@@ -0,0 +1,90 @@
<?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/>.
/**
* A scheduled task.
*
* @package repository_onedrive
* @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace repository_onedrive;
use \core\task\scheduled_task;
use DateTime;
use DateInterval;
use repository_exception;
use \core\oauth2\rest_exception;
defined('MOODLE_INTERNAL') || die();
require_once($CFG->dirroot . '/repository/lib.php');
/**
* Simple task to delete temporary permission records.
* @package repository_onedrive
* @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class remove_temp_access_task extends scheduled_task {
/**
* Get a descriptive name for this task (shown to admins).
*
* @return string
*/
public function get_name() {
return get_string('removetempaccesstask', 'repository_onedrive');
}
/**
* Do the job.
* Throw exceptions on errors (the job will be retried).
*/
public function execute() {
$accessrecords = access::get_records();
$expires = new DateTime();
$expires->sub(new DateInterval("P7D"));
$timestamp = $expires->getTimestamp();
$issuerid = get_config('onedrive', 'issuerid');
$issuer = \core\oauth2\api::get_issuer($issuerid);
// Add the current user as an OAuth writer.
$systemauth = \core\oauth2\api::get_system_oauth_client($issuer);
if ($systemauth === false) {
$details = 'Cannot connect as system user';
throw new repository_exception('errorwhilecommunicatingwith', 'repository', '', $details);
}
$systemservice = new \repository_onedrive\rest($systemauth);
foreach ($accessrecords as $access) {
if ($access->get('timemodified') < $timestamp) {
$params = ['permissionid' => $access->get('permissionid'), 'itemid' => $access->get('itemid')];
try {
$systemservice->call('delete_permission', $params);
} catch (rest_exception $re) {
// We log and give up here or we will always fail for eternity.
mtrace('Failed to remove access from file: ' . $access->get('itemid'));
}
$access->delete();
}
}
}
}
+141
View File
@@ -0,0 +1,141 @@
<?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/>.
/**
* Microsoft Graph API Rest Interface.
*
* @package repository_onedrive
* @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace repository_onedrive;
defined('MOODLE_INTERNAL') || die();
/**
* Microsoft Graph API Rest Interface.
*
* @copyright 2017 Damyon Wiese
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class rest extends \core\oauth2\rest {
/**
* Define the functions of the rest API.
*
* @return array Example:
* [ 'listFiles' => [ 'method' => 'get', 'endpoint' => 'http://...', 'args' => [ 'folder' => PARAM_STRING ] ] ]
*/
public function get_api_functions() {
return [
'list' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/{parent}/children',
'method' => 'get',
'args' => [
'$select' => PARAM_RAW,
'$expand' => PARAM_RAW,
'parent' => PARAM_RAW,
'$skip' => PARAM_INT,
'$skipToken' => PARAM_RAW,
'$count' => PARAM_INT
],
'response' => 'json'
],
'search' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/{parent}/search(q=\'{search}\')',
'method' => 'get',
'args' => [
'search' => PARAM_NOTAGS,
'$select' => PARAM_RAW,
'parent' => PARAM_RAW,
'$skip' => PARAM_INT,
'$skipToken' => PARAM_RAW,
'$count' => PARAM_INT
],
'response' => 'json'
],
'get' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/items/{fileid}',
'method' => 'get',
'args' => [
'fileid' => PARAM_RAW,
'$select' => PARAM_RAW,
'$expand' => PARAM_RAW
],
'response' => 'json'
],
'create_permission' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/items/{fileid}/invite',
'method' => 'post',
'args' => [
'fileid' => PARAM_RAW
],
'response' => 'json'
],
'create_upload' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/items/{parentid}:/{filename}:/createUploadSession',
'method' => 'post',
'args' => [
'parentid' => PARAM_RAW,
'filename' => PARAM_RAW
],
'response' => 'json'
],
'get_file_by_path' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/root:/{fullpath}',
'method' => 'get',
'args' => [
'fullpath' => PARAM_RAW,
'$select' => PARAM_RAW
],
'response' => 'json'
],
'create_folder' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/items/{parentid}/children',
'method' => 'post',
'args' => [
'parentid' => PARAM_RAW
],
'response' => 'json'
],
'create_link' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/items/{fileid}/createLink',
'method' => 'post',
'args' => [
'fileid' => PARAM_RAW
],
'response' => 'json'
],
'delete_file_by_path' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/root:/{fullpath}',
'method' => 'delete',
'args' => [
'fullpath' => PARAM_RAW,
],
'response' => 'json'
],
'delete_permission' => [
'endpoint' => 'https://graph.microsoft.com/v1.0/me/drive/items/{fileid}/permissions/{permissionid}',
'method' => 'delete',
'args' => [
'fileid' => PARAM_RAW,
'permissionid' => PARAM_RAW
],
'response' => 'json'
],
];
}
}