MDL-59214 webservice: Return calendar type in get_site_info
[moodle.git] / webservice / externallib.php
CommitLineData
0bf486a6
JM
1<?php
2// This file is part of Moodle - http://moodle.org/
3//
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.
8//
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.
13//
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/>.
16
a0a07014 17
0bf486a6
JM
18/**
19 * external API for mobile web services
20 *
a0a07014
JM
21 * @package core_webservice
22 * @category external
23 * @copyright 2011 Jerome Mouneyrac <jerome@moodle.com>
0bf486a6
JM
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 */
26
639bc8b2
PC
27defined('MOODLE_INTERNAL') || die;
28
29require_once("$CFG->libdir/externallib.php");
30
5d1017e1
JM
31/**
32 * Web service related functions
a0a07014
JM
33 *
34 * @package core_webservice
35 * @category external
36 * @copyright 2011 Jerome Mouneyrac <jerome@moodle.com>
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 * @since Moodle 2.2
5d1017e1
JM
39 */
40class core_webservice_external extends external_api {
0bf486a6 41
5d1017e1
JM
42 /**
43 * Returns description of method parameters
a0a07014 44 *
e6acc551 45 * @return external_function_parameters
a0a07014 46 * @since Moodle 2.2
5d1017e1
JM
47 */
48 public static function get_site_info_parameters() {
0bf486a6
JM
49 return new external_function_parameters(
50 array('serviceshortnames' => new external_multiple_structure (
00a33dcb
SH
51 new external_value(
52 PARAM_ALPHANUMEXT,
53 'service shortname'),
639bc8b2
PC
54 'DEPRECATED PARAMETER - it was a design error in the original implementation. \
55 It is ignored now. (parameter kept for backward compatibility)',
00a33dcb
SH
56 VALUE_DEFAULT,
57 array()
58 ),
59 )
0bf486a6
JM
60 );
61 }
62
63 /**
00a33dcb 64 * Return user information including profile picture + basic site information
0bf486a6 65 * Note:
a0a07014
JM
66 * - no capability checking because we return only known information about logged user
67 *
97f6be20 68 * @param array $serviceshortnames - DEPRECATED PARAMETER - values will be ignored -
639bc8b2 69 * it was an original design error, we keep for backward compatibility.
a0a07014
JM
70 * @return array site info
71 * @since Moodle 2.2
0bf486a6 72 */
639bc8b2 73 public static function get_site_info($serviceshortnames = array()) {
d85bedf7 74 global $USER, $SITE, $CFG, $DB, $PAGE;
0bf486a6 75
5d1017e1 76 $params = self::validate_parameters(self::get_site_info_parameters(),
00a33dcb 77 array('serviceshortnames'=>$serviceshortnames));
0bf486a6 78
11c78c11 79 $context = context_user::instance($USER->id);
d85bedf7
JL
80
81 $userpicture = new user_picture($USER);
82 $userpicture->size = 1; // Size f1.
83 $profileimageurl = $userpicture->get_url($PAGE);
0bf486a6 84
639bc8b2 85 // Site information.
af03513f
JM
86 $siteinfo = array(
87 'sitename' => $SITE->fullname,
88 'siteurl' => $CFG->wwwroot,
89 'username' => $USER->username,
90 'firstname' => $USER->firstname,
91 'lastname' => $USER->lastname,
92 'fullname' => fullname($USER),
92fa81d3 93 'lang' => current_language(),
af03513f 94 'userid' => $USER->id,
43695b6a
DP
95 'userpictureurl' => $profileimageurl->out(false),
96 'siteid' => SITEID
af03513f 97 );
0bf486a6 98
639bc8b2
PC
99 // Retrieve the service and functions from the web service linked to the token
100 // If you call this function directly from external (not a web service call),
101 // then it will still return site info without information about a service
102 // Note: wsusername/wspassword ws authentication is not supported.
af03513f 103 $functions = array();
639bc8b2 104 if ($CFG->enablewebservices) { // No need to check token if web service are disabled and not a ws call.
af03513f 105 $token = optional_param('wstoken', '', PARAM_ALPHANUM);
0bf486a6 106
639bc8b2
PC
107 if (!empty($token)) { // No need to run if not a ws call.
108 // Retrieve service shortname.
af03513f
JM
109 $servicesql = 'SELECT s.*
110 FROM {external_services} s, {external_tokens} t
111 WHERE t.externalserviceid = s.id AND token = ? AND t.userid = ? AND s.enabled = 1';
112 $service = $DB->get_record_sql($servicesql, array($token, $USER->id));
113
114 $siteinfo['downloadfiles'] = $service->downloadfiles;
106c55fb 115 $siteinfo['uploadfiles'] = $service->uploadfiles;
af03513f
JM
116
117 if (!empty($service)) {
639bc8b2
PC
118 // Return the release and version number for web service users only.
119 $siteinfo['release'] = $CFG->release;
120 $siteinfo['version'] = $CFG->version;
121 // Retrieve the functions.
af03513f
JM
122 $functionssql = "SELECT f.*
123 FROM {external_functions} f, {external_services_functions} sf
124 WHERE f.name = sf.functionname AND sf.externalserviceid = ?";
125 $functions = $DB->get_records_sql($functionssql, array($service->id));
126 } else {
639bc8b2
PC
127 throw new coding_exception('No service found in get_site_info: something is buggy, \
128 it should have fail at the ws server authentication layer.');
af03513f
JM
129 }
130 }
131 }
0bf486a6 132
639bc8b2 133 // Build up the returned values of the list of functions.
0bf486a6 134 $componentversions = array();
639bc8b2 135 $availablefunctions = array();
0bf486a6
JM
136 foreach ($functions as $function) {
137 $functioninfo = array();
138 $functioninfo['name'] = $function->name;
639bc8b2
PC
139 if ($function->component == 'moodle' || $function->component == 'core') {
140 $version = $CFG->version; // Moodle version.
0bf486a6 141 } else {
b0d1d941 142 $versionpath = core_component::get_component_directory($function->component).'/version.php';
0bf486a6 143 if (is_readable($versionpath)) {
639bc8b2 144 // We store the component version once retrieved (so we don't load twice the version.php).
0bf486a6 145 if (!isset($componentversions[$function->component])) {
5978773d 146 $plugin = new stdClass();
0bf486a6
JM
147 include($versionpath);
148 $componentversions[$function->component] = $plugin->version;
149 $version = $plugin->version;
150 } else {
151 $version = $componentversions[$function->component];
152 }
153 } else {
639bc8b2
PC
154 // Function component should always have a version.php,
155 // otherwise the function should have been described with component => 'moodle'.
0bf486a6
JM
156 throw new moodle_exception('missingversionfile', 'webservice', '', $function->component);
157 }
158 }
159 $functioninfo['version'] = $version;
639bc8b2 160 $availablefunctions[] = $functioninfo;
0bf486a6
JM
161 }
162
639bc8b2 163 $siteinfo['functions'] = $availablefunctions;
af03513f 164
9184d44d 165 // Mobile CSS theme and alternative login url.
0c6c8664 166 $siteinfo['mobilecssurl'] = !empty($CFG->mobilecssurl) ? $CFG->mobilecssurl : '';
33af7882 167
cc90f74b
JL
168 // Retrieve some advanced features. Only enable/disable ones (bool).
169 $advancedfeatures = array("usecomments", "usetags", "enablenotes", "messaging", "enableblogs",
170 "enablecompletion", "enablebadges");
171 foreach ($advancedfeatures as $feature) {
172 if (isset($CFG->{$feature})) {
173 $siteinfo['advancedfeatures'][] = array(
174 'name' => $feature,
175 'value' => (int) $CFG->{$feature}
176 );
177 }
178 }
179 // Special case mnet_dispatcher_mode.
180 $siteinfo['advancedfeatures'][] = array(
181 'name' => 'mnet_dispatcher_mode',
182 'value' => ($CFG->mnet_dispatcher_mode == 'strict') ? 1 : 0
183 );
184
11c78c11
JL
185 // User can manage own files.
186 $siteinfo['usercanmanageownfiles'] = has_capability('moodle/user:manageownfiles', $context);
187
188 // User quota. 0 means user can ignore the quota.
189 $siteinfo['userquota'] = 0;
190 if (!has_capability('moodle/user:ignoreuserquota', $context)) {
191 $siteinfo['userquota'] = $CFG->userquota;
192 }
193
194 // User max upload file size. -1 means the user can ignore the upload file size.
195 $siteinfo['usermaxuploadfilesize'] = get_user_max_upload_file_size($context, $CFG->maxbytes);
196
333e7770
JL
197 // User home page.
198 $siteinfo['userhomepage'] = get_home_page();
199
bef5777f
JL
200 // Calendar.
201 $siteinfo['sitecalendartype'] = $CFG->calendartype;
202 if (empty($USER->calendartype)) {
203 $siteinfo['usercalendartype'] = $CFG->calendartype;
204 } else {
205 $siteinfo['usercalendartype'] = $USER->calendartype;
206 }
207
af03513f 208 return $siteinfo;
0bf486a6
JM
209 }
210
5d1017e1
JM
211 /**
212 * Returns description of method result value
a0a07014 213 *
e6acc551 214 * @return external_single_structure
a0a07014 215 * @since Moodle 2.2
5d1017e1
JM
216 */
217 public static function get_site_info_returns() {
0bf486a6
JM
218 return new external_single_structure(
219 array(
220 'sitename' => new external_value(PARAM_RAW, 'site name'),
221 'username' => new external_value(PARAM_RAW, 'username'),
222 'firstname' => new external_value(PARAM_TEXT, 'first name'),
223 'lastname' => new external_value(PARAM_TEXT, 'last name'),
224 'fullname' => new external_value(PARAM_TEXT, 'user full name'),
92fa81d3 225 'lang' => new external_value(PARAM_LANG, 'user language'),
0bf486a6
JM
226 'userid' => new external_value(PARAM_INT, 'user id'),
227 'siteurl' => new external_value(PARAM_RAW, 'site url'),
e1f97020
JM
228 'userpictureurl' => new external_value(PARAM_URL, 'the user profile picture.
229 Warning: this url is the public URL that only works when forcelogin is set to NO and guestaccess is set to YES.
230 In order to retrieve user profile pictures independently of the Moodle config, replace "pluginfile.php" by
639bc8b2
PC
231 "webservice/pluginfile.php?token=WSTOKEN&file="
232 Of course the user can only see profile picture depending
233 on his/her permissions. Moreover it is recommended to use HTTPS too.'),
0bf486a6
JM
234 'functions' => new external_multiple_structure(
235 new external_single_structure(
236 array(
237 'name' => new external_value(PARAM_RAW, 'function name'),
87ede25c 238 'version' => new external_value(PARAM_TEXT,
639bc8b2 239 'The version number of the component to which the function belongs')
00a33dcb 240 ), 'functions that are available')
0bf486a6 241 ),
639bc8b2
PC
242 'downloadfiles' => new external_value(PARAM_INT, '1 if users are allowed to download files, 0 if not',
243 VALUE_OPTIONAL),
106c55fb
DW
244 'uploadfiles' => new external_value(PARAM_INT, '1 if users are allowed to upload files, 0 if not',
245 VALUE_OPTIONAL),
639bc8b2 246 'release' => new external_value(PARAM_TEXT, 'Moodle release number', VALUE_OPTIONAL),
33af7882 247 'version' => new external_value(PARAM_TEXT, 'Moodle version number', VALUE_OPTIONAL),
cc90f74b
JL
248 'mobilecssurl' => new external_value(PARAM_URL, 'Mobile custom CSS theme', VALUE_OPTIONAL),
249 'advancedfeatures' => new external_multiple_structure(
250 new external_single_structure(
251 array(
252 'name' => new external_value(PARAM_ALPHANUMEXT, 'feature name'),
253 'value' => new external_value(PARAM_INT, 'feature value. Usually 1 means enabled.')
254 ),
255 'Advanced features availability'
256 ),
257 'Advanced features availability',
258 VALUE_OPTIONAL
11c78c11
JL
259 ),
260 'usercanmanageownfiles' => new external_value(PARAM_BOOL,
261 'true if the user can manage his own files', VALUE_OPTIONAL),
262 'userquota' => new external_value(PARAM_INT,
263 'user quota (bytes). 0 means user can ignore the quota', VALUE_OPTIONAL),
264 'usermaxuploadfilesize' => new external_value(PARAM_INT,
265 'user max upload file size (bytes). -1 means the user can ignore the upload file size',
333e7770
JL
266 VALUE_OPTIONAL),
267 'userhomepage' => new external_value(PARAM_INT,
268 'the default home page for the user: 0 for the site home, 1 for dashboard',
43695b6a 269 VALUE_OPTIONAL),
bef5777f
JL
270 'siteid' => new external_value(PARAM_INT, 'Site course ID', VALUE_OPTIONAL),
271 'sitecalendartype' => new external_value(PARAM_PLUGIN, 'Calendar type set in the site.', VALUE_OPTIONAL),
272 'usercalendartype' => new external_value(PARAM_PLUGIN, 'Calendar typed used by the user.', VALUE_OPTIONAL),
0bf486a6
JM
273 )
274 );
275 }
5d1017e1 276}