Radreise-Wiki:Route-Management.pl: Unterschied zwischen den Versionen

Aus Radreise-Wiki
(9 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 14: Zeile 14:


  <nowiki>
  <nowiki>
use strict;
use strict;
 
my $flags;
my $flags;
 
if ($ARGV[0]) {
if ($ARGV[0]) {
 
$flags = $ARGV[0];
$flags = $ARGV[0];
 
} else {
} else {
 
$flags = "0101000";
$flags = "0101000";
}
}
 
my @flags = split //, $flags;
my @flags = split //, $flags;
 
#=========================
#=========================
# Control-Flags
# Control-Flags
 
# 0101000 Update only recently changed Routefiles
# 0101000 Update only recently changed Routefiles - show changed Trackfiles
# 0011000 Update all Routefiles
# 0010100 Update all Trackfiles - do this first and get kml-Files
# 0010100 Update all Trackfiles
# 0011000 Update all Routefiles
# 0010010 Modify all Routefiles
# 0010010 Modify all Routefiles
# 0010011 Modify and upload all Routefiles
# 0010011 Modify and upload all Routefiles
 
my $updateDates    = $flags[0]; # 1 = Read all Route- and KMZ-History Pages and update Listfile Dates
my $updateDates    = $flags[0]; # 1 = Read all Route- and KMZ-History Pages and update  
#    Listfile Dates
my $updateRecent    = $flags[1]; # 1 = Only update Routefiles from Wiki Recent Changes Page
 
                                  # 0 = Update all Routefiles
my $updateRecent    = $flags[1]; # 1 = Only update Routefiles from Wiki Recent Changes Page
                                # 0 = Update all Routefiles
my $updateAllRoutes = $flags[2]; # 1 = Treat all Routefiles
 
                                  # 0 = Only treat touched Routefiles
my $updateAllRoutes = $flags[2]; # 1 = Treat all Routefiles
                                # 0 = Only treat touched Routefiles
my $updateRoutes    = $flags[3]; # 1 = Update Routefiles from Wiki
 
                                  # 0 = Do not update Routefiles
my $updateRoutes    = $flags[3]; # 1 = Update Routefiles from Wiki
                                # 0 = Do not update Routefiles
my $updateAllKMZ    = $flags[4]; # 1 = Update KMZ Files from Wiki and extract the KML content
 
my $updateAllKMZ    = $flags[4]; # 1 = Update KMZ Files from Wiki and extract the KML content
my $modify          = $flags[5]; # 1 = Modify Routefiles
 
my $upload          = $flags[6]; # 1 = Upload modified Routefiles to Wiki
my $modify          = $flags[5]; # 1 = Modify Routefiles
my $upload          = $flags[6]; # 1 = Upload modified Routefiles to Wiki
 
#=====================
 
# Import Date Library
#=====================
# Import Date Library
use Date::Calc qw (Date_to_Time Time_to_Date);
 
use Date::Calc qw (Date_to_Time Time_to_Date);
#=====================================
 
# MD5 Checksum und Zip-Funktionalität
#=====================================
# MD5 Checksum und Zip-Funktionalität
use Digest::MD5  qw(md5_hex);
 
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
use Digest::MD5  qw(md5_hex);
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
#================
 
# Encoding Stuff
#================
# Encoding Stuff
use Encode qw(encode decode);
 
use Encode qw(encode decode);
#=================
 
# Hash for Months
#=================
# Hash for Months
my %month = qw (Jan 01 Feb 02 Mär 03 Apr 04 Mai 05 Jun 06 Jul 07 Aug 08 Sep 09 Okt 10 Nov 11 Dez 12);
 
my %month   = qw (Januar 01 Februar 02 März 03 April 04 Mai 05 Juni 06 Juli 07 August 08 September 09 Oktober 10 November 11 Dezember 12);
#==================
my %month_s = qw (Jan 01 Feb 02 Mär 03 Apr 04 Mai 05 Jun 06 Jul 07 Aug 08 Sep 09 Okt 10 Nov 11 Dez 12);
# Default Settings
 
#==================
require "ini.pl";
# Default Settings
my ($baseDir, $outDir, $username, $password, $encoding, $encAnsi, $encOut) = getIni();
 
push @INC, '.';
my $dir_txt  = "$baseDir/text";
 
my $dir_kmz  = "$baseDir/kmz";
require "ini.pl";
my $savePath = "$baseDir/upload";
 
my ($baseDir, $outDir, $username, $password, $encoding, $encAnsi, $encOut) = getIni();
my $listFile = "RouteList.txt";
 
my $dir_txt  = "$baseDir/text";
my $mech;            # Handle for mechanize-Browser
my $dir_kmz  = "$baseDir/kmz";
my $changesTxt  = 0;  # One or more Routefiles have changed
my $savePath = "$baseDir/upload";
my $changesKmz  = 0;  # One or more KMZfiles have changed
 
my $listFile = "RouteList.txt";
my @route    = ();    # Stores all Infos about Routes
 
my @routeNew = ();    # Keeps all new Infos for Saving
my $mech;            # Handle for mechanize-Browser
my $changesTxt  = 0;  # One or more Routefiles have changed
my $changesKmz  = 0;  # One or more KMZfiles have changed
 
if ($updateDates or $updateRecent or $updateRoutes or $upload or $updateAllKMZ) {
my @route    = ();    # Stores all Infos about Routes
my @routeNew = ();    # Keeps all new Infos for Saving
#=====================================================
 
# Initialisieren von Mechanize-Browser und Cookie-Jar
 
 
use WWW::Mechanize;
if ($updateDates or $updateRecent or $updateRoutes or $upload or $updateAllKMZ) {
use HTTP::Cookies;
 
$mech = WWW::Mechanize->new( autocheck => 1 );
#=====================================================
$mech->agent_alias( 'Windows Mozilla' );
# Initialisieren von Mechanize-Browser und Cookie-Jar
my $cookie_jar = HTTP::Cookies->new( file => "cookies.txt", autosave => 1 );
 
$mech->cookie_jar($cookie_jar);
use WWW::Mechanize;
use HTTP::Cookies;
#============================================================
$mech = WWW::Mechanize->new( autocheck => 1 );
# Einloggen ins Radreise-Wiki um in den Edit-Modus zu kommen
$mech->agent_alias( 'Windows Mozilla' );
my $cookie_jar = HTTP::Cookies->new( file => "cookies.txt", autosave => 1 );
$mech->get("http://www.radreise-wiki.de/Spezial:Userlogin");
$mech->cookie_jar($cookie_jar);
$mech->form_number('1');
 
$mech->field("wpName", $username);
#============================================================
$mech->field("wpPassword", $password);
# Einloggen ins Radreise-Wiki um in den Edit-Modus zu kommen
$mech->tick('wpRemember', '1');
 
$mech->click();
$mech->get("http://www.radreise-wiki.de/Spezial:Userlogin");
}
$mech->form_number('1');
$mech->field("wpName", $username);
#==========================
$mech->field("wpPassword", $password);
# Load Routelist from File
$mech->tick('wpRemember', '1');
$mech->click();
print "\nReading $listFile\n";
}
 
my $content;
#==========================
# Load Routelist from File
open FIN, "$baseDir/$listFile" or die $!;
 
print "\nReading $listFile\n";
while (<FIN>) {
 
my $content;
my $line = decode $encoding, $_;
 
open FIN, "$baseDir/$listFile" or die $!;
if ($line =~ /^
 
(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})  # mtime of txt-File
while (<FIN>) {
\ ::\  
 
(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})  # mtime of kmz-File
my $line = decode $encoding, $_;
\ ::\  
([H|h|R|L|X])                                     # Type
if ($line =~ /^
\ ::\  
(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})  # mtime of txt-File
(.*)                                              # Routename
\ ::\  
$/x) {
(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})  # mtime of kmz-File
\ ::\  
my $year      =  $1;
([H|h|R|r|L|X])                                   # Type
my $month    =  $2;
\ ::\  
my $day      =  $3;
(.*)                                              # Routename
my $hour      =  $4;
$/x) {
my $min      =  $5;
my $sec      =  $6;
my $year      =  $1;
my $month    =  $2;
my $year_kmz  =  $7;
my $day      =  $3;
my $month_kmz =  $8;
my $hour      =  $4;
my $day_kmz  =  $9;
my $min      =  $5;
my $hour_kmz  = $10;
my $sec      =  $6;
my $min_kmz  = $11;
 
my $sec_kmz  = $12;
my $year_kmz  =  $7;
my $month_kmz =  $8;
my $type      = $13;
my $day_kmz  =  $9;
next if ($type eq "X");
my $hour_kmz  = $10;
my $min_kmz  = $11;
my $routeName = $14;
my $sec_kmz  = $12;
 
my $routeFileName = encode $encAnsi, $routeName;
my $type      = $13;
 
my $routeURL = encodeRouteNameURL($routeFileName);
next if ($type eq "X");
 
my $touch = 0;
my $routeName = $14;
 
if ( $updateDates ) {
my $routeFileName = encode $encAnsi, $routeName;
 
#============================================
my $routeURL = encodeRouteNameURL($routeFileName);
# Check Route- and KMZ-History Sites in Wiki
 
my $touch = 0;
$mech->get("http://radreise-wiki.de/index.php?title=$routeURL&action=history");
my $website = $mech->content;
if ( $updateDates ) {
my @website = split "\n", $website;
 
#============================================
foreach my $l (@website) {
# Check Route- and KMZ-History Sites in Wiki
 
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4})</) {
$mech->get("http://radreise-wiki.de/index.php?title=$routeURL&action=history");
my $website = $mech->content;
$hour  = $1;
my @website = split "\n", $website;
$min  = $2;
 
$sec  =  0;
foreach my $l (@website) {
$day  = $3;
 
$month = $month{$4};
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4})</) {
$year  = $5;
 
$hour  = $1;
last;
$min  = $2;
}
$sec  =  0;
}
$day  = $3;
$month = $month{$4};
$mech->get("http://radreise-wiki.de/Bild:$routeURL.kmz");
$year  = $5;
my $website = $mech->content;
 
