/usr/share/httpry/plugins/xml_output.pm is in httpry-tools 0.1.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | #
# ----------------------------------------------------
# httpry - HTTP logging and information retrieval tool
# ----------------------------------------------------
#
# Copyright (c) 2005-2012 Jason Bittel <jason.bittel@gmail.com>
#
package xml_output;
use warnings;
# -----------------------------------------------------------------------------
# GLOBAL VARIABLES
# -----------------------------------------------------------------------------
my $fh;
# -----------------------------------------------------------------------------
# Plugin core
# -----------------------------------------------------------------------------
main::register_plugin();
sub new {
return bless {};
}
sub init {
my $self = shift;
my $cfg_dir = shift;
_load_config($cfg_dir);
if (-e $output_file) {
open OUTFILE, ">>$output_file" or die "Cannot open $output_file: $!\n";
print OUTFILE "<flow version=\"$flow_version\" xmlversion=\"$xml_version\">\n";
} else {
open OUTFILE, ">$output_file" or die "Cannot open $output_file: $!\n";
print OUTFILE "<?xml version=\"1.0\"?>\n";
print OUTFILE "<?xml-stylesheet href=\"xml_output.css\" type=\"text/css\"?>\n";
print OUTFILE "<flow version=\"$flow_version\" xmlversion=\"$xml_version\">\n";
}
$fh = *OUTFILE;
return;
}
sub main {
my $self = shift;
my $record = shift;
my $field;
my $data;
print $fh "<record>";
foreach $field (keys %$record) {
$data = $record->{$field};
$data =~ s/^\s+//;
$data =~ s/\s+$//;
$data =~ s/&/\&\;/g;
$data =~ s/</\<\;/g;
$data =~ s/>/\>\;/g;
$data =~ s/\'/\&apos\;/g;
$data =~ s/\"/\"\;/g;
print $fh "<$field>$data</$field>";
}
print $fh "</record>\n";
return;
}
sub end {
print $fh "</flow>\n";
close $fh or die "Cannot close $fh: $!\n";
return;
}
# -----------------------------------------------------------------------------
# Load config file and check for required options
# -----------------------------------------------------------------------------
sub _load_config {
my $cfg_dir = shift;
# Load config file; by default in same directory as plugin
if (-e "$cfg_dir/" . __PACKAGE__ . ".cfg") {
require "$cfg_dir/" . __PACKAGE__ . ".cfg";
} else {
die "No config file found\n";
}
# Check for required options and combinations
if (!$output_file) {
die "No output file provided\n";
}
return;
}
1;
|