/usr/share/perl5/OpenGuides/JSON.pm is in openguides 0.76-2.
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | package OpenGuides::JSON;
use strict;
use vars qw( $VERSION );
$VERSION = '0.05';
use Wiki::Toolkit::Plugin::JSON;
use Time::Piece;
use URI::Escape;
use Carp 'croak';
use JSON;
use OpenGuides::CGI;
sub new {
my ( $class, @args ) = @_;
my $self = {};
bless $self, $class;
$self->_init(@args);
}
sub _init {
my ( $self, %args ) = @_;
my $wiki = $args{wiki};
unless ( $wiki && UNIVERSAL::isa( $wiki, "Wiki::Toolkit" ) ) {
croak "No Wiki::Toolkit object supplied.";
}
$self->{wiki} = $wiki;
my $config = $args{config};
unless ( $config && UNIVERSAL::isa( $config, "OpenGuides::Config" ) ) {
croak "No OpenGuides::Config object supplied.";
}
$self->{config} = $config;
$self->{make_node_url} = sub {
my ( $node_name, $version ) = @_;
my $config = $self->{config};
my $node_url = $config->script_url;
if ( $config->script_name ) {
$node_url .= uri_escape( $config->script_name ) . '?';
}
$node_url .= 'id=' if defined $version;
$node_url .=
uri_escape(
$self->{wiki}->formatter->node_name_to_node_param($node_name) );
$node_url .= ';version=' . uri_escape($version) if defined $version;
$node_url;
};
$self->{site_name} = $config->site_name;
$self->{default_city} = $config->default_city || "";
$self->{default_country} = $config->default_country || "";
$self->{site_description} = $config->site_desc || "";
$self->{og_version} = $args{og_version};
$self;
}
=over 4
=item B<emit_json>
Renders the given node as JSON
=cut
sub emit_json {
my ( $self, %args ) = @_;
my $node_name = $args{node};
my $wiki = $self->{wiki};
my %node_data = $wiki->retrieve_node($node_name);
my $data = {};
$data->{phone} = $node_data{metadata}{phone}[0] || '';
$data->{fax} = $node_data{metadata}{fax}[0] || '';
$data->{website} = $node_data{metadata}{website}[0] || '';
$data->{opening_hours_text} = $node_data{metadata}{opening_hours_text}[0]
|| '';
$data->{address} = $node_data{metadata}{address}[0] || '';
$data->{postcode} = $node_data{metadata}{postcode}[0] || '';
$data->{city} = $node_data{metadata}{city}[0] || $self->{default_city};
$data->{country} = $node_data{metadata}{country}[0]
|| $self->{default_country};
$data->{latitude} = $node_data{metadata}{latitude}[0] || '';
$data->{longitude} = $node_data{metadata}{longitude}[0] || '';
$data->{version} = $node_data{version};
$data->{username} = $node_data{metadata}{username}[0] || '';
$data->{os_x} = $node_data{metadata}{os_x}[0] || '';
$data->{os_y} = $node_data{metadata}{os_y}[0] || '';
$data->{categories} = $node_data{metadata}{category} || [];
$data->{locales} = $node_data{metadata}{locale} || [];
$data->{summary} = $node_data{metadata}{summary}[0] || '';
$data->{content} = $node_data{content};
$data->{formatted_content} = $wiki->format($node_data{content});
$data->{node_image} = $node_data{metadata}{node_image}[0]|| '';
$data->{node_image_url} = $node_data{metadata}{node_image_url}[0]|| '';
$data->{node_image_licence} = $node_data{metadata}{node_image_licence}[0]|| '';
$data->{timestamp} = $node_data{last_modified};
# Make a Time::Piece object.
my $timestamp_fmt = $Wiki::Toolkit::Store::Database::timestamp_fmt;
if ( $data->{timestamp} ) {
my $time = Time::Piece->strptime( $data->{timestamp}, $timestamp_fmt );
$data->{timestamp} = $time->strftime("%Y-%m-%dT%H:%M:%S");
}
$data->{url} = $self->{make_node_url}->( $node_name, $data->{version} );
$data->{version_indpt_url} = $self->{make_node_url}->($node_name);
return $self->json_maker->make_json($data);
}
=item B<output_as_json>
Renders the given arbitary data as JSON
=cut
sub output_as_json {
my ( $self, %args ) = @_;
return $self->json_maker->make_json(\%args);
}
sub json_maker {
my $self = shift;
# OAOO, please.
unless ( $self->{json_maker} ) {
$self->{json_maker} = Wiki::Toolkit::Plugin::JSON->new(
wiki => $self->{wiki},
site_name => $self->{site_name},
site_url => $self->{config}->script_url,
site_description => $self->{site_description},
make_node_url => $self->{make_node_url},
recent_changes_link => $self->{config}->script_url . '?action=rc',
software_name => 'OpenGuides',
software_homepage => 'http://openguides.org/',
software_version => $self->{og_version},
);
}
return $self->{json_maker};
}
sub make_prefs_json {
my $self = shift;
my %prefs = OpenGuides::CGI->get_prefs_from_cookie(
config => $self->{config} );
return encode_json( \%prefs );
}
sub make_recentchanges_json {
my ( $self, %args ) = @_;
$self->json_maker->recent_changes(%args);
}
sub json_timestamp {
my ( $self, %args ) = @_;
# RSS and JSON timestamps are close, I think...
$self->json_maker->rss_timestamp(%args);
}
=back
=head1 NAME
OpenGuides::JSON - An OpenGuides plugin to output JSON.
=head1 DESCRIPTION
Does all the JSON stuff for OpenGuides. Distributed and installed as
part of the OpenGuides project, not intended for independent
installation. This documentation is probably only useful to OpenGuides
developers.
=head1 SYNOPSIS
use Wiki::Toolkit;
use OpenGuides::Config;
use OpenGuides::JSON;
my $wiki = Wiki::Toolkit->new( ... );
my $config = OpenGuides::Config->new( file => "wiki.conf" );
my $json_writer = OpenGuides::JSON->new( wiki => $wiki,
config => $config );
# JSON version of a node.
print "Content-Type: application/javascript\n\n";
print $json_writer->emit_json( node => "Masala Zone, N1 0NU" );
# Ten most recent changes.
print "Content-Type: application/javascript\n";
print "Last-Modified: " . $self->json_timestamp( items => 10 ) . "\n\n";
print $json_writer->make_recentchanges_json( items => 10 );
=head1 METHODS
=over 4
=item B<new>
my $json_writer = OpenGuides::JSON->new( wiki => $wiki,
config => $config );
C<wiki> must be a L<Wiki::Toolkit> object and C<config> must be an
L<OpenGuides::Config> object. Both arguments mandatory.
=item B<emit_json>
$wiki->write_node( "Masala Zone, N1 0NU",
"Quick and tasty Indian food",
$checksum,
{ comment => "New page",
username => "Kake",
locale => "Islington" }
);
print "Content-Type: application/javascript\n\n";
print $json_writer->emit_json( node => "Masala Zone, N1 0NU" );
B<Note:> Some of the fields emitted by the JSON generator are taken
from the node metadata. The form of this metadata is I<not> mandated
by L<Wiki::Toolkit>. Your wiki application should make sure to store some or
all of the following metadata when calling C<write_node>:
=over 4
=item B<postcode> - The postcode or zip code of the place discussed by the node. Defaults to the empty string.
=item B<city> - The name of the city that the node is in. If not supplied, then the value of C<default_city> in the config object supplied to C<new>, if available, otherwise the empty string.
=item B<country> - The name of the country that the node is in. If not supplied, then the value of C<default_country> in the config object supplied to C<new> will be used, if available, otherwise the empty string.
=item B<username> - An identifier for the person who made the latest edit to the node. This person will be listed as a contributor (Dublin Core). Defaults to empty string.
=item B<locale> - The value of this can be a scalar or an arrayref, since some places have a plausible claim to being in more than one locale. Each of these is put in as a C<Neighbourhood> attribute.
=item B<phone> - Only one number supported at the moment. No validation.
=item B<website> - No validation.
=item B<opening_hours_text> - A freeform text field.
=back
=item B<json_maker>
Returns a raw L<Wiki::Toolkit::Plugin::JSON> object created with the values you
invoked this module with.
=item B<make_prefs_json>
my $json_writer = OpenGuides::JSON->new( wiki => $wiki,
config => $config );
print $json_writer->make_prefs_json();
Retrieves the preferences from any stored preferences cookie, supplies
defaults for any preferences not set, returns the result as JSON.
=item B<make_recentchanges_json>
# Ten most recent changes.
print "Content-Type: application/javascript\n";
print "Last-Modified: " . $json_writer->json_timestamp( items => 10 ) . "\n\n";
print $json_writer->make_recentchanges_json( items => 10 );
# All the changes made by bob in the past week, ignoring minor edits.
my %args = (
days => 7,
ignore_minor_edits => 1,
filter_on_metadata => { username => "bob" },
);
print "Content-Type: application/javascript\n";
print "Last-Modified: " . $json_writer->json_timestamp( %args ) . "\n\n";
print $json_writer->make_recentchanges_json( %args );
=item B<json_timestamp>
print "Last-Modified: " . $json_writer->json_timestamp( %args ) . "\n\n";
Returns the timestamp of the RSS feed in POSIX::strftime style ("Tue, 29 Feb 2000
12:34:56 GMT"), which is equivalent to the timestamp of the most recent item
in the feed. Takes the same arguments as make_recentchanges_json(). You will most
likely need this to print a Last-Modified HTTP header so user-agents can determine
whether they need to reload the feed or not.
=back
=head1 SEE ALSO
=over 4
=item * L<Wiki::Toolkit>
=item * L<http://openguides.org/>
=item * L<http://chefmoz.org/>
=back
=head1 AUTHOR
The OpenGuides Project (openguides-dev@openguides.org)
=head1 COPYRIGHT
Copyright (C) 2003-2013 The OpenGuides Project. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 CREDITS
Code in this module is mostly pirated from OpenGuides::RDF, those authors deserve all the credit. Chris Prather
did the pirating.
=cut
1;
|