my @website = split "\n", $website;
last;
}
foreach my $l (@website) {
}
 
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4}).*?\"Benutzer:(.*?)\"/) {
$mech->get("http://radreise-wiki.de/Bild:$routeURL.kmz");
my $website = $mech->content;
$hour_kmz  = $1;
my @website = split "\n", $website;
$min_kmz  = $2;
 
$sec_kmz  = 0;
foreach my $l (@website) {
$day_kmz  = $3;
 
$month_kmz = $month{$4};
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4}).*?\"Benutzer:(.*?)\"/) {
$year_kmz  = $5;
 
$hour_kmz  = $1;
my $user  = $6;
$min_kmz  = $2;
$sec_kmz  = 0;
print encode $encOut, "  $user : $routeName.kmz\n";
$day_kmz  = $3;
$month_kmz = $month{$4};
last;
$year_kmz  = $5;
}
 
}
my $user  = $6;
}
 
print encode $encOut, "  $user : $routeName.kmz\n";
my $routeNew = sprintf "%s-%s-%02d %s:%s:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
 
$year, $month, $day, $hour, $min, $sec,
last;
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
}
$type,
}
$routeName;
}
 
my $mtime_txt = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
my $routeNew = sprintf "%s-%s-%02d %s:%s:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
my $mtime_kmz = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
$year, $month, $day, $hour, $min, $sec,
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
my @zeile = ( $routeName, $routeURL, $mtime_txt, $mtime_kmz, $touch, $type );
$type,
$routeName;
my $ref_zeile = \@zeile;
 
my $mtime_txt = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
push @route  , $ref_zeile;
my $mtime_kmz = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
push @routeNew, $routeNew;
 
my @zeile = ( $routeName, $routeURL, $mtime_txt, $mtime_kmz, $touch, $type );
} else {
my $ref_zeile = \@zeile;
die "No Match in Line: $line\n";
}
push @route  , $ref_zeile;
}
push @routeNew, $routeNew;
 
