update semantic markup, add publicbodies.org csv export
[disclosr.git] / documents / exportAll.csv.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
 
include_once("../include/common.inc.php");
 
 
setlocale(LC_CTYPE, 'C');
 
$db = $server->get_db('disclosr-foidocuments');
$headers = Array();
try {
    $rows = $db->get_view("app", "fieldNames?group=true", null, true)->rows;
 
    $dataValues = Array();
    foreach ($rows as $row) {
        $headers[] = $row->key;
    }
} catch (SetteeRestClientException $e) {
    setteErrorHandler($e);
}
 
$fp = fopen('php://output', 'w');
if ($fp && $db) {
    header('Content-Type: text/csv; charset=utf-8');
    header('Content-Disposition: attachment; filename="export.' . date("c") . '.csv"');
    header('Pragma: no-cache');
    header('Expires: 0');
    fputcsv($fp, $headers);
    try {
        $agencies = $db->get_view("app", "all", null, true)->rows;
        //print_r($rows);
        foreach ($agencies as $agency) {
            // print_r($agency);
 
            if (!isset($agency->value->status)) {
                $row = Array();
                $agencyArray = object_to_array($agency->value);
                foreach ($headers as $fieldName) {
                    if (isset($agencyArray[$fieldName])) {
                        if (is_array($agencyArray[$fieldName])) {
                            $row[] = implode(";", $agencyArray[$fieldName]);
                        } else {
                            $row[] = str_replace(Array("\n", '"', "\t"), "", $agencyArray[$fieldName]);
                        }
                    } else {
                        $row[] = "";
                    }
                }
 
                fputcsv($fp, array_values($row));
 
 
            }
        }
    } catch (SetteeRestClientException $e) {
        setteErrorHandler($e);
    }
 
    die;
}
?>