. //// SITE PRIVACY ///// /** * Site privacy: private */ define('HUB_SITENOTPUBLISHED', 'notdisplayed'); /** * Site privacy: public */ define('HUB_SITENAMEPUBLISHED', 'named'); /** * Site privacy: public and global */ define('HUB_SITELINKPUBLISHED', 'linked'); /** * * Site registration library * * @package course * @copyright 2010 Moodle Pty Ltd (http://moodle.com) * @author Jerome Mouneyrac * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class registration_manager { /** * When the site register on a hub, he must call this function * @param object $hub where the site is registered on * @return integer id of the record */ public function add_registeredhub($hub) { global $DB; $id = $DB->insert_record('registration_hubs', $hub); return $id; } /** * Get a hub on which the site is registered for a given url or token * Mostly use to check if the site is registered on a specific hub * @param string $huburl * @param string $token * @return object the hub */ public function get_registeredhub($huburl = null, $token = null) { global $DB; $params = array(); if (!empty($huburl)) { $params['huburl'] = $huburl; } if (!empty($token)) { $params['token'] = $token; } $params['confirmed'] = 1; $token = $DB->get_record('registration_hubs',$params); return $token; } /** * Get the hub which has not confirmed that the site is registered on, but for which a request has been sent * @param string $huburl * @return object the hub */ public function get_unconfirmedhub($huburl) { global $DB; $params = array(); $params['huburl'] = $huburl; $params['confirmed'] = 0; $token = $DB->get_record('registration_hubs',$params); return $token; } /** * Update a registered hub (mostly use to update the confirmation status) * @param object $communication the hub */ public function update_registeredhub($communication) { global $DB; $DB->update_record('registration_hubs', $communication); } /** * Return all hubs where the site is registered on */ public function get_registered_on_hubs() { global $DB; $hubs = $DB->get_records('registration_hubs', array()); return $hubs; } /** * Return site information for a specific hub * @param string $huburl * @return array site info */ public function get_site_info($huburl) { global $CFG, $DB; $siteinfo = array(); $cleanhuburl = clean_param($huburl, PARAM_ALPHANUMEXT); $siteinfo['name'] = get_config('hub', 'site_name_'.$cleanhuburl); $siteinfo['description'] = get_config('hub', 'site_description_'.$cleanhuburl); $siteinfo['contactname'] = get_config('hub', 'site_contactname_'.$cleanhuburl); $siteinfo['contactemail'] = get_config('hub', 'site_contactemail_'.$cleanhuburl); $siteinfo['contactphone'] = get_config('hub', 'site_contactphone_'.$cleanhuburl); $siteinfo['imageurl'] = get_config('hub', 'site_imageurl_'.$cleanhuburl); $siteinfo['privacy'] = get_config('hub', 'site_privacy_'.$cleanhuburl); $siteinfo['street'] = get_config('hub', 'site_address_'.$cleanhuburl); $siteinfo['regioncode'] = get_config('hub', 'site_region_'.$cleanhuburl); $siteinfo['countrycode'] = get_config('hub', 'site_country_'.$cleanhuburl); $siteinfo['geolocation'] = get_config('hub', 'site_geolocation_'.$cleanhuburl); $siteinfo['contactable'] = get_config('hub', 'site_contactable_'.$cleanhuburl); $siteinfo['emailalert'] = get_config('hub', 'site_emailalert_'.$cleanhuburl); if (get_config('hub', 'site_coursesnumber_'.$cleanhuburl) == -1) { $coursecount = -1; } else { $coursecount = $DB->count_records('course')-1; } $siteinfo['courses'] = $coursecount; if (get_config('hub', 'site_usersnumber_'.$cleanhuburl) == -1) { $usercount = -1; } else { $usercount = $DB->count_records('user', array('deleted'=>0)); } $siteinfo['users'] = $usercount; if (get_config('hub', 'site_roleassignmentsnumber_'.$cleanhuburl) == -1) { $roleassigncount = -1; } else { $roleassigncount = $DB->count_records('role_assignments'); } $siteinfo['enrolments'] = $roleassigncount; if (get_config('hub', 'site_postsnumber_'.$cleanhuburl) == -1) { $postcount = -1; } else { $postcount = $DB->count_records('forum_posts'); } $siteinfo['posts'] = $postcount; if (get_config('hub', 'site_questionsnumber_'.$cleanhuburl) == -1) { $questioncount = -1; } else { $questioncount = $DB->count_records('question'); } $siteinfo['questions'] = $questioncount; if (get_config('hub', 'site_resourcesnumber_'.$cleanhuburl) == -1) { $resourcecount = -1; } else { $resourcecount = $DB->count_records('resource'); } $siteinfo['resources'] = $resourcecount; //TODO require_once($CFG->dirroot."/course/lib.php"); if (get_config('hub', 'site_participantnumberaverage_'.$cleanhuburl) == -1) { $participantnumberaverage = -1; } else { $participantnumberaverage = average_number_of_participants(); } $siteinfo['participantnumberaverage'] = $participantnumberaverage; if (get_config('hub', 'site_modulenumberaverage_'.$cleanhuburl) == -1) { $modulenumberaverage = -1; } else { $modulenumberaverage = average_number_of_courses_modules(); } $siteinfo['modulenumberaverage'] = $modulenumberaverage; $siteinfo['language'] = current_language(); $siteinfo['moodleversion'] = $CFG->version; $siteinfo['moodlerelease'] = $CFG->release; $siteinfo['url'] = $CFG->wwwroot; return $siteinfo; } /** * Retrieve the site privacy string matching the define value * @param string $privacy must match the define into moodlelib.php * @return string */ public function get_site_privacy_string($privacy) { switch ($privacy) { case HUB_SITENOTPUBLISHED: $privacystring = get_string('siteprivacynotpublished', 'hub'); break; case HUB_SITENAMEPUBLISHED: $privacystring = get_string('siteprivacypublished', 'hub'); break; case HUB_SITELINKPUBLISHED: $privacystring = get_string('siteprivacylinked', 'hub'); break; } if (empty($privacystring)) { throw new moodle_exception('unknownprivacy'); } return $privacystring; } } ?>