close (FIN);
} else {
 
print "\n  ", $#route + 1, " Routes in List\n\n";
die "No Match in Line: $line\n";
}
}
if ( $updateRecent ) {
 
close (FIN);
#======================================
 
# Checking for recently changed Routes
print "\n  ", $#route + 1, " Routes in List\n\n";
 
print "Checking for recently changed Routes\n\n";
 
if ( $updateRecent ) {
$mech->get("http://radreise-wiki.de/index.php?limit=250&title=Spezial%3ARecentchanges&namespace=0&limit=500&days=30");
 
#======================================
my $website = $mech->content;
# Checking for recently changed Routes
 
my @website = split "\n", $website;
print "Checking for recently changed Routes\n\n";
 
my $day;
$mech->get("http://radreise-wiki.de/index.php?limit=250&title=Spezial%3ARecentchanges&namespace=0&limit=500&days=30");
my $month;
my $year;
my $website = $mech->content;
 
foreach my $line (@website) {
my @website = split "\n", $website;
 
if ($line =~ /<h4>(\d{1,2})\. (\w+) (\d{4})<\/h4>/) {
my $day;
my $month;
$day  = $1;
my $year;
$month = $month{$2};
 
$year  = $3;
foreach my $line (@website) {
 
} elsif ($line =~ /<li>.*? title=\"([^\"]*)\".*?<\/a>; (\d{2}):(\d{2}) \. \. .*?title=\"Benutzer:(.*?)\".*?<\/li>/) {
# <h4>2014-06-14</h4>
 
my $title = $1;
if ($line =~ /<h4>(\d{4})-(\d{2})-(\d{2})<\/h4>/) {
my $hour  = $2;
 
my $min  = $3;
$year  = $1;
my $sec  = 0;
$month = $2;
my $usr  = $4;
$day  = $3;
 
my $mtime = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
#print "$year-$month-$day\n";
 
for (my $j=0; $j<=$#route; $j++) {
} elsif ($line =~ /<li class=.*?title=\"([^\"]*)\".*?date\">(\d{2}):(\d{2}):(\d{2})/) {
 
if ( ! $route[$j][4] and ($route[$j][0] eq $title) and ($mtime > $route[$j][2]) ) {
my $title = $1;
my $hour  = $2;
$route[$j][4] = 1;
my $min  = $3;
$changesTxt  = 1;
my $sec  = $4;
 
print encode $encOut, "$year-$month-$day $hour:$min : Update for $title ($usr)\n";
#print "  $hour:$min:$sec $title\n";
 
my ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz) = Time_to_Date($route[$j][3]);
my $mtime = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
 
my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
for (my $j=0; $j<=$#route; $j++) {
$year, $month, $day, $hour, $min, $sec,
 
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
if ( ! $route[$j][4] and ($route[$j][0] eq $title) and ($mtime > $route[$j][2]) ) {
$route[$j][5],
 
$route[$j][0];
$route[$j][4] = 1;
$changesTxt  = 1;
$routeNew[$j] = $routeNew;
 
}
print encode $encOut, "$year-$month-$day $hour:$min : Update for $title\n";
}
 
}
my ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz) = Time_to_Date($route[$j][3]);
}
 
my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
if ($changesTxt) {
$year, $month, $day, $hour, $min, $sec,
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
print "\n";
$route[$j][5],
$route[$j][0];
} else {
 
$routeNew[$j] = $routeNew;
print "  No Changes\n\n";
}
}
}
}
#=========================================
}
# Checking for recently changed KMZ-Files
 
if ($changesTxt) {
print "Checking for recently changed KMZ-Files\n\n";
 
print "\n";
$mech->get("http://radreise-wiki.de/index.php?title=Spezial:Log&type=upload&user=&page=&limit=250&offset=0");
 
my $website = $mech->content;
} else {
my @website = split "\n", $website;
 
print "  No Changes\n\n";
foreach my $line (@website) {
}
 
if ($line =~ /
#=========================================
<li>
# Checking for recently changed KMZ-Files
(\d{2}):(\d{2}),\ (\d{1,2})\.\ (\w{3})\ (\d{4})
 
.*?
print "Checking for recently changed KMZ-Files\n\n";
title=\"Benutzer:(.*?)\"
 
.*?
$mech->get("http://radreise-wiki.de/index.php?title=Spezial%3ALogbuch&type=upload&user=&page=&year=&month=-1");
title=\"Bild:(.*?)\.kmz
my $website = $mech->content;
\".*
my @website = split "\n", $website;
<\/li>
 
/x) {
foreach my $line (@website) {
 
my $hour_kmz = $1;
if ($line =~ /
my $min_kmz  = $2;
<li\ class
my $sec_kmz   = 0;
.*?
my $day_kmz  = $3;
(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})
my $month_kmz = $month{$4};
.*?
my $year_kmz  = $5;
title=\"Benutzer:(.*?)\"
my $user      = $6;
.*?
my $route    = $7;
title=\"Datei:(.*?)\.kmz\"
.*
my $mtime = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
<\/li>
/x) {
for (my $j=0; $j<=$#route; $j++) {
 
my $year_kmz = $1;
if ( ! $route[$j][4] and ($route[$j][0] eq $route) and ($mtime > $route[$j][3]) ) {
my $month_kmz = $2;
my $day_kmz   = $3;
#$route[$j][4] = 1;
my $hour_kmz  = $4;
$changesKmz    = 1;
my $min_kmz  = $5;
my $sec_kmz  = $6;
print encode $encOut, "$year_kmz-$month_kmz-$day_kmz $hour_kmz:$min_kmz : Update for $route.kmz ($user)\n";
my $user      = $7;
my $route    = $8;
my ($year,$month,$day, $hour,$min,$sec) = Time_to_Date($route[$j][2]);
 
#print "$year_kmz-$month_kmz-$day_kmz :: $hour_kmz:$min_kmz :: $route :: $user\n";
my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
 
$year, $month, $day, $hour, $min, $sec,
my $mtime = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
 
$route[$j][5], $route[$j][0];
for (my $j=0; $j<=$#route; $j++) {
 
$routeNew[$j] = $routeNew;
if ( ! $route[$j][4] and ($route[$j][0] eq $route) and ($mtime > $route[$j][3]) ) {
}
 
}
#$route[$j][4] = 1;
}
$changesKmz    = 1;
}
 
print encode $encOut, "$year_kmz-$month_kmz-$day_kmz $hour_kmz:$min_kmz : Update for $route.kmz ($user)\n";
 
if ($changesTxt or $changesKmz or $updateDates) {
my ($year,$month,$day, $hour,$min,$sec) = Time_to_Date($route[$j][2]);
 
#====================================
my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
# Saving the new Listfile if changed
$year, $month, $day, $hour, $min, $sec,
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
print "\n";
$route[$j][5], $route[$j][0];
 
my $routeNew = join "", @routeNew;
$routeNew[$j] = $routeNew;
}
saveFileIfChangedOrNew ("$baseDir/", $listFile, encode $encoding, $routeNew, 0);
}
}
print "\n";
}
 
} else {
 
if ($changesTxt or $changesKmz or $updateDates) {
print "  No Changes\n\n";
 
}
#====================================
# Saving the new Listfile if changed
}
 
