Файловый менеджер - Редактировать - /home/harasnat/www/learning/lib/amd/src/moodlenet/authorize.js
Назад
// 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/>. /** * MoodleNet authorization. * * @module core/moodlenet/authorize * @copyright 2023 Huong Nguyen <huongnv13@gmail.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @since 4.3 */ import {alert as displayAlert, exception as displayException} from 'core/notification'; import * as MoodleNetService from 'core/moodlenet/service'; import {sendToMoodleNet} from 'core/moodlenet/send_resource'; /** * Handle authorization with MoodleNet server. * * @param {int} issuerId The OAuth 2 issuer ID. * @param {int} courseId Course id. * @param {int} resourceId Resource id. * @param {int} shareFormat Share format. * @return {promise} */ export const handleAuthorization = (issuerId, courseId, resourceId, shareFormat) => { const windowSizeWidth = 550; const windowSizeHeight = 550; // Check if the user is authorized with MoodleNet or not. return MoodleNetService.authorizationCheck(issuerId, courseId).then(async(data) => { if (!data.status) { // Not yet authorized. // Declare moodleNetAuthorize variable, so we can call it later in the callback. window.moodleNetAuthorize = (error, errorDescription) => { // This will be called by the callback after the authorization is successful. if (error === '') { handleAuthorization(issuerId, courseId, resourceId, shareFormat); } else if (error !== 'access_denied') { displayAlert( 'Authorization error', 'Error: ' + error + '<br><br>Error description: ' + errorDescription, 'Cancel' ); } }; // Open the login url of the OAuth 2 issuer for user to login into MoodleNet and authorize. return window.open(data.loginurl, 'moodlenet_auth', `location=0,status=0,width=${windowSizeWidth},height=${windowSizeHeight},scrollbars=yes`); } else { // Already authorized. return sendToMoodleNet(issuerId, resourceId, shareFormat); } }).catch(displayException); };
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка