mirror of
https://gh.llkk.cc/https://github.com/h5p/moodle-mod_hvp.git
synced 2026-03-04 13:36:41 +08:00
98 lines
3.2 KiB
PHP
98 lines
3.2 KiB
PHP
<?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/>.
|
|
|
|
namespace mod_hvp\output;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
use context_module;
|
|
use mod_hvp;
|
|
|
|
class mobile {
|
|
|
|
public static function mobile_course_view($args) {
|
|
global $DB, $CFG, $OUTPUT, $USER;
|
|
|
|
$cmid = $args['cmid'];
|
|
if (!$CFG->allowframembedding) {
|
|
$context = \context_system::instance();
|
|
if (has_capability('moodle/site:config', $context)) {
|
|
$template = 'mod_hvp/iframe_embedding_disabled';
|
|
} else {
|
|
$template = 'mod_hvp/contact_site_administrator';
|
|
}
|
|
return array(
|
|
'templates' => array(
|
|
array(
|
|
'id' => 'noiframeembedding',
|
|
'html' => $OUTPUT->render_from_template($template, [])
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
// Verify course context.
|
|
$cm = get_coursemodule_from_id('hvp', $cmid);
|
|
if (!$cm) {
|
|
print_error('invalidcoursemodule');
|
|
}
|
|
$course = $DB->get_record('course', array('id' => $cm->course));
|
|
if (!$course) {
|
|
print_error('coursemisconf');
|
|
}
|
|
require_course_login($course, false, $cm, true, true);
|
|
$context = context_module::instance($cm->id);
|
|
require_capability('mod/hvp:view', $context);
|
|
|
|
list($token, $secret) = mod_hvp\mobile_auth::create_embed_auth_token();
|
|
|
|
// Store secret in database.
|
|
$auth = $DB->get_record('hvp_auth', array(
|
|
'user_id' => $USER->id,
|
|
));
|
|
$currenttimestamp = time();
|
|
if ($auth) {
|
|
$DB->update_record('hvp_auth', array(
|
|
'id' => $auth->id,
|
|
'secret' => $token,
|
|
'created_at' => $currenttimestamp,
|
|
));
|
|
} else {
|
|
$DB->insert_record('hvp_auth', array(
|
|
'user_id' => $USER->id,
|
|
'secret' => $token,
|
|
'created_at' => $currenttimestamp
|
|
));
|
|
}
|
|
|
|
$data = [
|
|
'cmid' => $cmid,
|
|
'wwwroot' => $CFG->wwwroot,
|
|
'user_id' => $USER->id,
|
|
'secret' => urlencode($secret)
|
|
];
|
|
|
|
return array(
|
|
'templates' => array(
|
|
array(
|
|
'id' => 'main',
|
|
'html' => $OUTPUT->render_from_template('mod_hvp/mobile_view_page', $data),
|
|
),
|
|
),
|
|
'javascript' => file_get_contents($CFG->dirroot . '/mod/hvp/library/js/h5p-resizer.js'),
|
|
);
|
|
}
|
|
}
|