print "\n";
if ($updateAllRoutes) {
 
my $routeNew = join "", @routeNew;
#=======================
 
# Update all Routefiles
saveFileIfChangedOrNew ("$baseDir/", $listFile, encode $encoding, $routeNew, 0);
 
print "Updating all Routefiles\n\n";
print "\n";
 
for (my $i=0; $i<=$#route; $i++) {
} else {
 
$route[$i][4] = 1;
print "  No Changes\n\n";
}
}
}
 
}
 
#====================================================
if ($updateAllRoutes) {
# Parsing of all Files in List and modify, if wanted
 
#=======================
for (my $i=0; $i<=$#route; $i++) {
# Update all Routefiles
 
my $routeName = $route[$i][0];
print "Updating all Routefiles\n\n";
my $routeOut  = encode $encOut,  $routeName;
 
my $routeFile = encode $encAnsi, $routeName;
for (my $i=0; $i<=$#route; $i++) {
my $routeURL  = $route[$i][1];
 
my $touch    = $route[$i][4];
$route[$i][4] = 1;
my $type      = $route[$i][5];
}
}
if ($updateAllKMZ) {
 
 
#=================================
#====================================================
# Update alle KMZ Files from Wiki
# Parsing of all Files in List and modify, if wanted
 
printf "%3d: Saving %s.kmz\n", $i+1, $routeOut;
for (my $i=0; $i<=$#route; $i++) {
 
$mech->get("http://www.radreise-wiki.de/images/$routeURL.kmz", ":content_file" => "$dir_kmz/$routeFile.kmz");
my $routeName = $route[$i][0];
my $routeOut  = encode $encOut,  $routeName;
my $zip = Archive::Zip->new();
my $routeFile = encode $encAnsi, $routeName;
my $routeURL  = $route[$i][1];
my $status = $zip->read("$dir_kmz/$routeFile.kmz");
my $touch    = $route[$i][4];
my $type      = $route[$i][5];
if ($status != AZ_OK) {
 
if ($updateAllKMZ) {
die "Error while reading KMZ file! $!";
 
#=================================
} else {
# Update alle KMZ Files from Wiki
 
my @members = $zip->memberNames();
printf "%3d: Saving %s.kmz\n", $i+1, $routeOut;
 
if ($#members != 0) { die "Error: More than one File within kmz!\n"; }
$mech->get("http://www.radreise-wiki.de/images/$routeURL.kmz", ":content_file" => "$dir_kmz/$routeFile.kmz");
 
print encode $encOut, "    Renaming $members[0] -> $routeFile.kml\n";
my $zip = Archive::Zip->new();
 
$zip->extractTree(undef, "$dir_kmz/");
my $status = $zip->read("$dir_kmz/$routeFile.kmz");
 
rename("$dir_kmz/$members[0]","$dir_kmz/$routeFile.kml") || die "Error while Renaming File: $!";
if ($status != AZ_OK) {
 
my $ucontent = "";
die "Error while reading KMZ file! $!";
open FILE, encode $encAnsi, "$dir_kmz/$routeFile\.kml" or die $!;
 
while (<FILE>) { $ucontent .= $_; }
} else {
close FILE;
 
my $content = decode $encoding, $ucontent;
my @members = $zip->memberNames();
 
if ($content =~ /<\/tessellate>\s*<coordinates>\s*(.*?)\s*<\/coordinates>/s) {
if ($#members != 0) { die "Error: More than one File within kmz!\n"; }
 
my $track = $1;
print encode $encOut, "    Renaming $members[0] -> $routeFile.kml\n";
 
if ($track =~ /\n/) {
$zip->extractTree(undef, "$dir_kmz/");
 
die "Error: Linebreak within Track\n";
rename("$dir_kmz/$members[0]","$dir_kmz/$routeFile.kml") || die "Error while Renaming File: $!";
}
 
if ($members[0] ne "doc.kml") {
print encode $encOut, "    Saving $routeFile.txt\n";
 
if ($members[0] ne "$routeFile.kml") {
open FILE, ">$dir_kmz/$routeFile\.txt" or die $!;
 
print FILE $track;
print "WARNING: $routeFile.kml -> $members[0]\n";
close FILE;
}
}
} else {
 
my $ucontent = "";
print "  Error: No Match in $routeName\n";
open FILE, encode $encAnsi, "$dir_kmz/$routeFile\.kml" or die $!;
die;
while (<FILE>) { $ucontent .= $_; }
}
close FILE;
}  
my $content = decode $encoding, $ucontent;
}
 
if ($content =~ /<\/tessellate>\s*<coordinates>\s*(.*?)\s*<\/coordinates>/s) {
if ($updateRoutes and $touch) {
 
my $track = $1;
#========================================================
 
# Update local Routefiles from Wiki if touch-Flag is set
if ($track =~ /\n/) {
 
printf "%3d: Trying to update %s\n", $i+1, $routeOut;
die "Error: Linebreak within Track\n";
}
$mech->get("http://www.radreise-wiki.de/$routeURL");
my $website = $mech->content;
print encode $encOut, "    Saving $routeFile.txt\n";
 
# Gehe zum Editieren der Route
open FILE, ">$dir_kmz/$routeFile\.txt" or die $!;
$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );
print FILE $track;
$website = $mech->content;
close FILE;
 
$website =~ /<textarea.*>(.*)<\/textarea>/s;
} else {
 
my $wikiText = $1;
print "  Error: No Match in $routeName\n";
die;
$wikiText =~ s/&lt;/</g;
}
$wikiText =~ s/&gt;/>/g;
}  
$wikiText =~ s/&quot;/\"/g;
}
$wikiText =~ s/&amp;/\&/g;
 
if ($updateRoutes and $touch) {
if (length $wikiText > 1) {
 
#========================================================
&saveFileIfChangedOrNew ("$dir_txt/", "$routeFile.txt", encode $encoding, $wikiText, 0);
# Update local Routefiles from Wiki if touch-Flag is set
 
# External Call. Exit Code : 0 - No Change, 1 - KML-File Changed
print "Trying to update $routeOut\n";
my $result = system("perl makeKML.pl $routeFile");
 
$mech->get("http://www.radreise-wiki.de/index.php?title=$routeURL&action=edit");
if (!$result) {
 
print "  No changes in KML-File\n\n";
my $website = $mech->content;
} else {
 
print "\n";
$website =~ /<textarea.*?>(.*)<\/textarea>/s;
}
 
my $wikiText = $1;
} else {
 
$wikiText =~ s/&lt;/</g;
die "URL not found: $routeURL\n";
$wikiText =~ s/&gt;/>/g;
}
$wikiText =~ s/&quot;/\"/g;
}
$wikiText =~ s/&amp;/\&/g;
 
my $newContent;
if (length $wikiText > 1) {
 
if ($modify) {
&saveFileIfChangedOrNew ("$dir_txt/", "$routeFile.txt", encode $encoding, $wikiText, 0);
 
#=====================================================
# External Call. Exit Code : 0 - No Change, 1 - KML-File Changed
# Modify Routefile and save it to different directory
my $result = system("perl makeKML.pl $routeFile");
 
my $ucontent = "";
if (!$result) {
open FILE, encode $encAnsi, "$dir_txt/$routeName\.txt" or die $!;
print "  No changes in KML-File\n\n";
while (<FILE>) { $ucontent .= $_; }
} else {
close FILE;
print "\n";
my $content = decode $encoding, $ucontent;
}
 
my $match_1 = "";
} else {
 
if ($content =~ /(Höhenmeter \(ab\) = [ 0-9\.]*\n)\}\}\n/) {
die "URL not found or Edit-Window is empty: >$routeURL<\n";
}
$match_1 = $1;
}
 
} else {
my $newContent;
 
print "  Error: No Match in $routeName\n";
if ($modify) {
die;
 
}
#=====================================================
# Modify Routefile and save it to upload-directory
my $match_2 = "";
 
my $gegenrichtung = "Bild:Ohne Gegenrichtung.png";
my $ucontent = "";
open FILE, encode $encAnsi, "$dir_txt/$routeName\.txt" or die $!;
if ($content =~ /(\n\{\{[RetT]+our\|[^\}].*\}\}\n)/) {
while (<FILE>) { $ucontent .= $_; }
close FILE;
$match_2 = $1;
my $content = decode $encoding, $ucontent;
 
if ($match_2 =~ /\n\{\{[RetT]+our\|([^\}].*)\}\}\n/) {
my $match_1 = "";
 
$gegenrichtung = $1;
if ($content =~ /(Höhenmeter \(ab\) = [ 0-9\.]*\n)\}\}\n/) {
} else {
$match_1 = $1;
 
print "  Error: No Match in $routeName\n";
} else {
die;
 
}
print "  Error: No Match in $routeName\n";
}
die;
}
my $replace_1 = "$match_1\| Tour-/Retour-Link = $gegenrichtung\n";
 
