2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Google Documents Portfolio Plugin
20 * @author Dan Poltawski <talktodan@gmail.com>
21 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
23 require_once($CFG->libdir
.'/portfolio/plugin.php');
24 require_once($CFG->libdir
.'/googleapi.php');
26 class portfolio_plugin_googledocs
extends portfolio_plugin_push_base
{
27 private $googleoauth = null;
29 public function supported_formats() {
30 return array(PORTFOLIO_FORMAT_FILE
, PORTFOLIO_FORMAT_RICHHTML
);
33 public static function get_name() {
34 return get_string('pluginname', 'portfolio_googledocs');
37 public function prepare_package() {
38 // We send the files as they are, no prep required.
42 public function get_interactive_continue_url() {
43 return 'http://docs.google.com/';
46 public function expected_time($callertime) {
47 // We're forcing this to be run 'interactively' because the plugin
48 // does not support running in cron.
49 return PORTFOLIO_TIME_LOW
;
52 public function send_package() {
53 if (!$this->googleoauth
) {
54 throw new portfolio_plugin_exception('noauthtoken', 'portfolio_googledocs');
57 $gdocs = new google_docs($this->googleoauth
);
58 foreach ($this->exporter
->get_tempfiles() as $file) {
59 if (!$gdocs->send_file($file)) {
60 throw new portfolio_plugin_exception('sendfailed', 'portfolio_gdocs', $file->get_filename());
65 public function steal_control($stage) {
67 if ($stage != PORTFOLIO_STAGE_CONFIG
) {
71 $this->initialize_oauth();
72 if ($this->googleoauth
->is_logged_in()) {
75 return $this->googleoauth
->get_login_url();
79 public function post_control($stage, $params) {
80 if ($stage != PORTFOLIO_STAGE_CONFIG
) {
84 $this->initialize_oauth();
85 if ($this->googleoauth
->is_logged_in()) {
88 return $this->googleoauth
->get_login_url();
92 public static function allows_multiple_instances() {
96 public static function has_admin_config() {
100 public static function get_allowed_config() {
101 return array('clientid', 'secret');
104 public static function admin_config_form(&$mform) {
106 $a->docsurl
= get_docs_url('Google_OAuth_2.0_setup');
107 $a->callbackurl
= google_oauth
::callback_url()->out(false);
109 $mform->addElement('static', null, '', get_string('oauthinfo', 'portfolio_googledocs', $a));
111 $mform->addElement('text', 'clientid', get_string('clientid', 'portfolio_googledocs'));
112 $mform->setType('clientid', PARAM_RAW_TRIMMED
);
113 $mform->addElement('text', 'secret', get_string('secret', 'portfolio_googledocs'));
114 $mform->setType('secret', PARAM_RAW_TRIMMED
);
116 $strrequired = get_string('required');
117 $mform->addRule('clientid', $strrequired, 'required', null, 'client');
118 $mform->addRule('secret', $strrequired, 'required', null, 'client');
121 private function initialize_oauth() {
122 $returnurl = new moodle_url('/portfolio/add.php');
123 $returnurl->param('postcontrol', 1);
124 $returnurl->param('id', $this->exporter
->get('id'));
125 $returnurl->param('sesskey', sesskey());
127 $clientid = $this->get_config('clientid');
128 $secret = $this->get_config('secret');
130 $this->googleoauth
= new google_oauth($clientid, $secret, $returnurl, google_docs
::REALM
);
133 public function instance_sanity_check() {
134 $clientid = $this->get_config('clientid');
135 $secret = $this->get_config('secret');
137 // If there is no oauth config (e.g. plugins upgraded from < 2.3 then
138 // there will be no config and this plugin should be disabled.
139 if (empty($clientid) or empty($secret)) {
140 return 'nooauthcredentials';