58 lines
1.3 KiB
Perl
58 lines
1.3 KiB
Perl
#!/usr/bin/perl
|
|
|
|
BEGIN { use lib '/usr/home/cfg' ; require push_inc ; }
|
|
|
|
print "Content-type: text/html\n\n";
|
|
|
|
use CGI::Carp qw(fatalsToBrowser);
|
|
use Fcntl qw(:flock);
|
|
use JSON::Repair ':all';
|
|
|
|
require cfg ;
|
|
|
|
#------------------------------------------------------------------------------------------
|
|
|
|
@ARGV = split(/\\*\&/, $ENV{'QUERY_STRING'});
|
|
|
|
foreach $ARG (@ARGV) { ($par,$val) = split(/\=/,$ARG) ; $val =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $param{$par} = $val ; }
|
|
|
|
# my $json_type = $param{json_type} ;
|
|
|
|
# e.g. https://itvadmin.co.za/cgi-bin/scripts/get/get_typeahead_json.pl?json_type=additional_services
|
|
|
|
# our $debug = 1 ;
|
|
|
|
#------------------------------------------------------------------------------------------
|
|
|
|
$json = '[' ;
|
|
|
|
&load_json ;
|
|
|
|
$json .= ']' ;
|
|
|
|
print $json ;
|
|
|
|
exit ;
|
|
|
|
#------------------------------------------------------------------------------------------
|
|
|
|
sub load_json {
|
|
|
|
return if $param{country_id} || !$param{region_id} ;
|
|
|
|
&db_min_ro("regions",'1,country_id',"`id`='$param{region_id}'",'','') ;
|
|
|
|
if ($db{regions}{1}{country_id}) {
|
|
$json .= qq~{"country_id":"$db{regions}{1}{country_id}"}~ ;
|
|
}
|
|
|
|
if ($json =~ /\,/) { $json = substr($json,0,-1) ; }
|
|
|
|
$json =~ s/\\//g ;
|
|
|
|
} #------------------------------------------------------------------------------------------
|
|
|
|
use db ;
|
|
use common ;
|
|
|
|
1; |