$replace_1 =~ s/  / /;
my $match_2 = "";
$replace_1 =~ s/Höhenmeter/Höhenmexer/;
my $gegenrichtung = "Bild:Ohne Gegenrichtung.png";
 
if ($content =~ s/\Q$match_1/$replace_1/) {
if ($content =~ /(\n\{\{[RetT]+our\|[^\}].*\}\}\n)/) {
} else {
$match_2 = $1;
print "No Match\n";
 
die;
if ($match_2 =~ /\n\{\{[RetT]+our\|([^\}].*)\}\}\n/) {
}
 
$gegenrichtung = $1;
$content =~ s/\Q$match_2//;
 
} else {
$content =~ s/ \n/\n/g;
 
$content =~ s/ \n/\n/g;
print "  Error: No Match in $routeName\n";
$content =~ s/ \n/\n/g;
die;
$content =~ s/Höhenmexer/Höhenmeter/;
}
}
$newContent = $content;
 
my $replace_1 = "$match_1\| Tour-/Retour-Link = $gegenrichtung\n";
#print encode 'cp850', "  Saving $routeName\n";
$replace_1 =~ s/  / /;
$replace_1 =~ s/Höhenmeter/Höhenmexer/;
open  FOUT, encode $encAnsi, "> $savePath/$routeName.txt" or die $!;
 
print FOUT encode ($encoding, $newContent);
if ($content =~ s/\Q$match_1/$replace_1/) {
close FOUT;
 
}
} else {
print "No Match\n";
if ($upload) {
die;
}
#==========================================
 
# UPLOAD CHANGED TEXTFILES TO THE WIKI !!!
$content =~ s/\Q$match_2//;
 
print encode ('cp850', "  Uploading $routeName to $routeURL\n");
$content =~ s/ \n/\n/g;
$content =~ s/ \n/\n/g;
$mech->get("http://www.radreise-wiki.de/$routeURL");
$content =~ s/ \n/\n/g;
$content =~ s/Höhenmexer/Höhenmeter/;
$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );
 
$newContent = $content;
$mech->field( 'wpTextbox1', $newContent);
 
