2009-05-26 03:23:32 +00:00
|
|
|
<?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 file contains all the common stuff to be used in RSS System
|
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @package core_rss
|
|
|
|
* @category rss
|
2010-07-25 13:35:05 +00:00
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2009-05-26 03:23:32 +00:00
|
|
|
*/
|
2004-05-02 23:08:19 +00:00
|
|
|
|
2010-07-25 13:35:05 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
/**
|
|
|
|
* Build the URL for the RSS feed and add it as a header
|
|
|
|
*
|
|
|
|
* @param stdClass $context The context under which the URL should be created
|
|
|
|
* @param string $componentname The name of the component for which the RSS feed exists
|
|
|
|
* @param stdClass $componentinstance The instance of the component
|
|
|
|
* @param string $title Name for the link to be added to the page header
|
|
|
|
*/
|
|
|
|
function rss_add_http_header($context, $componentname, $componentinstance, $title) {
|
2010-05-13 08:44:35 +00:00
|
|
|
global $PAGE, $USER;
|
2010-07-28 02:32:11 +00:00
|
|
|
|
|
|
|
$componentid = null;
|
|
|
|
if (is_object($componentinstance)) {
|
|
|
|
$componentid = $componentinstance->id;
|
|
|
|
} else {
|
|
|
|
$componentid = $componentinstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rsspath = rss_get_url($context->id, $USER->id, $componentname, $componentid);
|
2010-05-13 08:44:35 +00:00
|
|
|
$PAGE->add_alternate_version($title, $rsspath, 'application/rss+xml');
|
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
2012-01-11 14:02:53 +08:00
|
|
|
* Print the link for the RSS feed with the correct RSS icon
|
2009-05-26 03:23:32 +00:00
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param stdClass $contextid The id of the context under which the URL should be created
|
|
|
|
* @param int $userid The source of the RSS feed (site/course/group/user)
|
|
|
|
* @param string $componentname The name of the component for which the feed exists
|
|
|
|
* @param string $id The name by which to call the RSS File
|
|
|
|
* @param string $tooltiptext The tooltip to be displayed with the link
|
|
|
|
* @return string HTML output for the RSS link
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2010-07-21 02:11:53 +00:00
|
|
|
function rss_get_link($contextid, $userid, $componentname, $id, $tooltiptext='') {
|
2009-07-02 11:09:15 +00:00
|
|
|
global $OUTPUT;
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
static $rsspath = '';
|
|
|
|
|
2010-07-21 02:11:53 +00:00
|
|
|
$rsspath = rss_get_url($contextid, $userid, $componentname, $id);
|
2006-03-03 08:03:45 +00:00
|
|
|
|
2017-01-19 16:20:27 +08:00
|
|
|
return '<a href="'. $rsspath .'">' . $OUTPUT->pix_icon('i/rss', $tooltiptext) . '</a>';
|
2006-03-03 08:03:45 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
|
|
|
* This function returns the URL for the RSS XML file.
|
2009-05-26 03:23:32 +00:00
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param int $contextid the course id
|
|
|
|
* @param int $userid the current user id
|
|
|
|
* @param string $componentname the name of the current component. For example "forum"
|
2010-07-28 02:32:11 +00:00
|
|
|
* @param string $additionalargs For modules, module instance id
|
2012-01-11 14:02:53 +08:00
|
|
|
* @return string the url of the RSS feed
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2010-07-28 02:32:11 +00:00
|
|
|
function rss_get_url($contextid, $userid, $componentname, $additionalargs) {
|
2006-03-03 08:03:45 +00:00
|
|
|
global $CFG;
|
2015-08-26 08:02:42 +01:00
|
|
|
if (empty($userid)) {
|
|
|
|
$userid = guest_user()->id;
|
|
|
|
}
|
2010-05-02 11:43:57 +00:00
|
|
|
$usertoken = rss_get_token($userid);
|
2016-01-18 13:44:22 +08:00
|
|
|
$url = '/rss/file.php';
|
|
|
|
return moodle_url::make_file_url($url, '/'.$contextid.'/'.$usertoken.'/'.$componentname.'/'.$additionalargs.'/rss.xml');
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
2012-01-11 14:02:53 +08:00
|
|
|
* Print the link for the RSS feed with the correct RSS icon (Theme based)
|
|
|
|
*
|
|
|
|
* @param stdClass $contextid The id of the context under which the URL should be created
|
|
|
|
* @param int $userid The source of the RSS feed (site/course/group/user)
|
|
|
|
* @param string $componentname The name of the component for which the feed exists
|
|
|
|
* @param string $id The name by which to call the RSS File
|
|
|
|
* @param string $tooltiptext The tooltip to be displayed with the link
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2010-07-21 02:11:53 +00:00
|
|
|
function rss_print_link($contextid, $userid, $componentname, $id, $tooltiptext='') {
|
|
|
|
print rss_get_link($contextid, $userid, $componentname, $id, $tooltiptext);
|
2004-08-07 16:54:25 +00:00
|
|
|
|
|
|
|
}
|
2004-05-02 23:08:19 +00:00
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
2010-05-02 11:43:57 +00:00
|
|
|
* Given an object, deletes all RSS files associated with it.
|
2009-05-26 03:23:32 +00:00
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param string $componentname the name of the module ie 'forum'. Used to construct the cache path.
|
|
|
|
* @param stdClass $instance An object with an id member variable ie $forum, $glossary.
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2010-07-21 02:11:53 +00:00
|
|
|
function rss_delete_file($componentname, $instance) {
|
2010-05-02 11:43:57 +00:00
|
|
|
global $CFG;
|
2007-07-30 19:13:19 +00:00
|
|
|
|
2011-08-11 03:25:38 +09:30
|
|
|
$dirpath = "$CFG->cachedir/rss/$componentname";
|
2010-07-16 02:46:26 +00:00
|
|
|
if (is_dir($dirpath)) {
|
2012-05-25 08:41:52 -07:00
|
|
|
if (!$dh = opendir($dirpath)) {
|
2012-06-06 08:51:11 +12:00
|
|
|
error_log("Directory permission error. RSS directory store for component '{$componentname}' exists but cannot be opened.", DEBUG_DEVELOPER);
|
2012-05-25 08:41:52 -07:00
|
|
|
return;
|
|
|
|
}
|
2010-07-16 02:46:26 +00:00
|
|
|
while (false !== ($filename = readdir($dh))) {
|
|
|
|
if ($filename!='.' && $filename!='..') {
|
|
|
|
if (preg_match("/{$instance->id}_/", $filename)) {
|
2010-07-21 02:11:53 +00:00
|
|
|
unlink("$dirpath/$filename");
|
2010-07-16 02:46:26 +00:00
|
|
|
}
|
2010-05-02 11:43:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-05-02 23:08:19 +00:00
|
|
|
|
2010-05-02 11:43:57 +00:00
|
|
|
/**
|
|
|
|
* Are RSS feeds enabled for the supplied module instance?
|
2012-01-11 14:02:53 +08:00
|
|
|
*
|
|
|
|
* @param string $modname The name of the module to be checked
|
|
|
|
* @param stdClass $instance An instance of an activity module ie $forum, $glossary.
|
|
|
|
* @param bool $hasrsstype Should there be a rsstype member variable?
|
|
|
|
* @param bool $hasrssarticles Should there be a rssarticles member variable?
|
|
|
|
* @return bool whether or not RSS is enabled for the module
|
2010-05-02 11:43:57 +00:00
|
|
|
*/
|
2010-07-21 02:11:53 +00:00
|
|
|
function rss_enabled_for_mod($modname, $instance=null, $hasrsstype=true, $hasrssarticles=true) {
|
2010-05-02 11:43:57 +00:00
|
|
|
if ($hasrsstype) {
|
|
|
|
if (empty($instance->rsstype) || $instance->rsstype==0) {
|
|
|
|
return false;
|
|
|
|
}
|
2004-05-20 15:19:19 +00:00
|
|
|
}
|
|
|
|
|
2010-05-02 11:43:57 +00:00
|
|
|
//have they set the RSS feed to return 0 results?
|
|
|
|
if ($hasrssarticles) {
|
|
|
|
if (empty($instance->rssarticles) || $instance->rssarticles==0) {
|
|
|
|
return false;
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
}
|
2010-05-02 11:43:57 +00:00
|
|
|
|
2010-07-21 02:11:53 +00:00
|
|
|
if (!empty($instance) && !instance_is_visible($modname,$instance)) {
|
2010-05-02 11:43:57 +00:00
|
|
|
return false;
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2010-05-02 11:43:57 +00:00
|
|
|
return true;
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
|
|
|
* This function saves to file the rss feed specified in the parameters
|
2009-05-26 03:23:32 +00:00
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param string $componentname the module name ie forum. Used to create a cache directory.
|
|
|
|
* @param string $filename the name of the file to be created ie "rss.xml"
|
|
|
|
* @param string $contents the data to be written to the file
|
|
|
|
* @param bool $expandfilename whether or not the fullname of the RSS file should be used
|
|
|
|
* @return bool whether the save was successful or not
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2010-07-28 02:32:11 +00:00
|
|
|
function rss_save_file($componentname, $filename, $contents, $expandfilename=true) {
|
2004-05-02 23:08:19 +00:00
|
|
|
global $CFG;
|
2007-07-30 19:13:19 +00:00
|
|
|
|
2004-05-02 23:08:19 +00:00
|
|
|
$status = true;
|
|
|
|
|
2011-09-10 10:49:04 +02:00
|
|
|
if (! $basedir = make_cache_directory ('rss/'. $componentname)) {
|
2004-05-26 16:12:58 +00:00
|
|
|
//Cannot be created, so error
|
|
|
|
$status = false;
|
|
|
|
}
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
if ($status) {
|
2010-07-28 02:32:11 +00:00
|
|
|
$fullfilename = $filename;
|
|
|
|
if ($expandfilename) {
|
|
|
|
$fullfilename = rss_get_file_full_name($componentname, $filename);
|
|
|
|
}
|
|
|
|
|
2010-05-02 11:43:57 +00:00
|
|
|
$rss_file = fopen($fullfilename, "w");
|
2004-05-02 23:08:19 +00:00
|
|
|
if ($rss_file) {
|
2010-07-28 02:32:11 +00:00
|
|
|
$status = fwrite ($rss_file, $contents);
|
2004-05-02 23:08:19 +00:00
|
|
|
fclose($rss_file);
|
2004-05-26 16:12:58 +00:00
|
|
|
} else {
|
|
|
|
$status = false;
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
/**
|
|
|
|
* Retrieve the location and file name of a cached RSS feed
|
|
|
|
*
|
|
|
|
* @param string $componentname the name of the component the RSS feed is being created for
|
|
|
|
* @param string $filename the name of the RSS FEED
|
|
|
|
* @return string The full name and path of the RSS file
|
|
|
|
*/
|
2010-07-21 02:11:53 +00:00
|
|
|
function rss_get_file_full_name($componentname, $filename) {
|
2004-08-05 18:06:55 +00:00
|
|
|
global $CFG;
|
2011-08-11 03:25:38 +09:30
|
|
|
return "$CFG->cachedir/rss/$componentname/$filename.xml";
|
2010-05-02 11:43:57 +00:00
|
|
|
}
|
2004-08-05 18:06:55 +00:00
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
/**
|
|
|
|
* Construct the file name of the RSS File
|
|
|
|
*
|
|
|
|
* @param stdClass $instance the instance of the source of the RSS feed
|
|
|
|
* @param string $sql the SQL used to produce the RSS feed
|
2012-11-23 16:58:35 +08:00
|
|
|
* @param array $params the parameters used in the SQL query
|
2012-01-11 14:02:53 +08:00
|
|
|
* @return string the name of the RSS file
|
|
|
|
*/
|
2012-11-23 16:58:35 +08:00
|
|
|
function rss_get_file_name($instance, $sql, $params = array()) {
|
|
|
|
if ($params) {
|
|
|
|
// If a parameters array is passed, then we want to
|
|
|
|
// serialize it and then concatenate it with the sql.
|
|
|
|
// The reason for this is to generate a unique filename
|
|
|
|
// for queries using the same sql but different parameters.
|
2013-12-31 12:08:26 +08:00
|
|
|
asort($params);
|
2012-11-23 16:58:35 +08:00
|
|
|
$serializearray = serialize($params);
|
|
|
|
return $instance->id.'_'.md5($sql . $serializearray);
|
|
|
|
} else {
|
|
|
|
return $instance->id.'_'.md5($sql);
|
|
|
|
}
|
2004-08-05 18:06:55 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
|
|
|
* This function return all the common headers for every rss feed in the site
|
2009-05-26 03:23:32 +00:00
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param string $title the title for the RSS Feed
|
|
|
|
* @param string $link the link for the origin of the RSS feed
|
|
|
|
* @param string $description the description of the contents of the RSS feed
|
|
|
|
* @return bool|string the standard header for the RSS feed
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2004-05-02 23:08:19 +00:00
|
|
|
function rss_standard_header($title = NULL, $link = NULL, $description = NULL) {
|
2009-07-31 21:19:20 +00:00
|
|
|
global $CFG, $USER, $OUTPUT;
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
$status = true;
|
|
|
|
$result = "";
|
|
|
|
|
2009-11-01 09:21:41 +00:00
|
|
|
$site = get_site();
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
if ($status) {
|
|
|
|
|
|
|
|
//Calculate title, link and description
|
|
|
|
if (empty($title)) {
|
2007-03-19 04:26:45 +00:00
|
|
|
$title = format_string($site->fullname);
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
if (empty($link)) {
|
|
|
|
$link = $CFG->wwwroot;
|
|
|
|
}
|
|
|
|
if (empty($description)) {
|
|
|
|
$description = $site->summary;
|
|
|
|
}
|
|
|
|
|
|
|
|
//xml headers
|
|
|
|
$result .= "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
|
|
|
$result .= "<rss version=\"2.0\">\n";
|
|
|
|
|
|
|
|
//open the channel
|
2005-01-27 22:45:50 +00:00
|
|
|
$result .= rss_start_tag('channel', 1, true);
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
//write channel info
|
2006-09-05 03:15:09 +00:00
|
|
|
$result .= rss_full_tag('title', 2, false, strip_tags($title));
|
2005-01-27 22:45:50 +00:00
|
|
|
$result .= rss_full_tag('link', 2, false, $link);
|
|
|
|
$result .= rss_full_tag('description', 2, false, $description);
|
2005-12-02 07:07:44 +00:00
|
|
|
$result .= rss_full_tag('generator', 2, false, 'Moodle');
|
2004-12-01 19:51:45 +00:00
|
|
|
if (!empty($USER->lang)) {
|
2005-01-27 22:45:50 +00:00
|
|
|
$result .= rss_full_tag('language', 2, false, substr($USER->lang,0,2));
|
2004-12-01 19:51:45 +00:00
|
|
|
}
|
2004-05-02 23:08:19 +00:00
|
|
|
$today = getdate();
|
2013-06-06 11:21:19 +08:00
|
|
|
$result .= rss_full_tag('copyright', 2, false, '(c) '. $today['year'] .' '. format_string($site->fullname));
|
2006-03-17 07:44:22 +00:00
|
|
|
/*
|
2006-03-21 20:54:50 +00:00
|
|
|
if (!empty($USER->email)) {
|
2006-02-27 05:11:02 +00:00
|
|
|
$result .= rss_full_tag('managingEditor', 2, false, fullname($USER));
|
|
|
|
$result .= rss_full_tag('webMaster', 2, false, fullname($USER));
|
2004-12-01 19:51:45 +00:00
|
|
|
}
|
2006-03-21 20:54:50 +00:00
|
|
|
*/
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
//write image info
|
2017-01-19 16:20:27 +08:00
|
|
|
$rsspix = $OUTPUT->image_url('i/rsssitelogo');
|
2004-05-02 23:08:19 +00:00
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
//write the info
|
2005-01-27 22:45:50 +00:00
|
|
|
$result .= rss_start_tag('image', 2, true);
|
|
|
|
$result .= rss_full_tag('url', 3, false, $rsspix);
|
|
|
|
$result .= rss_full_tag('title', 3, false, 'moodle');
|
|
|
|
$result .= rss_full_tag('link', 3, false, $CFG->wwwroot);
|
|
|
|
$result .= rss_full_tag('width', 3, false, '140');
|
|
|
|
$result .= rss_full_tag('height', 3, false, '35');
|
|
|
|
$result .= rss_end_tag('image', 2, true);
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$status) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates the rss XML code for every item passed in the array
|
|
|
|
*
|
|
|
|
* item->title: The title of the item
|
|
|
|
* item->author: The author of the item. Optional !!
|
|
|
|
* item->pubdate: The pubdate of the item
|
|
|
|
* item->link: The link url of the item
|
|
|
|
* item->description: The content of the item
|
|
|
|
*
|
|
|
|
* @param array $items an array of item objects
|
|
|
|
* @return bool|string the rss XML code for every item passed in the array
|
|
|
|
*/
|
2004-05-02 23:08:19 +00:00
|
|
|
function rss_add_items($items) {
|
|
|
|
global $CFG;
|
2007-07-30 19:13:19 +00:00
|
|
|
|
2005-05-02 15:54:24 +00:00
|
|
|
$result = '';
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
if (!empty($items)) {
|
|
|
|
foreach ($items as $item) {
|
2005-05-02 15:54:24 +00:00
|
|
|
$result .= rss_start_tag('item',2,true);
|
2005-07-24 23:04:58 +00:00
|
|
|
//Include the category if exists (some rss readers will use it to group items)
|
|
|
|
if (isset($item->category)) {
|
|
|
|
$result .= rss_full_tag('category',3,false,$item->category);
|
|
|
|
}
|
2009-05-22 15:16:58 +00:00
|
|
|
if (isset($item->tags)) {
|
|
|
|
$attributes = array();
|
|
|
|
if (isset($item->tagscheme)) {
|
2010-01-15 14:36:11 +00:00
|
|
|
$attributes['domain'] = s($item->tagscheme);
|
2009-05-22 15:16:58 +00:00
|
|
|
}
|
|
|
|
foreach ($item->tags as $tag) {
|
|
|
|
$result .= rss_full_tag('category', 3, false, $tag, $attributes);
|
|
|
|
}
|
|
|
|
}
|
2006-09-05 03:15:09 +00:00
|
|
|
$result .= rss_full_tag('title',3,false,strip_tags($item->title));
|
2005-05-02 15:54:24 +00:00
|
|
|
$result .= rss_full_tag('link',3,false,$item->link);
|
2006-03-21 22:35:23 +00:00
|
|
|
$result .= rss_add_enclosures($item);
|
2008-09-16 08:57:34 +00:00
|
|
|
$result .= rss_full_tag('pubDate',3,false,gmdate('D, d M Y H:i:s',$item->pubdate).' GMT'); # MDL-12563
|
2009-11-01 16:48:45 +00:00
|
|
|
//Include the author if exists
|
2011-05-11 13:32:36 +08:00
|
|
|
if (isset($item->author) && !empty($item->author)) {
|
2005-05-02 16:28:14 +00:00
|
|
|
//$result .= rss_full_tag('author',3,false,$item->author);
|
2008-05-30 20:29:51 +00:00
|
|
|
//We put it in the description instead because it's more important
|
2005-05-02 16:28:14 +00:00
|
|
|
//for moodle than most other feeds, and most rss software seems to ignore
|
|
|
|
//the author field ...
|
2006-03-28 18:46:07 +00:00
|
|
|
$item->description = get_string('byname','',$item->author).'. <p>'.$item->description.'</p>';
|
2004-05-09 18:34:33 +00:00
|
|
|
}
|
2005-05-02 15:54:24 +00:00
|
|
|
$result .= rss_full_tag('description',3,false,$item->description);
|
2006-03-28 18:46:07 +00:00
|
|
|
$result .= rss_full_tag('guid',3,false,$item->link,array('isPermaLink' => 'true'));
|
2005-05-02 15:54:24 +00:00
|
|
|
$result .= rss_end_tag('item',2,true);
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$result = false;
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
2014-01-01 10:44:34 +08:00
|
|
|
* This function return all the common footers for every rss feed in the site.
|
2012-01-11 14:02:53 +08:00
|
|
|
*
|
|
|
|
* @return string
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2014-01-01 10:44:34 +08:00
|
|
|
function rss_standard_footer() {
|
2004-05-02 23:08:19 +00:00
|
|
|
$status = true;
|
2005-05-02 15:54:24 +00:00
|
|
|
$result = '';
|
2004-05-02 23:08:19 +00:00
|
|
|
|
2005-01-27 22:45:50 +00:00
|
|
|
$result .= rss_end_tag('channel', 1, true);
|
|
|
|
$result .= '</rss>';
|
2004-05-02 23:08:19 +00:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
2012-01-11 14:02:53 +08:00
|
|
|
* This function return an error xml file (string) to be sent when a rss is required (file.php) and something goes wrong
|
|
|
|
*
|
|
|
|
* @param string $errortype Type of error to send, default is rsserror
|
|
|
|
* @return stdClass returns a XML Feed with an error message in it
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2010-05-02 11:43:57 +00:00
|
|
|
function rss_geterrorxmlfile($errortype = 'rsserror') {
|
2004-12-01 19:51:45 +00:00
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$return = '';
|
|
|
|
|
|
|
|
//XML Header
|
|
|
|
$return = rss_standard_header();
|
|
|
|
|
2007-07-30 19:13:19 +00:00
|
|
|
//XML item
|
2004-12-01 19:51:45 +00:00
|
|
|
if ($return) {
|
2010-09-21 08:07:44 +00:00
|
|
|
$item = new stdClass();
|
2008-05-30 20:29:51 +00:00
|
|
|
$item->title = "RSS Error";
|
|
|
|
$item->link = $CFG->wwwroot;
|
|
|
|
$item->pubdate = time();
|
2010-05-02 11:43:57 +00:00
|
|
|
$item->description = get_string($errortype);
|
2004-12-01 19:51:45 +00:00
|
|
|
$return .= rss_add_items(array($item));
|
|
|
|
}
|
|
|
|
|
|
|
|
//XML Footer
|
|
|
|
if ($return) {
|
|
|
|
$return .= rss_standard_footer();
|
|
|
|
}
|
2007-07-30 19:13:19 +00:00
|
|
|
|
2004-12-01 19:51:45 +00:00
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
/**
|
|
|
|
* Get the ID of the user from a given RSS Token
|
|
|
|
*
|
|
|
|
* @param string $token the RSS token you would like to use to find the user id
|
|
|
|
* @return int The user id
|
|
|
|
*/
|
2010-05-02 11:43:57 +00:00
|
|
|
function rss_get_userid_from_token($token) {
|
|
|
|
global $DB;
|
2012-06-06 23:28:52 +08:00
|
|
|
|
2023-02-27 18:26:41 +01:00
|
|
|
$sql = "SELECT u.id
|
|
|
|
FROM {user} u
|
|
|
|
JOIN {user_private_key} k ON u.id = k.userid
|
|
|
|
WHERE u.deleted = 0
|
|
|
|
AND u.confirmed = 1
|
|
|
|
AND u.suspended = 0
|
|
|
|
AND k.script = 'rss'
|
|
|
|
AND k.value = ?";
|
|
|
|
|
2012-06-06 23:28:52 +08:00
|
|
|
return $DB->get_field_sql($sql, array($token), IGNORE_MISSING);
|
2010-05-02 11:43:57 +00:00
|
|
|
}
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
/**
|
|
|
|
* Get the RSS Token from a given user id
|
|
|
|
*
|
|
|
|
* @param int $userid The user id
|
|
|
|
* @return string the RSS token for the user
|
|
|
|
*/
|
2010-05-02 11:43:57 +00:00
|
|
|
function rss_get_token($userid) {
|
|
|
|
return get_user_key('rss', $userid);
|
|
|
|
}
|
|
|
|
|
2012-01-11 14:02:53 +08:00
|
|
|
/**
|
|
|
|
* Removes the token for the given user from the DB
|
|
|
|
* @param int $userid The user id for the token you wish to delete
|
|
|
|
*/
|
2010-05-12 06:48:59 +00:00
|
|
|
function rss_delete_token($userid) {
|
|
|
|
delete_user_key('rss', $userid);
|
|
|
|
}
|
2010-05-02 11:43:57 +00:00
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
|
|
|
* Return the xml start tag
|
2012-01-11 14:02:53 +08:00
|
|
|
*
|
|
|
|
* @param string $tag the xml tag name
|
|
|
|
* @param int $level the indentation level
|
|
|
|
* @param bool $endline whether or not to start new tags on a new line
|
|
|
|
* @param array $attributes the attributes of the xml tag
|
|
|
|
* @return string the xml start tag
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2006-03-28 18:46:07 +00:00
|
|
|
function rss_start_tag($tag,$level=0,$endline=false,$attributes=null) {
|
2004-05-02 23:08:19 +00:00
|
|
|
if ($endline) {
|
|
|
|
$endchar = "\n";
|
|
|
|
} else {
|
|
|
|
$endchar = "";
|
|
|
|
}
|
2006-03-28 18:46:07 +00:00
|
|
|
$attrstring = '';
|
|
|
|
if (!empty($attributes) && is_array($attributes)) {
|
|
|
|
foreach ($attributes as $key => $value) {
|
|
|
|
$attrstring .= " ".$key."=\"".$value."\"";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str_repeat(" ",$level*2)."<".$tag.$attrstring.">".$endchar;
|
2004-05-02 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
|
|
|
* Return the xml end tag
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param string $tag the xml tag name
|
|
|
|
* @param int $level the indentation level
|
|
|
|
* @param bool $endline whether or not to start new tags on a new line
|
|
|
|
* @return string the xml end tag
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2004-05-02 23:08:19 +00:00
|
|
|
function rss_end_tag($tag,$level=0,$endline=true) {
|
|
|
|
if ($endline) {
|
|
|
|
$endchar = "\n";
|
|
|
|
} else {
|
|
|
|
$endchar = "";
|
|
|
|
}
|
|
|
|
return str_repeat(" ",$level*2)."</".$tag.">".$endchar;
|
|
|
|
}
|
|
|
|
|
2008-05-30 20:29:51 +00:00
|
|
|
/**
|
2012-01-11 14:02:53 +08:00
|
|
|
* Return the while xml element, including content
|
|
|
|
*
|
|
|
|
* @param string $tag the xml tag name
|
|
|
|
* @param int $level the indentation level
|
|
|
|
* @param bool $endline whether or not to start new tags on a new line
|
|
|
|
* @param string $content the text to go inside the tag
|
|
|
|
* @param array $attributes the attributes of the xml tag
|
|
|
|
* @return string the whole xml element
|
2008-05-30 20:29:51 +00:00
|
|
|
*/
|
2021-02-15 15:17:38 +01:00
|
|
|
function rss_full_tag($tag, $level, $endline, $content, $attributes = null) {
|
2006-03-28 18:46:07 +00:00
|
|
|
$st = rss_start_tag($tag,$level,$endline,$attributes);
|
2004-05-02 23:08:19 +00:00
|
|
|
$co="";
|
2022-10-28 10:27:37 +02:00
|
|
|
$co = preg_replace("/\r\n|\r/", "\n", htmlspecialchars($content, ENT_COMPAT));
|
2004-05-02 23:08:19 +00:00
|
|
|
$et = rss_end_tag($tag,0,true);
|
2006-03-28 18:46:07 +00:00
|
|
|
|
2004-05-02 23:08:19 +00:00
|
|
|
return $st.$co.$et;
|
|
|
|
}
|
|
|
|
|
2005-12-02 07:07:44 +00:00
|
|
|
/**
|
2011-11-09 16:57:16 +00:00
|
|
|
* Adds RSS Media Enclosures for "podcasting" by including attachments that
|
|
|
|
* are specified in the item->attachments field.
|
2009-05-26 03:23:32 +00:00
|
|
|
*
|
2012-01-11 14:02:53 +08:00
|
|
|
* @param stdClass $item representing an RSS item
|
|
|
|
* @return string RSS enclosure tags
|
2009-05-26 03:23:32 +00:00
|
|
|
*/
|
2005-12-02 07:07:44 +00:00
|
|
|
function rss_add_enclosures($item){
|
2007-03-05 16:43:40 +00:00
|
|
|
global $CFG;
|
|
|
|
|
2005-12-02 07:07:44 +00:00
|
|
|
$returnstring = '';
|
2007-07-30 19:13:19 +00:00
|
|
|
|
2005-12-02 07:07:44 +00:00
|
|
|
// list of media file extensions and their respective mime types
|
2007-03-05 16:43:40 +00:00
|
|
|
include_once($CFG->libdir.'/filelib.php');
|
|
|
|
$mediafiletypes = get_mimetypes_array();
|
2005-12-02 07:07:44 +00:00
|
|
|
|
2006-03-17 07:44:22 +00:00
|
|
|
// take into account attachments (e.g. from forum) - with these, we are able to know the file size
|
|
|
|
if (isset($item->attachments) && is_array($item->attachments)) {
|
|
|
|
foreach ($item->attachments as $attachment){
|
2007-03-08 08:13:11 +00:00
|
|
|
$extension = strtolower(substr($attachment->url, strrpos($attachment->url, '.')+1));
|
|
|
|
if (isset($mediafiletypes[$extension]['type'])) {
|
|
|
|
$type = $mediafiletypes[$extension]['type'];
|
|
|
|
} else {
|
|
|
|
$type = 'document/unknown';
|
|
|
|
}
|
2006-03-21 22:35:23 +00:00
|
|
|
$returnstring .= "\n<enclosure url=\"$attachment->url\" length=\"$attachment->length\" type=\"$type\" />\n";
|
2006-03-17 07:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
2007-07-30 19:13:19 +00:00
|
|
|
|
2005-12-02 07:07:44 +00:00
|
|
|
return $returnstring;
|
|
|
|
}
|