Skip to content

Commit

Permalink
Updated from parent to 17.04.24 version
Browse files Browse the repository at this point in the history
  • Loading branch information
sarjona committed Apr 19, 2017
1 parent 4ca77a5 commit 838eada
Show file tree
Hide file tree
Showing 806 changed files with 49,996 additions and 3,157 deletions.
9 changes: 9 additions & 0 deletions html/moodle2/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ Release notes for Odissea (http://odissea.xtec.cat)
More information on each of the fixes can be found in the project
development home at https://github.com/projectestac/odissea/

Changes 17.04.24
---------------------------------------------------------------------------------------
- Updated mod/hotpot
- Updated all related wiris plugins
- Updated LangPacks
- Added Vicens Vives modules: one course format, two blocks and a local (Trello #1331)
- Added H5P module (Trello #1571)


Changes 17.03.28
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.1.5 (Trello #1553)
Expand Down
105 changes: 105 additions & 0 deletions html/moodle2/blocks/courses_vicensvives/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
Bloque de cursos Vicens Vives
=============================

Bloque para listar, crear y actualizar cursos a partir de lubros importados del
web service de Vicens Vives. También permite configurar automáticamente el web
service de Moodle.

Versiones de Moodle: 2.8, 2.9, 3.0, 3.1

Parámetros de configuración
---------------------------

* **URL API**: URL del web service de Vicens Vives. Por defecto es
`http://api.vicensvivesdigital.com/rest`.
* **Clave compartida**: Clave compartida con el Web Service de Vicens Vives
para obtener la información de los libros.
* **Secreto compartido**: Secreto compartido con el Web Service de Vicens Vives
para obtener la información de los libros.
* **Número de cursos**: Número de cursos que se muestra en el bloque.
* **Categoría para cursos**: Categoría por defecto para los cursos de libros de
Vicens Vives.

Se muestra un aviso si hay algun error en conectar con el web service de Vicens
Vives o en configurar el web service de Moodle.

Configuración del web service de Moodle
---------------------------------------

En guardar los parámetros de configuración se prepara Moodle para que desde
Vicens Vives puedan llamar al web service del plugin local. Se realizan los
pasos siguientes:

* Se habilitan los web services en Moodle.
* Se habilita el protocolo REST.
* Se crea un usuario con username "wsvicensvives".
* Se crea un rol con nombre "Web Service Vicens Vives" y permisos para usar web
services REST y editar calificaciones.
* Se asigna el rol al usuario en contexto global.
* Se genera un token para el usuario en el servicio Vicens Vives.
* Se envía el token a Vicens Vives mediante una llamada a su web service.

Cliente del web service de Vicens Vives
---------------------------------------

El fichero `lib/vicensvives.php` contiene la implementación del cliente del web
service de Vicens Vives. El cliente puede devolver una de los siguientes
errores:

* Web service no configurado: falta configurar las credenciales (clave
compartida y secreto compartido).
* Fallo de autenticación: no se ha podido obtener un token de autenticación con
las credenciales configuradas.
* Credenciales ya usadas en otro sitio: Vicens Vives no permite usar las mismas
credenciales en más de una instancia de Moodle.
* Error desconocido: si el web service de Vicens Vives devuelve un tipo de
error no reconocido por el cliente.

El token de autenticación se guarda en la base de datos. Si en hacer una llamada
el web service devuelve un error de token inexistente o caducado, se vuelve a
pedir uno nueo con las credenciales configuradas.

El bloque de licencias también usa este cliente para llamar al web service.

La API del web service está documentada en http://api.vicensvivesdigital.com/

Creación de cursos
------------------

El enlace "Crear un nuevo curso" del bloque permite crear un curso a partir de
un libro seleccionado de una lista de libros disponibles.

El idnumber de los cursos creados tiene el formato `vv-BOOKID-N-SUBJECT`. BOOKID
es el ID del libro, N es un número secuencial para distinguir cursos creados a
partir del mismo libro, y SUBJECT es la materia del cursos: "mates", "lengua",
"naturales" o "sociales". Se asigna el formato de curso Vicens Vives a los
cursos.

El libro tiene una estructura de tres niveles: unidades, secciones y
recursos/actividades. En Moodle cada unidad se crea como una sección, y cada
apartado se crea como una etiqueta y (opcionalmente) una actividad LTI. Cada
recurso/actividad se crea como una actividad LTI, excepto los enlaces que son
recursos URL. Los idnumber de las actividades contienen el ID del libro, el tipo
de elemento y el ID del elemento en el libro.

En el libro | En Moodle | idnumber
------------|-----------|---------------------------
Unit | Sección | BOOKID_unit_UNITID
Section | Etiqueta | BOOKID_lebel_SECTIONID
| LTI | BOOKID_section_SECTIONID
Question | LTI | BOOKID_question_QUESTIONID
Link | URL | BOOKID_link_LINKID
Document | LTI | BOOKID_document_DOCUMENTID

La clase `courses_vicensvives_add_book` del fichero `locallib.php` implementa la
creación y actualización de cursos. Entre versiones diferentes de Moodle sólo
cambian los métodos `create_mod` y `set_num_sections`.

Actualización de cursos
-----------------------

El enlace "Ver cursos" muestra una lista de los cursos creados a partir de
libros importados. El botón "Actualizar" vuelve a importar el lubro y añade los
contenidos nuevas al curso (no actualiza los contenidos ya creados). Las
unidades, secciones y actividades se añaden ordenadas según su posición en el
libro.
112 changes: 112 additions & 0 deletions html/moodle2/blocks/courses_vicensvives/block_courses_vicensvives.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<?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/>.

require_once($CFG->dirroot . '/course/lib.php');

class block_courses_vicensvives extends block_list {

public function init() {
$this->title = get_string('pluginname', 'block_courses_vicensvives');
}

public function instance_allow_multiple() {
return false;
}

public function has_config() {
return true;
}

public function instance_config_save($data, $nolongerused = false) {
echo "esto no se cuando se ejecuta";die;
if (empty($data->quizid)) {
$data->quizid = $this->get_owning_quiz();
}
parent::instance_config_save($data);
}

public function get_content() {
global $CFG, $USER, $DB, $OUTPUT;

if ($this->content !== null) {
return $this->content;
}

$this->content = new stdClass;
$this->content->items = array();
$this->content->icons = array();
$this->content->footer = '';

$icon = $OUTPUT->pix_icon('i/course', '');

// Administradores.
if (is_siteadmin()) {
$text = get_string('show_courses', 'block_courses_vicensvives');
$url = new moodle_url('/blocks/courses_vicensvives/courses.php');
$this->content->items[] = html_writer::link($url, $text);

$text = get_string('addcourse', 'block_courses_vicensvives');
$url = new moodle_url('/blocks/courses_vicensvives/books.php');
$this->content->items[] = html_writer::link($url, $text);

return $this->content;
}

// Profesores y gestores
$contextcat = context_coursecat::instance($CFG->block_courses_vicensvives_defaultcategory);
if (isloggedin() and !isguestuser()) {
$mycourses = enrol_get_my_courses(null, 'visible DESC, fullname ASC');
if (!$mycourses and !has_capability('moodle/course:create', $contextcat)) {
return $this->content;
}

// Filtrar mycourses con sólo los de VV.
$courses = $mycourses;

$i = 0;
foreach ($courses as $course) {
// Falta filtrar VV.
$coursecontext = context_course::instance($course->id); // Eliminamos alumnos de esta manera.
if (has_capability('moodle/course:update', $coursecontext) and $i < $CFG->block_courses_vicensvives_maxcourses) {
$linkcss = $course->visible ? "" : " class=\"dimmed\" ";
$text = $icon . ' ' . format_string($course->shortname, true, array('context' => $coursecontext));
$url = new moodle_url('/course/view.php', array('id' => $course->id));
$attributes = array('class' => $course->visible ? '' : 'dimmed');
$this->content->items[] = html_writer::link($url, $text, $attributes);
$i++;
} else if ($i >= $CFG->block_courses_vicensvives_maxcourses) {
$text = get_string('show_more', 'block_courses_vicensvives');
$url = new moodle_url('/blocks/courses_vicensvives/courses.php');
$this->content->items[] = html_writer::link($url, $text);
break;
}
}

if (has_capability('moodle/course:create', $contextcat)) {
$text = get_string('addcourse', 'block_courses_vicensvives');
$url = new moodle_url('/blocks/courses_vicensvives/books.php');
$this->content->items[] = html_writer::link($url, $text);
}

return $this->content;
}

return $this->content;
}

}


Loading

0 comments on commit 838eada

Please sign in to comment.