$mech->field( 'wpSummary' , "Test Wiki-Bot: Infobox Tour-/Retour-Link hinzugefügt" );
#print encode $encOut, "  Saving $routeName\n";
$mech->submit;
 
}
open  FOUT, encode $encAnsi, "> $savePath/$routeName.txt" or die $!;
}
print FOUT encode ($encoding, $newContent);
close FOUT;
if ($changesTxt) {
}
exit(1);
 
} else {
if ($upload) {
exit(0);
 
}
#==========================================
</nowiki>
# UPLOAD CHANGED TEXTFILES TO THE WIKI !!!
 
print encode $encOut, "  Uploading $routeName to $routeURL\n";
 
$mech->get("http://www.radreise-wiki.de/$routeURL");
 
$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );
 
$mech->field( 'wpTextbox1', $newContent);
$mech->field( 'wpSummary' , "Test Wiki-Bot: Infobox Tour-/Retour-Link hinzugefügt" );
$mech->submit;
}
}
 
if ($changesTxt) {
exit(1);
} else {
exit(0);
}
</nowiki>
 
[[Kategorie: Verwaltungs-Software]]

Version vom 12. Januar 2018, 18:29 Uhr

Das Perl-Skript Route-Management.pl enthält eine Vielzahl von Funktionen zur Wiki-Verwaltung. Beim Aufruf muss eine 6-stellige Binärzahl übergeben werden, die diese Funktionen kodiert. Die wichtigsten Anwendungen sind:

  • 0101000 Aktualisiere die kürzlich geänderten Streckendateien
  • 0011000 Lade alle Streckendateien herunter
  • 0010100 Lade alle Trackdateien herunter

Für die Einrichtung der Verwaltungssoftware sind die letzten zwei Funktionen wichtig. Im laufenden Betrieb ist es die erste Funktion.

Beispiel für einen Programmstart zum Update der Streckendateien:

perl Route-Management.pl 0101000

Quellcode des Skripts:

use strict;

my $flags;

if ($ARGV[0]) {

	$flags = $ARGV[0];

} else {

	$flags = "0101000";
}

my @flags = split //, $flags;

#=========================
# Control-Flags

# 0101000 Update only recently changed Routefiles - show changed Trackfiles
# 0010100 Update all Trackfiles - do this first and get kml-Files
# 0011000 Update all Routefiles
# 0010010 Modify all Routefiles
# 0010011 Modify and upload all Routefiles

my $updateDates     = $flags[0]; # 1 = Read all Route- and KMZ-History Pages and update 
								 #     Listfile Dates

my $updateRecent    = $flags[1]; # 1 = Only update Routefiles from Wiki Recent Changes Page
                                 # 0 = Update all Routefiles

my $updateAllRoutes = $flags[2]; # 1 = Treat all Routefiles
                                 # 0 = Only treat touched Routefiles

my $updateRoutes    = $flags[3]; # 1 = Update Routefiles from Wiki
                                 # 0 = Do not update Routefiles

my $updateAllKMZ    = $flags[4]; # 1 = Update KMZ Files from Wiki and extract the KML content

my $modify          = $flags[5]; # 1 = Modify Routefiles
my $upload          = $flags[6]; # 1 = Upload modified Routefiles to Wiki


#=====================
# Import Date Library

use Date::Calc qw (Date_to_Time Time_to_Date);

#=====================================
# MD5 Checksum und Zip-Funktionalität

use Digest::MD5  qw(md5_hex);
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );

#================
# Encoding Stuff

use Encode qw(encode decode);

#=================
# Hash for Months

my %month   = qw (Januar 01 Februar 02 März 03 April 04 Mai 05 Juni 06 Juli 07 August 08 September 09 Oktober 10 November 11 Dezember 12);
my %month_s = qw (Jan 01 Feb 02 Mär 03 Apr 04 Mai 05 Jun 06 Jul 07 Aug 08 Sep 09 Okt 10 Nov 11 Dez 12);

#==================
# Default Settings

push @INC, '.';

require "ini.pl";

my ($baseDir, $outDir, $username, $password, $encoding, $encAnsi, $encOut) = getIni();

my $dir_txt  = "$baseDir/text";
my $dir_kmz  = "$baseDir/kmz";
my $savePath = "$baseDir/upload";

my $listFile = "RouteList.txt";

my $mech;             # Handle for mechanize-Browser
my $changesTxt  = 0;  # One or more Routefiles have changed
my $changesKmz  = 0;  # One or more KMZfiles have changed

my @route    = ();    # Stores all Infos about Routes
my @routeNew = ();    # Keeps all new Infos for Saving



if ($updateDates or $updateRecent or $updateRoutes or $upload or $updateAllKMZ) {

	#=====================================================
	# Initialisieren von Mechanize-Browser und Cookie-Jar

	use WWW::Mechanize;
	use HTTP::Cookies;
	$mech = WWW::Mechanize->new( autocheck => 1 );
	$mech->agent_alias( 'Windows Mozilla' );
	my $cookie_jar = HTTP::Cookies->new( file => "cookies.txt", autosave => 1 );
	$mech->cookie_jar($cookie_jar);

	#============================================================
	# Einloggen ins Radreise-Wiki um in den Edit-Modus zu kommen

	$mech->get("http://www.radreise-wiki.de/Spezial:Userlogin");
	$mech->form_number('1');
	$mech->field("wpName", $username);
	$mech->field("wpPassword", $password);
	$mech->tick('wpRemember', '1');
	$mech->click();
}

#==========================
# Load Routelist from File

print "\nReading $listFile\n";

my $content;

open FIN, "$baseDir/$listFile" or die $!;

