2009-10-03 21:52:30 +00:00
|
|
|
<?php
|
|
|
|
// Export in CSV format in order to allow the import into a spreadsheet tool like Excel
|
|
|
|
|
2009-05-05 13:27:07 +00:00
|
|
|
// Force HTTP authentication first!
|
2009-10-03 21:52:30 +00:00
|
|
|
require_once('httpauth.inc.php');
|
|
|
|
require_once '../../src/SemanticScuttle/header.php';
|
|
|
|
|
|
|
|
/* Service creation: only useful services are created */
|
|
|
|
$bookmarkservice =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
|
|
|
|
|
|
|
|
// Check to see if a tag was specified.
|
|
|
|
if (isset($_REQUEST['tag']) && (trim($_REQUEST['tag']) != ''))
|
|
|
|
$tag = trim($_REQUEST['tag']);
|
|
|
|
else
|
|
|
|
$tag = NULL;
|
|
|
|
|
|
|
|
// Get the posts relevant to the passed-in variables.
|
|
|
|
$bookmarks =& $bookmarkservice->getBookmarks(0, NULL, $userservice->getCurrentUserId(), $tag, NULL, getSortOrder());
|
|
|
|
|
2009-05-19 13:37:40 +00:00
|
|
|
header("Content-Type: application/csv-tab-delimited-table;charset=UTF-8");
|
2009-10-03 21:52:30 +00:00
|
|
|
header("Content-disposition: filename=exportBookmarks.csv");
|
|
|
|
|
2009-05-05 13:27:07 +00:00
|
|
|
//columns titles
|
2009-05-19 13:37:40 +00:00
|
|
|
echo 'url;title;tags;description';
|
2009-10-03 21:52:30 +00:00
|
|
|
echo "\n";
|
|
|
|
|
|
|
|
foreach($bookmarks['bookmarks'] as $row) {
|
|
|
|
if (is_null($row['bDescription']) || (trim($row['bDescription']) == ''))
|
|
|
|
$description = '';
|
|
|
|
else
|
|
|
|
$description = filter(str_replace(array("\r\n", "\n", "\r"),"", $row['bDescription']), 'xml');
|
|
|
|
|
|
|
|
$taglist = '';
|
|
|
|
if (count($row['tags']) > 0) {
|
|
|
|
foreach($row['tags'] as $tag)
|
|
|
|
$taglist .= convertTag($tag) .',';
|
|
|
|
$taglist = substr($taglist, 0, -1);
|
|
|
|
} else {
|
|
|
|
$taglist = 'system:unfiled';
|
|
|
|
}
|
|
|
|
|
2009-05-19 13:37:40 +00:00
|
|
|
echo '"'.filter($row['bAddress'], 'xml') .'";"'. filter($row['bTitle'], 'xml') .'";"'. filter($taglist, 'xml') .'";"'. $description .'"';
|
2009-10-03 21:52:30 +00:00
|
|
|
echo "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|