mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
Merge branch 'MDL-58939-master' of git://github.com/sarjona/moodle
This commit is contained in:
commit
e6e32acd21
@ -1725,11 +1725,12 @@ class core_plugin_manager {
|
||||
'block' => array('course_overview', 'messages', 'community', 'participants'),
|
||||
'cachestore' => array('memcache'),
|
||||
'enrol' => array('authorize'),
|
||||
'portfolio' => array('picasa'),
|
||||
'qformat' => array('webct'),
|
||||
'message' => array('jabber'),
|
||||
'quizaccess' => array('safebrowser'),
|
||||
'report' => array('search'),
|
||||
'repository' => array('alfresco'),
|
||||
'repository' => array('alfresco', 'picasa'),
|
||||
'tinymce' => array('dragmath'),
|
||||
'tool' => array('bloglevelupgrade', 'qeupgradehelper', 'timezoneimport', 'assignmentupgrade'),
|
||||
'theme' => array('bootstrapbase', 'clean', 'more', 'afterburner', 'anomaly', 'arialist', 'base',
|
||||
@ -1933,7 +1934,7 @@ class core_plugin_manager {
|
||||
),
|
||||
|
||||
'portfolio' => array(
|
||||
'boxnet', 'download', 'flickr', 'googledocs', 'mahara', 'picasa'
|
||||
'boxnet', 'download', 'flickr', 'googledocs', 'mahara'
|
||||
),
|
||||
|
||||
'profilefield' => array(
|
||||
@ -1994,7 +1995,7 @@ class core_plugin_manager {
|
||||
'repository' => array(
|
||||
'areafiles', 'boxnet', 'contentbank', 'coursefiles', 'dropbox', 'equella', 'filesystem',
|
||||
'flickr', 'flickr_public', 'googledocs', 'local', 'merlot', 'nextcloud',
|
||||
'onedrive', 'picasa', 'recent', 'skydrive', 's3', 'upload', 'url', 'user', 'webdav',
|
||||
'onedrive', 'recent', 'skydrive', 's3', 'upload', 'url', 'user', 'webdav',
|
||||
'wikimedia', 'youtube'
|
||||
),
|
||||
|
||||
|
@ -2786,5 +2786,52 @@ function xmldb_main_upgrade($oldversion) {
|
||||
upgrade_main_savepoint(true, 2021091700.01);
|
||||
}
|
||||
|
||||
if ($oldversion < 2021091700.02) {
|
||||
// If portfolio_picasa is no longer present, remove it.
|
||||
if (!file_exists($CFG->dirroot . '/portfolio/picasa/version.php')) {
|
||||
$instance = $DB->get_record('portfolio_instance', ['plugin' => 'picasa']);
|
||||
if (!empty($instance)) {
|
||||
// Remove all records from portfolio_instance_config.
|
||||
$DB->delete_records('portfolio_instance_config', ['instance' => $instance->id]);
|
||||
// Remove all records from portfolio_instance_user.
|
||||
$DB->delete_records('portfolio_instance_user', ['instance' => $instance->id]);
|
||||
// Remove all records from portfolio_log.
|
||||
$DB->delete_records('portfolio_log', ['portfolio' => $instance->id]);
|
||||
// Remove all records from portfolio_tempdata.
|
||||
$DB->delete_records('portfolio_tempdata', ['instance' => $instance->id]);
|
||||
// Remove the record from the portfolio_instance table.
|
||||
$DB->delete_records('portfolio_instance', ['id' => $instance->id]);
|
||||
}
|
||||
|
||||
// Clean config.
|
||||
unset_all_config_for_plugin('portfolio_picasa');
|
||||
}
|
||||
|
||||
upgrade_main_savepoint(true, 2021091700.02);
|
||||
}
|
||||
|
||||
if ($oldversion < 2021091700.03) {
|
||||
// If repository_picasa is no longer present, remove it.
|
||||
if (!file_exists($CFG->dirroot . '/repository/picasa/version.php')) {
|
||||
$instance = $DB->get_record('repository', ['type' => 'picasa']);
|
||||
if (!empty($instance)) {
|
||||
// Remove all records from repository_instance_config table.
|
||||
$DB->delete_records('repository_instance_config', ['instanceid' => $instance->id]);
|
||||
// Remove all records from repository_instances table.
|
||||
$DB->delete_records('repository_instances', ['typeid' => $instance->id]);
|
||||
// Remove the record from the repository table.
|
||||
$DB->delete_records('repository', ['id' => $instance->id]);
|
||||
}
|
||||
|
||||
// Clean config.
|
||||
unset_all_config_for_plugin('picasa');
|
||||
|
||||
// Remove orphaned files.
|
||||
upgrade_delete_orphaned_file_records();
|
||||
}
|
||||
|
||||
upgrade_main_savepoint(true, 2021091700.03);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -211,212 +211,6 @@ class google_docs {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Class for manipulating picasa through the google data api.
|
||||
*
|
||||
* Docs for this can be found here:
|
||||
* {@link http://code.google.com/apis/picasaweb/developers_guide_protocol.html}
|
||||
*
|
||||
* @package core
|
||||
* @copyright Dan Poltawski <talktodan@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class google_picasa {
|
||||
/** @var string Realm for authentication */
|
||||
const REALM = 'http://picasaweb.google.com/data/';
|
||||
/** @var string Upload url */
|
||||
const UPLOAD_LOCATION = 'https://picasaweb.google.com/data/feed/api/user/default/albumid/default';
|
||||
/** @var string photo list url */
|
||||
const ALBUM_PHOTO_LIST = 'https://picasaweb.google.com/data/feed/api/user/default/albumid/';
|
||||
/** @var string search url */
|
||||
const PHOTO_SEARCH_URL = 'https://picasaweb.google.com/data/feed/api/user/default?kind=photo&q=';
|
||||
/** @var string album list url */
|
||||
const LIST_ALBUMS_URL = 'https://picasaweb.google.com/data/feed/api/user/default';
|
||||
/** @var string manage files url */
|
||||
const MANAGE_URL = 'http://picasaweb.google.com/';
|
||||
|
||||
/** @var google_oauth oauth curl class for making authenticated requests */
|
||||
private $googleoauth = null;
|
||||
/** @var string Last album name retrievied */
|
||||
private $lastalbumname = null;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param google_oauth $googleoauth oauth curl class for making authenticated requests
|
||||
*/
|
||||
public function __construct(google_oauth $googleoauth) {
|
||||
$this->googleoauth = $googleoauth;
|
||||
$this->googleoauth->setHeader('GData-Version: 2');
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a file object to picasaweb
|
||||
*
|
||||
* @param object $file File object
|
||||
* @return boolean True on success
|
||||
*/
|
||||
public function send_file($file) {
|
||||
$this->googleoauth->setHeader("Content-Length: ". $file->get_filesize());
|
||||
$this->googleoauth->setHeader("Content-Type: ". $file->get_mimetype());
|
||||
$this->googleoauth->setHeader("Slug: ". $file->get_filename());
|
||||
|
||||
$this->googleoauth->post(self::UPLOAD_LOCATION, $file->get_content());
|
||||
|
||||
if ($this->googleoauth->info['http_code'] === 201) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns list of photos for file picker.
|
||||
* If top level then returns list of albums, otherwise
|
||||
* photos within an album.
|
||||
*
|
||||
* @param string $path The path to files (assumed to be albumid)
|
||||
* @return mixed $files A list of files for the file picker
|
||||
*/
|
||||
public function get_file_list($path = '') {
|
||||
if (!$path) {
|
||||
return $this->get_albums();
|
||||
} else {
|
||||
return $this->get_album_photos($path);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns list of photos in album specified
|
||||
*
|
||||
* @param int $albumid Photo album to list photos from
|
||||
* @return mixed $files A list of files for the file picker
|
||||
*/
|
||||
public function get_album_photos($albumid) {
|
||||
$albumcontent = $this->googleoauth->get(self::ALBUM_PHOTO_LIST.$albumid);
|
||||
|
||||
return $this->get_photo_details($albumcontent);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the name of the album for which get_photo_details was called last time.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function get_last_album_name() {
|
||||
return $this->lastalbumname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Does text search on the users photos and returns
|
||||
* matches in format for picasa api
|
||||
*
|
||||
* @param string $query Search terms
|
||||
* @return mixed $files A list of files for the file picker
|
||||
*/
|
||||
public function do_photo_search($query) {
|
||||
$content = $this->googleoauth->get(self::PHOTO_SEARCH_URL.htmlentities($query));
|
||||
|
||||
return $this->get_photo_details($content);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all the users albums and returns them as a list of folders
|
||||
* for the file picker
|
||||
*
|
||||
* @return mixes $files Array in the format get_listing uses for folders
|
||||
*/
|
||||
public function get_albums() {
|
||||
$files = array();
|
||||
$content = $this->googleoauth->get(self::LIST_ALBUMS_URL);
|
||||
|
||||
try {
|
||||
if (strpos($content, '<?xml') !== 0) {
|
||||
throw new moodle_exception('invalidxmlresponse');
|
||||
}
|
||||
$xml = new SimpleXMLElement($content);
|
||||
} catch (Exception $e) {
|
||||
// An error occured while trying to parse the XML, let's just return nothing. SimpleXML does not
|
||||
// return a more specific Exception, that's why the global Exception class is caught here.
|
||||
return $files;
|
||||
}
|
||||
|
||||
foreach ($xml->entry as $album) {
|
||||
$gphoto = $album->children('http://schemas.google.com/photos/2007');
|
||||
|
||||
$mediainfo = $album->children('http://search.yahoo.com/mrss/');
|
||||
// Hacky...
|
||||
$thumbnailinfo = $mediainfo->group->thumbnail[0]->attributes();
|
||||
|
||||
$files[] = array( 'title' => (string) $album->title,
|
||||
'date' => userdate($gphoto->timestamp),
|
||||
'size' => (int) $gphoto->bytesUsed,
|
||||
'path' => (string) $gphoto->id,
|
||||
'thumbnail' => (string) $thumbnailinfo['url'],
|
||||
'thumbnail_width' => 160, // 160 is the native maximum dimension.
|
||||
'thumbnail_height' => 160,
|
||||
'children' => array(),
|
||||
);
|
||||
}
|
||||
|
||||
return $files;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recieves XML from a picasa list of photos and returns
|
||||
* array in format for file picker.
|
||||
*
|
||||
* @param string $rawxml XML from picasa api
|
||||
* @return mixed $files A list of files for the file picker
|
||||
*/
|
||||
public function get_photo_details($rawxml) {
|
||||
$files = array();
|
||||
|
||||
try {
|
||||
if (strpos($rawxml, '<?xml') !== 0) {
|
||||
throw new moodle_exception('invalidxmlresponse');
|
||||
}
|
||||
$xml = new SimpleXMLElement($rawxml);
|
||||
} catch (Exception $e) {
|
||||
// An error occured while trying to parse the XML, let's just return nothing. SimpleXML does not
|
||||
// return a more specific Exception, that's why the global Exception class is caught here.
|
||||
return $files;
|
||||
}
|
||||
$this->lastalbumname = (string)$xml->title;
|
||||
|
||||
foreach ($xml->entry as $photo) {
|
||||
$gphoto = $photo->children('http://schemas.google.com/photos/2007');
|
||||
|
||||
$mediainfo = $photo->children('http://search.yahoo.com/mrss/');
|
||||
$fullinfo = $mediainfo->group->content->attributes();
|
||||
// Hacky...
|
||||
$thumbnailinfo = $mediainfo->group->thumbnail[0]->attributes();
|
||||
|
||||
// Derive the nicest file name we can.
|
||||
if (!empty($mediainfo->group->description)) {
|
||||
$title = shorten_text((string)$mediainfo->group->description, 20, false, '');
|
||||
$title = clean_filename($title).'.jpg';
|
||||
} else {
|
||||
$title = (string)$mediainfo->group->title;
|
||||
}
|
||||
|
||||
$files[] = array(
|
||||
'title' => $title,
|
||||
'date' => userdate($gphoto->timestamp),
|
||||
'size' => (int) $gphoto->size,
|
||||
'path' => $gphoto->albumid.'/'.$gphoto->id,
|
||||
'thumbnail' => (string) $thumbnailinfo['url'],
|
||||
'thumbnail_width' => 72, // 72 is the native maximum dimension.
|
||||
'thumbnail_height' => 72,
|
||||
'source' => (string) $fullinfo['url'],
|
||||
'url' => (string) $fullinfo['url']
|
||||
);
|
||||
}
|
||||
|
||||
return $files;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* OAuth 2.0 client for Google Services
|
||||
*
|
||||
|
@ -27,7 +27,7 @@ $string['noauthtoken'] = 'An authentication token has not been received from Goo
|
||||
$string['nooauthcredentials'] = 'OAuth credentials required.';
|
||||
$string['nooauthcredentials_help'] = 'To use the Google Drive portfolio plugin you must configure OAuth credentials in the portfolio settings.';
|
||||
$string['nosessiontoken'] = 'A session token does not exist preventing export to google.';
|
||||
$string['oauthinfo'] = '<p>To use this plugin, you must register your site with Google, as described in the documentation <a href="{$a->docsurl}">Google OAuth 2.0 setup</a>.</p><p>As part of the registration process, you will need to enter the following URL as \'Authorized Redirect URIs\':</p><p>{$a->callbackurl}</p><p>Once registered, you will be provided with a client ID and secret which can be used to configure all Google Drive and Picasa plugins.</p>';
|
||||
$string['oauthinfo'] = '<p>To use this plugin, you must register your site with Google, as described in the documentation <a href="{$a->docsurl}">Google OAuth 2.0 setup</a>.</p><p>As part of the registration process, you will need to enter the following URL as \'Authorized Redirect URIs\':</p><p>{$a->callbackurl}</p><p>Once registered, you will be provided with a client ID and secret which can be used to configure all Google Drive plugins.</p>';
|
||||
$string['pluginname'] = 'Google Drive';
|
||||
$string['privacy:metadata'] = 'This plugin sends data externally to a linked Google account. It does not store data locally.';
|
||||
$string['privacy:metadata:data'] = 'Personal data passed through from the portfolio subsystem.';
|
||||
|
@ -1,80 +0,0 @@
|
||||
<?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 class for requesting user data.
|
||||
*
|
||||
* @package portfolio_picasa
|
||||
* @copyright 2018 Jake Dallimore <jrhdallimore@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
namespace portfolio_picasa\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
use core_privacy\local\metadata\collection;
|
||||
|
||||
/**
|
||||
* Provider for the portfolio_picasa plugin.
|
||||
*
|
||||
* @copyright 2018 Jake Dallimore <jrhdallimore@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements
|
||||
// This portfolio plugin does not store any data itself.
|
||||
// It has no database tables, and it purely acts as a conduit, sending data externally.
|
||||
\core_privacy\local\metadata\provider,
|
||||
\core_portfolio\privacy\portfolio_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 {
|
||||
return $collection->add_external_location_link('picasa.google.com', ['data' => 'privacy:metadata:data'],
|
||||
'privacy:metadata');
|
||||
}
|
||||
|
||||
/**
|
||||
* Export all portfolio data from each portfolio plugin for the specified userid and context.
|
||||
*
|
||||
* @param int $userid The user to export.
|
||||
* @param \context $context The context to export.
|
||||
* @param array $subcontext The subcontext within the context to export this information to.
|
||||
* @param array $linkarray The weird and wonderful link array used to display information for a specific item
|
||||
*/
|
||||
public static function export_portfolio_user_data(int $userid, \context $context, array $subcontext, array $linkarray) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all user information for the provided context.
|
||||
*
|
||||
* @param \context $context The context to delete user data for.
|
||||
*/
|
||||
public static function delete_portfolio_for_context(\context $context) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all user information for the provided user and context.
|
||||
*
|
||||
* @param int $userid The user to delete
|
||||
* @param \context $context The context to refine the deletion.
|
||||
*/
|
||||
public static function delete_portfolio_for_user(int $userid, \context $context) {
|
||||
}
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* @param int $oldversion the version we are upgrading from
|
||||
* @return bool result
|
||||
*/
|
||||
function xmldb_portfolio_picasa_upgrade($oldversion) {
|
||||
global $CFG;
|
||||
|
||||
// Automatically generated Moodle v3.6.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
// Automatically generated Moodle v3.7.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
// Automatically generated Moodle v3.8.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
// Automatically generated Moodle v3.9.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
return true;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Strings for component 'portfolio_picasa', language 'en', branch 'MOODLE_20_STABLE'
|
||||
*
|
||||
* @package portfolio_picasa
|
||||
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['clientid'] = 'Client ID';
|
||||
$string['noauthtoken'] = 'An authentication token has not been received from Google. Please ensure you are allowing Moodle to access your Google account.';
|
||||
$string['nooauthcredentials'] = 'OAuth credentials required.';
|
||||
$string['nooauthcredentials_help'] = 'To use the Picasa portfolio plugin you must configure OAuth credentials in the portfolio settings.';
|
||||
$string['oauthinfo'] = '<p>To use this plugin, you must register your site with Google, as described in the documentation <a href="{$a->docsurl}">Google OAuth 2.0 setup</a>.</p><p>As part of the registration process, you will need to enter the following URL as \'Authorized Redirect URIs\':</p><p>{$a->callbackurl}</p><p>Once registered, you will be provided with a client ID and secret which can be used to configure all Google Drive and Picasa plugins.</p>';
|
||||
$string['pluginname'] = 'Picasa';
|
||||
$string['privacy:metadata'] = 'This plugin sends data externally to a linked Picasa account. It does not store data locally.';
|
||||
$string['privacy:metadata:data'] = 'Personal data passed through from the portfolio subsystem.';
|
||||
$string['sendfailed'] = 'The file {$a} failed to transfer to Picasa';
|
||||
$string['secret'] = 'Secret';
|
@ -1,145 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Picasa Portfolio Plugin
|
||||
*
|
||||
* @author Dan Poltawski <talktodan@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
*/
|
||||
require_once($CFG->libdir.'/portfolio/plugin.php');
|
||||
require_once($CFG->libdir.'/googleapi.php');
|
||||
|
||||
class portfolio_plugin_picasa extends portfolio_plugin_push_base {
|
||||
private $googleoauth = null;
|
||||
|
||||
public function supported_formats() {
|
||||
return array(PORTFOLIO_FORMAT_IMAGE, PORTFOLIO_FORMAT_VIDEO);
|
||||
}
|
||||
|
||||
public static function get_name() {
|
||||
return get_string('pluginname', 'portfolio_picasa');
|
||||
}
|
||||
|
||||
public function prepare_package() {
|
||||
// We send the files as they are, no prep required.
|
||||
return true;
|
||||
}
|
||||
|
||||
public function get_interactive_continue_url() {
|
||||
return 'http://picasaweb.google.com/';
|
||||
}
|
||||
|
||||
public function expected_time($callertime) {
|
||||
// We're forcing this to be run 'interactively' because the plugin
|
||||
// does not support running in cron.
|
||||
return PORTFOLIO_TIME_LOW;
|
||||
}
|
||||
|
||||
public function send_package() {
|
||||
if (!$this->googleoauth) {
|
||||
throw new portfolio_plugin_exception('noauthtoken', 'portfolio_picasa');
|
||||
}
|
||||
|
||||
$picasa = new google_picasa($this->googleoauth);
|
||||
foreach ($this->exporter->get_tempfiles() as $file) {
|
||||
|
||||
if (!$picasa->send_file($file)) {
|
||||
throw new portfolio_plugin_exception('sendfailed', 'portfolio_picasa', $file->get_filename());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function steal_control($stage) {
|
||||
if ($stage != PORTFOLIO_STAGE_CONFIG) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->initialize_oauth();
|
||||
|
||||
if ($this->googleoauth->is_logged_in()) {
|
||||
return false;
|
||||
} else {
|
||||
return $this->googleoauth->get_login_url();
|
||||
}
|
||||
}
|
||||
|
||||
public function post_control($stage, $params) {
|
||||
if ($stage != PORTFOLIO_STAGE_CONFIG) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->initialize_oauth();
|
||||
if ($this->googleoauth->is_logged_in()) {
|
||||
return false;
|
||||
} else {
|
||||
return $this->googleoauth->get_login_url();
|
||||
}
|
||||
}
|
||||
|
||||
public static function has_admin_config() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public static function allows_multiple_instances() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public static function get_allowed_config() {
|
||||
return array('clientid', 'secret');
|
||||
}
|
||||
|
||||
public static function admin_config_form(&$mform) {
|
||||
$a = new stdClass;
|
||||
$a->docsurl = get_docs_url('Google_OAuth_2.0_setup');
|
||||
$a->callbackurl = google_oauth::callback_url()->out(false);
|
||||
|
||||
$mform->addElement('static', null, '', get_string('oauthinfo', 'portfolio_picasa', $a));
|
||||
|
||||
$mform->addElement('text', 'clientid', get_string('clientid', 'portfolio_picasa'));
|
||||
$mform->setType('clientid', PARAM_RAW_TRIMMED);
|
||||
$mform->addElement('text', 'secret', get_string('secret', 'portfolio_picasa'));
|
||||
$mform->setType('secret', PARAM_RAW_TRIMMED);
|
||||
|
||||
$strrequired = get_string('required');
|
||||
$mform->addRule('clientid', $strrequired, 'required', null, 'client');
|
||||
$mform->addRule('secret', $strrequired, 'required', null, 'client');
|
||||
}
|
||||
|
||||
private function initialize_oauth() {
|
||||
$returnurl = new moodle_url('/portfolio/add.php');
|
||||
$returnurl->param('postcontrol', 1);
|
||||
$returnurl->param('id', $this->exporter->get('id'));
|
||||
$returnurl->param('sesskey', sesskey());
|
||||
|
||||
$clientid = $this->get_config('clientid');
|
||||
$secret = $this->get_config('secret');
|
||||
|
||||
$this->googleoauth = new google_oauth($clientid, $secret, $returnurl, google_picasa::REALM);
|
||||
}
|
||||
|
||||
public function instance_sanity_check() {
|
||||
$clientid = $this->get_config('clientid');
|
||||
$secret = $this->get_config('secret');
|
||||
|
||||
// If there is no oauth config (e.g. plugins upgraded from < 2.3 then
|
||||
// there will be no config and this plugin should be disabled.
|
||||
if (empty($clientid) or empty($secret)) {
|
||||
return 'nooauthcredentials';
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
<?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 provider tests.
|
||||
*
|
||||
* @package portfolio_picasa
|
||||
* @copyright 2018 Jake Dallimore <jrhdallimore@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy provider tests class.
|
||||
*
|
||||
* @copyright 2018 Jake Dallimore <jrhdallimore@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class portfolio_picasa_privacy_provider_test extends \core_privacy\tests\provider_testcase {
|
||||
|
||||
/**
|
||||
* Verify that a collection of metadata is returned for this component and that it just links to an external location.
|
||||
*/
|
||||
public function test_get_metadata() {
|
||||
$collection = new \core_privacy\local\metadata\collection('portfolio_picasa');
|
||||
$collection = \portfolio_picasa\privacy\provider::get_metadata($collection);
|
||||
$this->assertNotEmpty($collection);
|
||||
$items = $collection->get_collection();
|
||||
$this->assertEquals(1, count($items));
|
||||
$this->assertInstanceOf(\core_privacy\local\metadata\types\external_location::class, $items[0]);
|
||||
}
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Version details
|
||||
*
|
||||
* @package portfolio
|
||||
* @subpackage picasa
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->version = 2021052500; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->requires = 2021052500; // Requires this Moodle version.
|
||||
$plugin->component = 'portfolio_picasa'; // Full name of the plugin (used for diagnostics).
|
||||
$plugin->cron = 0;
|
@ -1,6 +1,10 @@
|
||||
This files describes API changes in /portfolio/ portfolio system,
|
||||
information provided here is intended especially for developers.
|
||||
|
||||
=== 4.0 ===
|
||||
|
||||
* The portfolio_picasa has been completely removed (Picasa is discontinued since 2016).
|
||||
|
||||
=== 3.7 ===
|
||||
|
||||
* The portfolio_cron() function has been removed. Please use portfolio_cron_task scheduled task instead.
|
||||
|
@ -1,114 +0,0 @@
|
||||
<?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_picasa.
|
||||
*
|
||||
* @package repository_picasa
|
||||
* @copyright 2018 Zig Tan <zig@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace repository_picasa\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\userlist;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Privacy Subsystem for repository_picasa 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(
|
||||
'picasa.google.com',
|
||||
[
|
||||
'search_text' => 'privacy:metadata:repository_picasa:searchtext'
|
||||
],
|
||||
'privacy:metadata:repository_picasa'
|
||||
);
|
||||
|
||||
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 {
|
||||
return new 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) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Plugin capabilities.
|
||||
*
|
||||
* @package repository_picasa
|
||||
* @copyright 2009 Dan Poltawski
|
||||
* @author Dan Poltawski <talktodan@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$capabilities = array(
|
||||
|
||||
'repository/picasa:view' => array(
|
||||
'captype' => 'read',
|
||||
'contextlevel' => CONTEXT_MODULE,
|
||||
'archetypes' => array(
|
||||
'user' => CAP_ALLOW
|
||||
)
|
||||
)
|
||||
);
|
@ -1,39 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* @param int $oldversion the version we are upgrading from
|
||||
* @return bool result
|
||||
*/
|
||||
function xmldb_repository_picasa_upgrade($oldversion) {
|
||||
global $CFG;
|
||||
|
||||
// Automatically generated Moodle v3.6.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
// Automatically generated Moodle v3.7.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
// Automatically generated Moodle v3.8.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
// Automatically generated Moodle v3.9.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
return true;
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Strings for component 'repository_picasa', language 'en', branch 'MOODLE_20_STABLE'
|
||||
*
|
||||
* @package repository_picasa
|
||||
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['clientid'] = 'Client ID';
|
||||
$string['configplugin'] = 'Picasa repository configuration';
|
||||
$string['oauthinfo'] = '<p>To use this plugin, you must register your site with Google, as described in the documentation <a href="{$a->docsurl}">Google OAuth 2.0 setup</a>.</p><p>As part of the registration process, you will need to enter the following URL as \'Authorized Redirect URIs\':</p><p>{$a->callbackurl}</p><p>Once registered, you will be provided with a client ID and secret which can be used to configure all Google Drive and Picasa plugins.</p>';
|
||||
$string['picasa:view'] = 'View picasa repository';
|
||||
$string['pluginname'] = 'Picasa web album';
|
||||
$string['secret'] = 'Secret';
|
||||
$string['privacy:metadata:repository_picasa'] = 'The Picasa web album repository plugin does not store any personal data, but does transmit user data from Moodle to the remote system.';
|
||||
$string['privacy:metadata:repository_picasa:searchtext'] = 'The Picasa repository user search text query.';
|
@ -1,132 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* This plugin is used to access picasa pictures
|
||||
*
|
||||
* @since Moodle 2.0
|
||||
* @package repository_picasa
|
||||
* @copyright 2009 Dan Poltawski <talktodan@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
require_once($CFG->dirroot . '/repository/lib.php');
|
||||
require_once($CFG->libdir.'/googleapi.php');
|
||||
|
||||
/**
|
||||
* Picasa Repository Plugin
|
||||
*
|
||||
* @since Moodle 2.0
|
||||
* @package repository
|
||||
* @subpackage picasa
|
||||
* @copyright 2009 Dan Poltawski
|
||||
* @author Dan Poltawski <talktodan@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class repository_picasa extends repository {
|
||||
private $googleoauth = null;
|
||||
|
||||
public function __construct($repositoryid, $context = SYSCONTEXTID, $options = array()) {
|
||||
parent::__construct($repositoryid, $context, $options);
|
||||
|
||||
$returnurl = new moodle_url('/repository/repository_callback.php');
|
||||
$returnurl->param('callback', 'yes');
|
||||
$returnurl->param('repo_id', $this->id);
|
||||
$returnurl->param('sesskey', sesskey());
|
||||
|
||||
$clientid = get_config('picasa', 'clientid');
|
||||
$secret = get_config('picasa', 'secret');
|
||||
$this->googleoauth = new google_oauth($clientid, $secret, $returnurl, google_picasa::REALM);
|
||||
|
||||
$this->check_login();
|
||||
}
|
||||
|
||||
public function check_login() {
|
||||
return $this->googleoauth->is_logged_in();
|
||||
}
|
||||
|
||||
public function print_login() {
|
||||
$url = $this->googleoauth->get_login_url();
|
||||
|
||||
if ($this->options['ajax']) {
|
||||
$popup = new stdClass();
|
||||
$popup->type = 'popup';
|
||||
$popup->url = $url->out(false);
|
||||
return array('login' => array($popup));
|
||||
} else {
|
||||
echo '<a target="_blank" href="'.$url->out(false).'">'.get_string('login', 'repository').'</a>';
|
||||
}
|
||||
}
|
||||
|
||||
public function get_listing($path='', $page = '') {
|
||||
$picasa = new google_picasa($this->googleoauth);
|
||||
|
||||
$ret = array();
|
||||
$ret['dynload'] = true;
|
||||
$ret['manage'] = google_picasa::MANAGE_URL;
|
||||
$ret['list'] = $picasa->get_file_list($path);
|
||||
$ret['path'] = array((object)array('name'=>get_string('home'), 'path' => ''));
|
||||
if ($path) {
|
||||
$ret['path'][] = (object)array('name'=>$picasa->get_last_album_name(), 'path' => $path);
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
|
||||
public function search($search_text, $page = 0) {
|
||||
$picasa = new google_picasa($this->googleoauth);
|
||||
|
||||
$ret = array();
|
||||
$ret['manage'] = google_picasa::MANAGE_URL;
|
||||
$ret['list'] = $picasa->do_photo_search($search_text);
|
||||
return $ret;
|
||||
}
|
||||
|
||||
public function logout() {
|
||||
$this->googleoauth->log_out();
|
||||
return parent::logout();
|
||||
}
|
||||
|
||||
public function supported_filetypes() {
|
||||
return array('web_image');
|
||||
}
|
||||
public function supported_returntypes() {
|
||||
return (FILE_INTERNAL | FILE_EXTERNAL);
|
||||
}
|
||||
|
||||
public static function get_type_option_names() {
|
||||
return array('clientid', 'secret', 'pluginname');
|
||||
}
|
||||
|
||||
public static function type_config_form($mform, $classname = 'repository') {
|
||||
$a = new stdClass;
|
||||
$a->docsurl = get_docs_url('Google_OAuth_2.0_setup');
|
||||
$a->callbackurl = google_oauth::callback_url()->out(false);
|
||||
|
||||
$mform->addElement('static', null, '', get_string('oauthinfo', 'repository_picasa', $a));
|
||||
|
||||
parent::type_config_form($mform);
|
||||
$mform->addElement('text', 'clientid', get_string('clientid', 'repository_picasa'));
|
||||
$mform->setType('clientid', PARAM_RAW_TRIMMED);
|
||||
$mform->addElement('text', 'secret', get_string('secret', 'repository_picasa'));
|
||||
$mform->setType('secret', PARAM_RAW_TRIMMED);
|
||||
|
||||
$strrequired = get_string('required');
|
||||
$mform->addRule('clientid', $strrequired, 'required', null, 'client');
|
||||
$mform->addRule('secret', $strrequired, 'required', null, 'client');
|
||||
}
|
||||
}
|
||||
|
||||
// Icon for this plugin retrieved from http://www.iconspedia.com/icon/picasa-2711.html
|
||||
// Where the license is said documented to be Free.
|
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB |
@ -1,53 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Picasa repository data generator
|
||||
*
|
||||
* @package repository_picasa
|
||||
* @category test
|
||||
* @copyright 2013 Frédéric Massart
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Picasa repository data generator class
|
||||
*
|
||||
* @package repository_picasa
|
||||
* @category test
|
||||
* @copyright 2013 Frédéric Massart
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class repository_picasa_generator extends testing_repository_generator {
|
||||
|
||||
/**
|
||||
* Fill in type record defaults.
|
||||
*
|
||||
* @param array $record
|
||||
* @return array
|
||||
*/
|
||||
protected function prepare_type_record(array $record) {
|
||||
$record = parent::prepare_type_record($record);
|
||||
if (!isset($record['clientid'])) {
|
||||
$record['clientid'] = 'clientid';
|
||||
}
|
||||
if (!isset($record['secret'])) {
|
||||
$record['secret'] = 'secret';
|
||||
}
|
||||
return $record;
|
||||
}
|
||||
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Version details
|
||||
*
|
||||
* @package repository
|
||||
* @subpackage picasa
|
||||
* @copyright 2009 Dan Poltawski
|
||||
* @author Dan Poltawski <talktodan@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->version = 2021052500; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->requires = 2021052500; // Requires this Moodle version.
|
||||
$plugin->component = 'repository_picasa'; // Full name of the plugin (used for diagnostics).
|
@ -46,7 +46,7 @@ class core_repository_generator_testcase extends advanced_testcase {
|
||||
|
||||
// All the repository types.
|
||||
$all = array('boxnet', 'coursefiles', 'dropbox', 'equella', 'filesystem', 'flickr',
|
||||
'flickr_public', 'googledocs', 'local', 'nextcloud', 'merlot', 'picasa', 'recent', 's3', 'upload', 'url',
|
||||
'flickr_public', 'googledocs', 'local', 'nextcloud', 'merlot', 'recent', 's3', 'upload', 'url',
|
||||
'user', 'webdav', 'wikimedia', 'youtube');
|
||||
|
||||
// The ones enabled during installation.
|
||||
|
@ -3,6 +3,9 @@ information provided here is intended especially for developers. Full
|
||||
details of the repository API are available on Moodle docs:
|
||||
http://docs.moodle.org/dev/Repository_API
|
||||
|
||||
=== 4.0 ===
|
||||
* The repository_picasa has been completely removed (Picasa is discontinued since 2016).
|
||||
|
||||
=== 3.11 ===
|
||||
* The Google Drive repository now includes a new rest API function 'shared_drives_list', which can be used to fetch
|
||||
a list of existing shared drives.
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2021091700.01; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2021091700.03; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
$release = '4.0dev (Build: 20210917)'; // Human-friendly version name
|
||||
|
Loading…
x
Reference in New Issue
Block a user