while (<FIN>) {

	my $line = decode $encoding, $_;
	
	if ($line =~ /^
		(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})   # mtime of txt-File
		\ ::\ 
		(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})   # mtime of kmz-File
		\ ::\ 
		([H|h|R|r|L|X])                                    # Type
		\ ::\ 
		(.*)                                               # Routename
		$/x) {
	
		my $year      =  $1;
		my $month     =  $2;
		my $day       =  $3;
		my $hour      =  $4;
		my $min       =  $5;
		my $sec       =  $6;

		my $year_kmz  =  $7;
		my $month_kmz =  $8;
		my $day_kmz   =  $9;
		my $hour_kmz  = $10;
		my $min_kmz   = $11;
		my $sec_kmz   = $12;

		my $type      = $13;

		next if ($type eq "X");

		my $routeName = $14;

		my $routeFileName = encode $encAnsi, $routeName;

		my $routeURL = encodeRouteNameURL($routeFileName);

		my $touch = 0;
		
		if ( $updateDates ) {

			#============================================
			# Check Route- and KMZ-History Sites in Wiki

			$mech->get("http://radreise-wiki.de/index.php?title=$routeURL&action=history");
			my $website = $mech->content;
			my @website = split "\n", $website;

			foreach my $l (@website) {

				if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4})</) {

					$hour  = $1;
					$min   = $2;
					$sec   =  0;
					$day   = $3;
					$month = $month{$4};
					$year  = $5;

					last;
				}
			}

			$mech->get("http://radreise-wiki.de/Bild:$routeURL.kmz");
			my $website = $mech->content;
			my @website = split "\n", $website;

			foreach my $l (@website) {

				if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4}).*?\"Benutzer:(.*?)\"/) {

					$hour_kmz  = $1;
					$min_kmz   = $2;
					$sec_kmz   = 0;
					$day_kmz   = $3;
					$month_kmz = $month{$4};
					$year_kmz  = $5;

					my $user   = $6;

					print encode $encOut, "   $user : $routeName.kmz\n";

					last;
				}
			}
		}

		my $routeNew = sprintf "%s-%s-%02d %s:%s:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n", 
			$year, $month, $day, $hour, $min, $sec,
			$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
			$type,
			$routeName;

		my $mtime_txt = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
		my $mtime_kmz = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);

		my @zeile = ( $routeName, $routeURL, $mtime_txt, $mtime_kmz, $touch, $type );
		
		my $ref_zeile = \@zeile;
		
		push @route   , $ref_zeile;
		push @routeNew, $routeNew;

	} else {

		die "No Match in Line: $line\n";
	}
}

close (FIN);

print "\n   ", $#route + 1, " Routes in List\n\n";


if ( $updateRecent ) {

	#======================================
	# Checking for recently changed Routes

	print "Checking for recently changed Routes\n\n";

	$mech->get("http://radreise-wiki.de/index.php?limit=250&title=Spezial%3ARecentchanges&namespace=0&limit=500&days=30");
	
	my $website = $mech->content;

	my @website = split "\n", $website;

	my $day;
	my $month;
	my $year;

	foreach my $line (@website) {

		# <h4>2014-06-14</h4>

		if ($line =~ /<h4>(\d{4})-(\d{2})-(\d{2})<\/h4>/) {

			$year  = $1;
			$month = $2;
			$day   = $3;

			#print "$year-$month-$day\n";

		} elsif ($line =~ /<li class=.*?title=\"([^\"]*)\".*?date\">(\d{2}):(\d{2}):(\d{2})/) {

			my $title = $1;
			my $hour  = $2;
			my $min   = $3;
			my $sec   = $4;

			#print "   $hour:$min:$sec $title\n";

			my $mtime = Date_to_Time ($year,$month,$day, $hour,$min,$sec);

			for (my $j=0; $j<=$#route; $j++) {

				if ( ! $route[$j][4] and ($route[$j][0] eq $title) and ($mtime > $route[$j][2]) ) {

					$route[$j][4] = 1;
					$changesTxt   = 1;

					print encode $encOut, "$year-$month-$day $hour:$min : Update for $title\n";

					my ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz) = Time_to_Date($route[$j][3]);

					my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n", 
						$year, $month, $day, $hour, $min, $sec,
						$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
						$route[$j][5],
						$route[$j][0];

					$routeNew[$j] = $routeNew;
				}
			}
		}
	}

	if ($changesTxt) {

		print "\n";

	} else {

		print "   No Changes\n\n";
	}

	#=========================================
	# Checking for recently changed KMZ-Files

	print "Checking for recently changed KMZ-Files\n\n";

	$mech->get("http://radreise-wiki.de/index.php?title=Spezial%3ALogbuch&type=upload&user=&page=&year=&month=-1");
	my $website = $mech->content;
	my @website = split "\n", $website;

	foreach my $line (@website) {

		if ($line =~ /
				<li\ class
				.*?
				(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})
				.*?
				title=\"Benutzer:(.*?)\"
				.*?
				title=\"Datei:(.*?)\.kmz\"
				.*
				<\/li>
			/x) {

			my $year_kmz  = $1;
			my $month_kmz = $2;
			my $day_kmz   = $3;
			my $hour_kmz  = $4;
			my $min_kmz   = $5;
			my $sec_kmz   = $6;
			my $user      = $7;
			my $route     = $8;

			#print "$year_kmz-$month_kmz-$day_kmz :: $hour_kmz:$min_kmz :: $route :: $user\n";

			my $mtime = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);

			for (my $j=0; $j<=$#route; $j++) {

				if ( ! $route[$j][4] and ($route[$j][0] eq $route) and ($mtime > $route[$j][3]) ) {

					#$route[$j][4] = 1;
					$changesKmz    = 1;

					print encode $encOut, "$year_kmz-$month_kmz-$day_kmz $hour_kmz:$min_kmz : Update for $route.kmz ($user)\n";

					my ($year,$month,$day, $hour,$min,$sec) = Time_to_Date($route[$j][2]);

					my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n", 
						$year, $month, $day, $hour, $min, $sec,
						$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
						$route[$j][5], $route[$j][0];

					$routeNew[$j] = $routeNew;
				}
			}
		}
	}


	if ($changesTxt or $changesKmz or $updateDates) {

		#====================================
		# Saving the new Listfile if changed

		print "\n";

		my $routeNew = join "", @routeNew;

		saveFileIfChangedOrNew ("$baseDir/", $listFile, encode $encoding, $routeNew, 0);

		print "\n";

	} else {

		print "   No Changes\n\n";
	}

}

