mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
999427e985
This ensures the client credentials which are entered are trimmed as users are finding problems with bad pastes.
132 lines
4.4 KiB
PHP
132 lines
4.4 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/>.
|
|
|
|
/**
|
|
* This plugin is used to access google docs
|
|
*
|
|
* @since 2.0
|
|
* @package repository_googledocs
|
|
* @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');
|
|
|
|
/**
|
|
* Google Docs Plugin
|
|
*
|
|
* @since 2.0
|
|
* @package repository_googledocs
|
|
* @copyright 2009 Dan Poltawski <talktodan@gmail.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class repository_googledocs 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('googledocs', 'clientid');
|
|
$secret = get_config('googledocs', 'secret');
|
|
$this->googleoauth = new google_oauth($clientid, $secret, $returnurl, google_docs::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 = '') {
|
|
$gdocs = new google_docs($this->googleoauth);
|
|
|
|
$ret = array();
|
|
$ret['dynload'] = true;
|
|
$ret['list'] = $gdocs->get_file_list();
|
|
return $ret;
|
|
}
|
|
|
|
public function search($search_text, $page = 0) {
|
|
$gdocs = new google_docs($this->googleoauth);
|
|
|
|
$ret = array();
|
|
$ret['dynload'] = true;
|
|
$ret['list'] = $gdocs->get_file_list($search_text);
|
|
return $ret;
|
|
}
|
|
|
|
public function logout() {
|
|
$this->googleoauth->log_out();
|
|
return parent::logout();
|
|
}
|
|
|
|
public function get_file($url, $file = '') {
|
|
$gdocs = new google_docs($this->googleoauth);
|
|
|
|
$path = $this->prepare_file($file);
|
|
return $gdocs->download_file($url, $path);
|
|
}
|
|
|
|
public function supported_filetypes() {
|
|
return '*';
|
|
}
|
|
public function supported_returntypes() {
|
|
return FILE_INTERNAL;
|
|
}
|
|
|
|
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_googledocs', $a));
|
|
|
|
parent::type_config_form($mform);
|
|
$mform->addElement('text', 'clientid', get_string('clientid', 'repository_googledocs'));
|
|
$mform->setType('clientid', PARAM_RAW_TRIMMED);
|
|
$mform->addElement('text', 'secret', get_string('secret', 'repository_googledocs'));
|
|
$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 from: http://www.iconspedia.com/icon/google-2706.html.
|