2007-12-12 16:29:16 +00:00
|
|
|
<?php
|
2011-01-24 07:04:08 +00:00
|
|
|
/**
|
|
|
|
* Implements the del.icio.us API request for all a user's posts
|
|
|
|
* optionally filtered by tag.
|
|
|
|
*
|
|
|
|
* del.icio.us behavior:
|
|
|
|
* - doesn't include the filtered tag as an attribute on the root element (we do)
|
|
|
|
*
|
|
|
|
* PHP version 5.
|
|
|
|
*
|
|
|
|
* @category Bookmarking
|
|
|
|
* @package SemanticScuttle
|
|
|
|
* @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net>
|
|
|
|
* @author Christian Weiske <cweiske@cweiske.de>
|
|
|
|
* @author Eric Dane <ericdane@users.sourceforge.net>
|
|
|
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
|
|
|
* @link http://sourceforge.net/projects/semanticscuttle
|
|
|
|
*/
|
2007-12-12 16:29:16 +00:00
|
|
|
|
2011-01-24 07:04:08 +00:00
|
|
|
//Force HTTP authentication first!
|
2010-03-17 20:11:21 +00:00
|
|
|
$httpContentType = 'text/xml';
|
|
|
|
require_once 'httpauth.inc.php';
|
2007-12-12 16:29:16 +00:00
|
|
|
|
2008-12-05 07:25:04 +00:00
|
|
|
/* Service creation: only useful services are created */
|
2011-01-24 07:04:08 +00:00
|
|
|
$bookmarkservice = SemanticScuttle_Service_Factory::get('Bookmark');
|
2008-12-05 07:25:04 +00:00
|
|
|
|
2007-12-12 16:29:16 +00:00
|
|
|
|
|
|
|
// Check to see if a tag was specified.
|
2011-01-24 07:04:08 +00:00
|
|
|
if (isset($_REQUEST['tag']) && (trim($_REQUEST['tag']) != '')) {
|
2007-12-12 16:29:16 +00:00
|
|
|
$tag = trim($_REQUEST['tag']);
|
2011-01-24 07:04:08 +00:00
|
|
|
} else {
|
|
|
|
$tag = null;
|
|
|
|
}
|
2007-12-12 16:29:16 +00:00
|
|
|
|
|
|
|
// Get the posts relevant to the passed-in variables.
|
2011-01-24 07:04:08 +00:00
|
|
|
$bookmarks =& $bookmarkservice->getBookmarks(
|
|
|
|
0, null, $userservice->getCurrentUserId(), $tag
|
|
|
|
);
|
2007-12-12 16:29:16 +00:00
|
|
|
|
|
|
|
// Set up the XML file and output all the posts.
|
|
|
|
echo '<?xml version="1.0" standalone="yes" ?'.">\r\n";
|
2011-01-24 07:04:08 +00:00
|
|
|
echo '<posts update="'. gmdate('Y-m-d\TH:i:s\Z');
|
|
|
|
echo '" user="'. htmlspecialchars($currentUser->getUsername());
|
|
|
|
echo '"'. (is_null($tag) ? '' : ' tag="'. htmlspecialchars($tag) .'"') .">\r\n";
|
2007-12-12 16:29:16 +00:00
|
|
|
|
2011-01-24 07:04:08 +00:00
|
|
|
foreach ($bookmarks['bookmarks'] as $row) {
|
|
|
|
if (is_null($row['bDescription']) || (trim($row['bDescription']) == '')) {
|
2007-12-12 16:29:16 +00:00
|
|
|
$description = '';
|
2011-01-24 07:04:08 +00:00
|
|
|
} else {
|
2007-12-12 16:29:16 +00:00
|
|
|
$description = 'extended="'. filter($row['bDescription'], 'xml') .'" ';
|
2011-01-24 07:04:08 +00:00
|
|
|
}
|
2007-12-12 16:29:16 +00:00
|
|
|
$taglist = '';
|
|
|
|
if (count($row['tags']) > 0) {
|
2011-01-24 07:04:08 +00:00
|
|
|
foreach ($row['tags'] as $tag) {
|
2007-12-12 16:29:16 +00:00
|
|
|
$taglist .= convertTag($tag) .' ';
|
2011-01-24 07:04:08 +00:00
|
|
|
}
|
2007-12-12 16:29:16 +00:00
|
|
|
$taglist = substr($taglist, 0, -1);
|
|
|
|
} else {
|
|
|
|
$taglist = 'system:unfiled';
|
|
|
|
}
|
|
|
|
|
2011-01-24 07:04:08 +00:00
|
|
|
echo "\t<post href=\"". filter($row['bAddress'], 'xml');
|
|
|
|
echo '" description="'. filter($row['bTitle'], 'xml');
|
|
|
|
echo '" '. $description .'hash="'. md5($row['bAddress']);
|
|
|
|
echo '" tag="'. filter($taglist, 'xml') .'" time="';
|
|
|
|
echo gmdate('Y-m-d\TH:i:s\Z', strtotime($row['bDatetime'])) ."\" />\r\n";
|
2007-12-12 16:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '</posts>';
|
2011-01-24 07:04:08 +00:00
|
|
|
?>
|