beginning of docx/pdf scrapers
[disclosr.git] / documents / rss.xml.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
 
// Agency X updated Y,  new files, diff of plain text/link text,
// feed for just one agency or all
// This is a minimum example of using the Universal Feed Generator Class
include("../lib/FeedWriter/FeedTypes.php");
include_once('../include/common.inc.php');
//Creating an instance of FeedWriter class.
$TestFeed = new RSS2FeedWriter();
//Setting the channel elements
//Use wrapper functions for common channelelements
$TestFeed->setTitle('Last Modified - All');
$TestFeed->setLink('http://disclosurelo.gs/rss.xml.php');
$TestFeed->setDescription('Latest entries');
  $TestFeed->setChannelElement('language', 'en-us');
  $TestFeed->setChannelElement('pubDate', date(DATE_RSS, time()));
//Retriving informations from database
$idtoname = Array();
$agenciesdb = $server->get_db('disclosr-agencies');
foreach ($agenciesdb->get_view("app", "byCanonicalName")->rows as $row) {
    $idtoname[$row->id] = trim($row->value->name);
}
$foidocsdb = $server->get_db('disclosr-foidocuments');
$rows = $foidocsdb->get_view("app", "byDate", Array('9999-99-99','0000-00-00', 50), true)->rows;
//print_r($rows);
foreach ($rows as $row) {
    //Create an empty FeedItem
    $newItem = $TestFeed->createNewItem();
    //Add elements to the feed item
    $newItem->setTitle($row->value->title);
    $newItem->setLink("view.php?id=".$row->value->_id);
    $newItem->setDate(date("c", strtotime($row->value->date)));
    $newItem->setDescription(displayLogEntry($row,$idtoname));
    $newItem->addElement('guid', $row->value->_id,array('isPermaLink'=>'true'));
    //Now add the feed item
    $TestFeed->addItem($newItem);
}
//OK. Everything is done. Now genarate the feed.
$TestFeed->generateFeed();
?>