if ($updateAllRoutes) {

	#=======================
	# Update all Routefiles

	print "Updating all Routefiles\n\n";

	for (my $i=0; $i<=$#route; $i++) {

		$route[$i][4] = 1;
	}
}


#====================================================
# Parsing of all Files in List and modify, if wanted

for (my $i=0; $i<=$#route; $i++) {

	my $routeName = $route[$i][0];
	my $routeOut  = encode $encOut,  $routeName;
	my $routeFile = encode $encAnsi, $routeName;
	my $routeURL  = $route[$i][1];
	my $touch     = $route[$i][4];
	my $type      = $route[$i][5];

	if ($updateAllKMZ) {

		#=================================
		# Update alle KMZ Files from Wiki

		printf "%3d: Saving %s.kmz\n", $i+1, $routeOut;

		$mech->get("http://www.radreise-wiki.de/images/$routeURL.kmz", ":content_file" => "$dir_kmz/$routeFile.kmz");

		my $zip = Archive::Zip->new();

		my $status = $zip->read("$dir_kmz/$routeFile.kmz");

		if ($status != AZ_OK) {

			die "Error while reading KMZ file! $!";

		} else {

			my @members = $zip->memberNames();

			if ($#members != 0) { die "Error: More than one File within kmz!\n"; }

			print encode $encOut, "     Renaming $members[0] -> $routeFile.kml\n";

			$zip->extractTree(undef, "$dir_kmz/");

			rename("$dir_kmz/$members[0]","$dir_kmz/$routeFile.kml") || die "Error while Renaming File: $!";

			if ($members[0] ne "doc.kml") {

				if ($members[0] ne "$routeFile.kml") {

					print "WARNING: $routeFile.kml -> $members[0]\n";
				}
			}

			my $ucontent = "";
			open FILE, encode $encAnsi, "$dir_kmz/$routeFile\.kml" or die $!;
			while (<FILE>) { $ucontent .= $_; }
			close FILE;
			my $content = decode $encoding, $ucontent;

			if ($content =~ /<\/tessellate>\s*<coordinates>\s*(.*?)\s*<\/coordinates>/s) {

				my $track = $1;

				if ($track =~ /\n/) {

					die "Error: Linebreak within Track\n";
				}
				
				print encode $encOut, "     Saving $routeFile.txt\n";

				open FILE, ">$dir_kmz/$routeFile\.txt" or die $!;
				print FILE $track;
				close FILE;

			} else {

				print "   Error: No Match in $routeName\n";
				die;
			}
		} 
	}

	if ($updateRoutes and $touch) {

		#========================================================
		# Update local Routefiles from Wiki if touch-Flag is set

		print "Trying to update $routeOut\n";

		$mech->get("http://www.radreise-wiki.de/index.php?title=$routeURL&action=edit");

		my $website = $mech->content;

		$website =~ /<textarea.*?>(.*)<\/textarea>/s;

		my $wikiText = $1;

		$wikiText =~ s/</</g;
		$wikiText =~ s/>/>/g;
		$wikiText =~ s/"/\"/g;
		$wikiText =~ s/&/\&/g;

		if (length $wikiText > 1) {

			&saveFileIfChangedOrNew ("$dir_txt/", "$routeFile.txt", encode $encoding, $wikiText, 0);

			# External Call. Exit Code : 0 - No Change, 1 - KML-File Changed
			my $result = system("perl makeKML.pl $routeFile");

			if (!$result) {
				print "   No changes in KML-File\n\n";
			} else {
				print "\n";
			}

		} else {

			die "URL not found or Edit-Window is empty: >$routeURL<\n";
		}
	}

	my $newContent;

	if ($modify) {

		#=====================================================
		# Modify Routefile and save it to upload-directory

		my $ucontent = "";
		open FILE, encode $encAnsi, "$dir_txt/$routeName\.txt" or die $!;
		while (<FILE>) { $ucontent .= $_; }
		close FILE;
		my $content = decode $encoding, $ucontent;

		my $match_1 = "";

		if ($content =~ /(Höhenmeter \(ab\) = [ 0-9\.]*\n)\}\}\n/) {
		
			$match_1 = $1;

		} else {

			print "   Error: No Match in $routeName\n";
			die;
		}

		my $match_2 = "";
		my $gegenrichtung = "Bild:Ohne Gegenrichtung.png";

		if ($content =~ /(\n\{\{[RetT]+our\|[^\}].*\}\}\n)/) {
		
			$match_2 = $1;

			if ($match_2 =~ /\n\{\{[RetT]+our\|([^\}].*)\}\}\n/) {

				$gegenrichtung = $1;

			} else {

				print "   Error: No Match in $routeName\n";
				die;
			}
		}

		my $replace_1 = "$match_1\| Tour-/Retour-Link = $gegenrichtung\n";
		$replace_1 =~ s/  / /;
		$replace_1 =~ s/Höhenmeter/Höhenmexer/;

		if ($content =~ s/\Q$match_1/$replace_1/) {

		} else {
			print "No Match\n";
			die;
		}

		$content =~ s/\Q$match_2//;

		$content =~ s/ \n/\n/g;
		$content =~ s/ \n/\n/g;
		$content =~ s/ \n/\n/g;
		$content =~ s/Höhenmexer/Höhenmeter/;

		$newContent = $content;

		#print encode $encOut, "   Saving $routeName\n";

		open  FOUT, encode $encAnsi, "> $savePath/$routeName.txt" or die $!;
		print FOUT encode ($encoding, $newContent);
		close FOUT;
	}

	if ($upload) {

		#==========================================
		# UPLOAD CHANGED TEXTFILES TO THE WIKI !!!

		print encode $encOut, "   Uploading $routeName to $routeURL\n";

		$mech->get("http://www.radreise-wiki.de/$routeURL");

		$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );

		$mech->field( 'wpTextbox1', $newContent);
		$mech->field( 'wpSummary' , "Test Wiki-Bot: Infobox Tour-/Retour-Link hinzugefügt" );
		$mech->submit;
	}
}

if ($changesTxt) {
	exit(1);
} else {
	exit(0);
}