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

Aus Radreise-Wiki
(13 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 12: Zeile 12:


'''Quellcode des Skripts:'''
'''Quellcode des Skripts:'''
  <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 Download all Routefiles
# 0010100 Update all Trackfiles - do this first and get kml-Files
# 0010100 Download 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);
 
my $encoding = 'utf-8';
use Encode qw(encode decode);
my $encOut;
 
$encOut  = 'cp1252'; # Windows Ansi
#=================
$encOut  = 'cp850' ; # DOS Fenster
# 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);
# Hash for Months
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);
 
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);
#==================
# Default Settings
#===========================
 
# Important Paths and Files
push @INC, '.';
 
require "ini.pl";
require "ini.pl";
my ($baseDir, $outDir, $username, $password) = getIni();
 
my ($baseDir, $outDir, $username, $password, $encoding, $encAnsi, $encOut) = getIni();
my $dir_txt  = "$baseDir/text";
 
my $dir_kmz  = "$baseDir/kmz";
my $dir_txt  = "$baseDir/text";
my $savePath = "$baseDir/upload";
my $dir_kmz  = "$baseDir/kmz";
my $savePath = "$baseDir/upload";
my $listFile = "RouteList.txt";
 
my $listFile = "RouteList.txt";
my $mech;            # Handle for mechanize-Browser
 
my $changesTxt  = 0;  # One or more Routefiles have changed
my $mech;            # Handle for mechanize-Browser
my $changesKmz  = 0;  # One or more KMZfiles have changed
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
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) {
 
if ($updateDates or $updateRecent or $updateRoutes or $upload or $updateAllKMZ) {
#=====================================================
 
# Initialisieren von Mechanize-Browser und Cookie-Jar
#=====================================================
# Initialisieren von Mechanize-Browser und Cookie-Jar
use WWW::Mechanize;
 
use HTTP::Cookies;
use WWW::Mechanize;
$mech = WWW::Mechanize->new( autocheck => 1 );
use HTTP::Cookies;
$mech->agent_alias( 'Windows Mozilla' );
$mech = WWW::Mechanize->new( autocheck => 1 );
my $cookie_jar = HTTP::Cookies->new( file => "cookies.txt", autosave => 1 );
$mech->agent_alias( 'Windows Mozilla' );
$mech->cookie_jar($cookie_jar);
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
#============================================================
# 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->get("http://www.radreise-wiki.de/Spezial:Userlogin");
$mech->field("wpName", $username);
$mech->form_number('1');
$mech->field("wpPassword", $password);
$mech->field("wpName", $username);
$mech->tick('wpRemember', '1');
$mech->field("wpPassword", $password);
$mech->click();
$mech->tick('wpRemember', '1');
}
$mech->click();
}
#==========================
 
# Load Routelist from File
#==========================
# Load Routelist from File
print "\nGetting Content from File: $listFile\n";
 
print "\nReading $listFile\n";
my $content;
 
my $content;
open FIN, "$baseDir/$listFile" or die $!;
 
open FIN, "$baseDir/$listFile" or die $!;
while (<FIN>) {
 
while (<FIN>) {
my $line = decode $encoding, $_;
 
my $line = decode $encoding, $_;
if ($line =~ /^
(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})  # mtime of txt-File
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
\ ::\  
\ ::\  
(\d{4})-(\d{2})-(\d{2})\ (\d{2}):(\d{2}):(\d{2})  # mtime of kmz-File
([H|h|R|L]) # Type
\ ::\  
\ ::\  
([H|h|R|r|L|X])                                   # Type
(.*)       # Routename
\ ::\  
\ ::\
(.*)                                               # Routename
(.*)        # RouteURL
$/x) {
$/x) {
my $year      =  $1;
my $year      =  $1;
my $month    =  $2;
my $month    =  $2;
my $day      =  $3;
my $day      =  $3;
my $hour      =  $4;
my $hour      =  $4;
my $min      =  $5;
my $min      =  $5;
my $sec      =  $6;
my $sec      =  $6;
 
my $year_kmz  =  $7;
my $year_kmz  =  $7;
my $month_kmz =  $8;
my $month_kmz =  $8;
my $day_kmz  =  $9;
my $day_kmz  =  $9;
my $hour_kmz  = $10;
my $hour_kmz  = $10;
my $min_kmz  = $11;
my $min_kmz  = $11;
my $sec_kmz  = $12;
my $sec_kmz  = $12;
 
my $type      = $13;
my $type      = $13;
 
next if ($type eq "X");
my $routeName = $14;
 
my $routeURL  = $15;
my $routeName = $14;
 
my $touch     = 0;
my $routeFileName = encode $encAnsi, $routeName;
 
if ( $updateDates ) {
my $routeURL = encodeRouteNameURL($routeFileName);
 
#============================================
my $touch = 0;
# Check Route- and KMZ-History Sites in Wiki
if ( $updateDates ) {
$mech->get("http://radreise-wiki.de/index.php?title=$routeURL&action=history");
 
my $website = $mech->content;
#============================================
my @website = split "\n", $website;
# Check Route- and KMZ-History Sites in Wiki
 
foreach my $l (@website) {
$mech->get("http://radreise-wiki.de/index.php?title=$routeURL&action=history");
my $website = $mech->content;
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4})</) {
my @website = split "\n", $website;
 
$hour  = $1;
foreach my $l (@website) {
$min  = $2;
 
$sec  =  0;
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4})</) {
$day  = $3;
 
$month = $month{$4};
$hour  = $1;
$year  = $5;
$min  = $2;
$sec  =  0;
last;
$day  = $3;
}
$month = $month{$4};
}
$year  = $5;
 
$mech->get("http://radreise-wiki.de/Bild:$routeURL.kmz");
last;
my $website = $mech->content;
}
my @website = split "\n", $website;
}
 
foreach my $l (@website) {
$mech->get("http://radreise-wiki.de/Bild:$routeURL.kmz");
my $website = $mech->content;
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4}).*?\"Benutzer:(.*?)\"/) {
my @website = split "\n", $website;
 
$hour_kmz  = $1;
foreach my $l (@website) {
$min_kmz  = $2;
 
$sec_kmz  = 0;
if ($l =~ />(\d{2}):(\d{2}), (\d{1,2})\. (\w{3}) (\d{4}).*?\"Benutzer:(.*?)\"/) {
$day_kmz  = $3;
 
$month_kmz = $month{$4};
$hour_kmz  = $1;
$year_kmz  = $5;
$min_kmz  = $2;
$sec_kmz  = 0;
my $user  = $6;
$day_kmz  = $3;
$month_kmz = $month{$4};
print encode $encOut, "  $user : $routeName.kmz\n";
$year_kmz  = $5;
 
last;
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 :: %s\n",  
}
$year, $month, $day, $hour, $min, $sec,
}
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
}
$type,
 
$routeName, $routeURL;
my $routeNew = sprintf "%s-%s-%02d %s:%s:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s\n",  
$year, $month, $day, $hour, $min, $sec,
my $mtime_txt = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
my $mtime_kmz = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
$type,
$routeName;
my @zeile = ( $routeName, $routeURL, $mtime_txt, $mtime_kmz, $touch, $type );
 
my $mtime_txt = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
my $ref_zeile = \@zeile;
my $mtime_kmz = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
 
push @route  , $ref_zeile;
my @zeile = ( $routeName, $routeURL, $mtime_txt, $mtime_kmz, $touch, $type );
push @routeNew, $routeNew;
my $ref_zeile = \@zeile;
} else {
push @route  , $ref_zeile;
die "No Match in Line: $line\n";
push @routeNew, $routeNew;
}
 
}
} else {
 
close (FIN);
die "No Match in Line: $line\n";
}
print "\n  ", $#route + 1, " Routes in List\n\n";
}
 
close (FIN);
if ( $updateRecent ) {
 
print "\n  ", $#route + 1, " Routes in List\n\n";
#======================================
 
# Checking for recently changed Routes
 
if ( $updateRecent ) {
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");
# Checking for recently changed Routes
 
my $website = $mech->content;
print "Checking for recently changed Routes\n\n";
 
my @website = split "\n", $website;
$mech->get("http://radreise-wiki.de/index.php?limit=250&title=Spezial%3ARecentchanges&namespace=0&limit=500&days=30");
my $day;
my $website = $mech->content;
my $month;
 
my $year;
my @website = split "\n", $website;
 
foreach my $line (@website) {
my $day;
my $month;
if ($line =~ /<h4>(\d{1,2})\. (\w+) (\d{4})<\/h4>/) {
my $year;
 
$day  = $1;
foreach my $line (@website) {
$month = $month{$2};
 
$year  = $3;
# <h4>2014-06-14</h4>
 
} elsif ($line =~ /<li>.*? title=\"([^\"]*)\".*?<\/a>; (\d{2}):(\d{2}) \. \. .*?title=\"Benutzer:(.*?)\".*?<\/li>/) {
if ($line =~ /<h4>(\d{4})-(\d{2})-(\d{2})<\/h4>/) {
 
my $title = $1;
$year  = $1;
my $hour  = $2;
$month = $2;
my $min  = $3;
$day  = $3;
my $sec  = 0;
 
my $usr  = $4;
#print "$year-$month-$day\n";
 
my $mtime = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
} elsif ($line =~ /<li class=.*?title=\"([^\"]*)\".*?date\">(\d{2}):(\d{2}):(\d{2})/) {
 
for (my $j=0; $j<=$#route; $j++) {
my $title = $1;
my $hour  = $2;
if ( ! $route[$j][4] and ($route[$j][0] eq $title) and ($mtime > $route[$j][2]) ) {
my $min  = $3;
my $sec  = $4;
$route[$j][4] = 1;
 
$changesTxt  = 1;
#print "  $hour:$min:$sec $title\n";
 
print encode $encOut, "$year-$month-$day $hour:$min : Update for $title ($usr)\n";
my $mtime = Date_to_Time ($year,$month,$day, $hour,$min,$sec);
 
my ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz) = Time_to_Date($route[$j][3]);
for (my $j=0; $j<=$#route; $j++) {
 
my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s :: %s\n",  
if ( ! $route[$j][4] and ($route[$j][0] eq $title) and ($mtime > $route[$j][2]) ) {
$year, $month, $day, $hour, $min, $sec,
 
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
$route[$j][4] = 1;
$route[$j][5],
$changesTxt  = 1;
$route[$j][0], $route[$j][1];
 
print encode $encOut, "$year-$month-$day $hour:$min : Update for $title\n";
$routeNew[$j] = $routeNew;
 
}
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,
if ($changesTxt) {
$route[$j][5],
$route[$j][0];
print "\n";
 
$routeNew[$j] = $routeNew;
} else {
}
}
print "  No Changes\n\n";
}
}
}
 
#=========================================
if ($changesTxt) {
# Checking for recently changed KMZ-Files
 
print "\n";
print "Checking for recently changed KMZ-Files\n\n";
 
} else {
$mech->get("http://radreise-wiki.de/index.php?title=Spezial:Log&type=upload&user=&page=&limit=250&offset=0");
 
my $website = $mech->content;
print "  No Changes\n\n";
my @website = split "\n", $website;
}
 
foreach my $line (@website) {
#=========================================
# Checking for recently changed KMZ-Files
if ($line =~ /
 
<li>
print "Checking for recently changed KMZ-Files\n\n";
(\d{2}):(\d{2}),\ (\d{1,2})\.\ (\w{3})\ (\d{4})
 
.*?
$mech->get("http://radreise-wiki.de/index.php?title=Spezial%3ALogbuch&type=upload&user=&page=&year=&month=-1");
title=\"Benutzer:(.*?)\"
my $website = $mech->content;
.*?
my @website = split "\n", $website;
title=\"Bild:(.*?)\.kmz
 
\".*
foreach my $line (@website) {
<\/li>
 
/x) {
if ($line =~ /
<li\ class
my $hour_kmz = $1;
.*?
my $min_kmz  = $2;
(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})
my $sec_kmz   = 0;
.*?
my $day_kmz  = $3;
title=\"Benutzer:(.*?)\"
my $month_kmz = $month{$4};
.*?
my $year_kmz  = $5;
title=\"Datei:(.*?)\.kmz\"
my $user      = $6;
.*
my $route    = $7;
<\/li>
/x) {
my $mtime = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
 
my $year_kmz = $1;
for (my $j=0; $j<=$#route; $j++) {
my $month_kmz = $2;
my $day_kmz   = $3;
if ( ! $route[$j][4] and ($route[$j][0] eq $route) and ($mtime > $route[$j][3]) ) {
my $hour_kmz  = $4;
my $min_kmz  = $5;
#$route[$j][4] = 1;
my $sec_kmz  = $6;
$changesKmz    = 1;
my $user      = $7;
my $route    = $8;
print encode $encOut, "$year_kmz-$month_kmz-$day_kmz $hour_kmz:$min_kmz : Update for $route.kmz ($user)\n";
 
#print "$year_kmz-$month_kmz-$day_kmz :: $hour_kmz:$min_kmz :: $route :: $user\n";
my ($year,$month,$day, $hour,$min,$sec) = Time_to_Date($route[$j][2]);
 
my $mtime = Date_to_Time ($year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz);
my $routeNew = sprintf "%s-%02d-%02d %02d:%02d:%02d :: %s-%02d-%02d %02d:%02d:%02d :: %s :: %s :: %s\n",  
 
$year, $month, $day, $hour, $min, $sec,
for (my $j=0; $j<=$#route; $j++) {
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
 
$route[$j][5],
if ( ! $route[$j][4] and ($route[$j][0] eq $route) and ($mtime > $route[$j][3]) ) {
$route[$j][0], $route[$j][1];
 
#$route[$j][4] = 1;
$routeNew[$j] = $routeNew;
$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",  
if ($changesTxt or $changesKmz or $updateDates) {
$year, $month, $day, $hour, $min, $sec,
$year_kmz,$month_kmz,$day_kmz, $hour_kmz,$min_kmz,$sec_kmz,
#====================================
$route[$j][5], $route[$j][0];
# Saving the new Listfile if changed
 
$routeNew[$j] = $routeNew;
print "\n";
}
}
my $routeNew = join "", @routeNew;
}
}
saveFileIfChangedOrNew ("$baseDir/", $listFile, encode $encoding, $routeNew, 0);
 
 
print "\n";
if ($changesTxt or $changesKmz or $updateDates) {
 
} else {
#====================================
# Saving the new Listfile if changed
print "  No Changes\n\n";
 
}
print "\n";
 
}
my $routeNew = join "", @routeNew;
 
if ($updateAllRoutes) {
saveFileIfChangedOrNew ("$baseDir/", $listFile, encode $encoding, $routeNew, 0);
 
#=======================
print "\n";
# Update all Routefiles
 
} else {
print "Updating all Routefiles\n\n";
 
print "  No Changes\n\n";
for (my $i=0; $i<=$#route; $i++) {
}
 
$route[$i][4] = 1;
}
}
 
}
if ($updateAllRoutes) {
 
#=======================
#====================================================
# Update all Routefiles
# Parsing of all Files in List and modify, if wanted
 
print "Updating all Routefiles\n\n";
for (my $i=0; $i<=$#route; $i++) {
 
for (my $i=0; $i<=$#route; $i++) {
my $routeName = $route[$i][0];
 
my $routeOut  = encode $encOut,  $routeName;
$route[$i][4] = 1;
my $routeFile = encode 'cp1252', $routeName;
}
my $routeURL  = $route[$i][1];
}
my $touch    = $route[$i][4];
 
my $type      = $route[$i][5];
 
#====================================================
if ($updateAllKMZ) {
# Parsing of all Files in List and modify, if wanted
 
#=================================
for (my $i=0; $i<=$#route; $i++) {
# Update alle KMZ Files from Wiki
 
my $routeName = $route[$i][0];
printf "%3d: Saving %s.kmz\n", $i+1, $routeOut;
my $routeOut  = encode $encOut,  $routeName;
my $routeFile = encode $encAnsi, $routeName;
$mech->get("http://www.radreise-wiki.de/images/$routeURL.kmz", ":content_file" => "$dir_kmz/$routeFile.kmz");
my $routeURL  = $route[$i][1];
my $touch    = $route[$i][4];
my $zip = Archive::Zip->new();
my $type      = $route[$i][5];
 
my $status = $zip->read("$dir_kmz/$routeFile.kmz");
if ($updateAllKMZ) {
 
if ($status != AZ_OK) {
#=================================
# Update alle KMZ Files from Wiki
die "Error while reading KMZ file! $!";
 
printf "%3d: Saving %s.kmz\n", $i+1, $routeOut;
} else {
 
$mech->get("http://www.radreise-wiki.de/images/$routeURL.kmz", ":content_file" => "$dir_kmz/$routeFile.kmz");
my @members = $zip->memberNames();
 
my $zip = Archive::Zip->new();
if ($#members != 0) { die "Error: More than one File within kmz!\n"; }
 
my $status = $zip->read("$dir_kmz/$routeFile.kmz");
print encode $encOut, "    Renaming $members[0] -> $routeFile.kml\n";
 
if ($status != AZ_OK) {
$zip->extractTree(undef, "$dir_kmz/");
 
die "Error while reading KMZ file! $!";
rename("$dir_kmz/$members[0]","$dir_kmz/$routeFile.kml") || die "Error while Renaming File: $!";
 
} else {
my $ucontent = "";
 
open FILE, encode 'cp1252', "$dir_kmz/$routeFile\.kml" or die $!;
my @members = $zip->memberNames();
while (<FILE>) { $ucontent .= $_; }
 
close FILE;
if ($#members != 0) { die "Error: More than one File within kmz!\n"; }
my $content = decode $encoding, $ucontent;
 
print encode $encOut, "    Renaming $members[0] -> $routeFile.kml\n";
if ($content =~ /<\/tessellate>\s*<coordinates>\s*(.*?)\s*<\/coordinates>/s) {
 
$zip->extractTree(undef, "$dir_kmz/");
my $track = $1;
 
rename("$dir_kmz/$members[0]","$dir_kmz/$routeFile.kml") || die "Error while Renaming File: $!";
if ($track =~ /\n/) {
 
if ($members[0] ne "doc.kml") {
die "Error: Linebreak within Track\n";
 
}
if ($members[0] ne "$routeFile.kml") {
 
print encode $encOut, "    Saving $routeFile.txt\n";
print "WARNING: $routeFile.kml -> $members[0]\n";
}
open FILE, ">$dir_kmz/$routeFile\.txt" or die $!;
}
print FILE $track;
 
close FILE;
my $ucontent = "";
open FILE, encode $encAnsi, "$dir_kmz/$routeFile\.kml" or die $!;
} else {
while (<FILE>) { $ucontent .= $_; }
close FILE;
print "  Error: No Match in $routeName\n";
my $content = decode $encoding, $ucontent;
die;
 
}
if ($content =~ /<\/tessellate>\s*<coordinates>\s*(.*?)\s*<\/coordinates>/s) {
}  
 
}
my $track = $1;
 
if ($updateRoutes and $touch) {
if ($track =~ /\n/) {
 
#========================================================
die "Error: Linebreak within Track\n";
# Update local Routefiles from Wiki if touch-Flag is set
}
printf "%3d: Saving %s\n", $i+1, $routeOut;
print encode $encOut, "    Saving $routeFile.txt\n";
 
$mech->get("http://www.radreise-wiki.de/$routeURL");
open FILE, ">$dir_kmz/$routeFile\.txt" or die $!;
my $website = $mech->content;
print FILE $track;
close FILE;
# Gehe zum Editieren der Route
 
$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );
} else {
$website = $mech->content;
 
print "  Error: No Match in $routeName\n";
$website =~ /<textarea.*>(.*)<\/textarea>/s;
die;
}
my $wikiText = $1;
}  
}
$wikiText =~ s/&lt;/</g;
 
$wikiText =~ s/&gt;/>/g;
if ($updateRoutes and $touch) {
$wikiText =~ s/&quot;/\"/g;
 
$wikiText =~ s/&amp;/\&/g;
#========================================================
# Update local Routefiles from Wiki if touch-Flag is set
if (length $wikiText > 1) {
 
print "Trying to update $routeOut\n";
&saveFileIfChangedOrNew ("$dir_txt/", "$routeFile.txt", encode $encoding, $wikiText, 0);
 
$mech->get("http://www.radreise-wiki.de/index.php?title=$routeURL&action=edit");
# External Call. Exit Code : 0 - No Change, 1 - KML-File Changed
 
my $result = system("perl makeKML.pl $routeFile");
my $website = $mech->content;
 
} else {
$website =~ /<textarea.*?>(.*)<\/textarea>/s;
 
die "URL is not existent: $routeURL\n";
my $wikiText = $1;
}
 
}
$wikiText =~ s/&lt;/</g;
$wikiText =~ s/&gt;/>/g;
my $newContent;
$wikiText =~ s/&quot;/\"/g;
$wikiText =~ s/&amp;/\&/g;
if ($modify) {
 
if (length $wikiText > 1) {
#=====================================================
 
# Modify Routefile and save it to different directory
&saveFileIfChangedOrNew ("$dir_txt/", "$routeFile.txt", encode $encoding, $wikiText, 0);
 
my $ucontent = "";
# External Call. Exit Code : 0 - No Change, 1 - KML-File Changed
open FILE, encode 'cp1252', "$dir_txt/$routeName\.txt" or die $!;
my $result = system("perl makeKML.pl $routeFile");
while (<FILE>) { $ucontent .= $_; }
 
close FILE;
if (!$result) {
my $content = decode $encoding, $ucontent;
print "  No changes in KML-File\n\n";
} else {
my $match_1 = "";
print "\n";
}
if ($content =~ /(Höhenmeter \(ab\) = [ 0-9\.]*\n)\}\}\n/) {
 
} else {
$match_1 = $1;
 
die "URL not found or Edit-Window is empty: >$routeURL<\n";
} else {
}
}
print "  Error: No Match in $routeName\n";
 
die;
my $newContent;
}
 
if ($modify) {
my $match_2 = "";
 
my $gegenrichtung = "Bild:Ohne Gegenrichtung.png";
#=====================================================
# Modify Routefile and save it to upload-directory
if ($content =~ /(\n\{\{[RetT]+our\|[^\}].*\}\}\n)/) {
 
my $ucontent = "";
$match_2 = $1;
open FILE, encode $encAnsi, "$dir_txt/$routeName\.txt" or die $!;
while (<FILE>) { $ucontent .= $_; }
if ($match_2 =~ /\n\{\{[RetT]+our\|([^\}].*)\}\}\n/) {
close FILE;
my $content = decode $encoding, $ucontent;
$gegenrichtung = $1;
 
my $match_1 = "";
} else {
 
if ($content =~ /(Höhenmeter \(ab\) = [ 0-9\.]*\n)\}\}\n/) {
print "  Error: No Match in $routeName\n";
die;
$match_1 = $1;
}
 
}
} else {
 
my $replace_1 = "$match_1\| Tour-/Retour-Link = $gegenrichtung\n";
print "  Error: No Match in $routeName\n";
$replace_1 =~ s/  / /;
die;
$replace_1 =~ s/Höhenmeter/Höhenmexer/;
}
 
if ($content =~ s/\Q$match_1/$replace_1/) {
my $match_2 = "";
my $gegenrichtung = "Bild:Ohne Gegenrichtung.png";
} else {
 
print "No Match\n";
if ($content =~ /(\n\{\{[RetT]+our\|[^\}].*\}\}\n)/) {
die;
}
$match_2 = $1;
 
$content =~ s/\Q$match_2//;
if ($match_2 =~ /\n\{\{[RetT]+our\|([^\}].*)\}\}\n/) {
 
$content =~ s/ \n/\n/g;
$gegenrichtung = $1;
$content =~ s/ \n/\n/g;
 
$content =~ s/ \n/\n/g;
} else {
$content =~ s/Höhenmexer/Höhenmeter/;
 
print "  Error: No Match in $routeName\n";
$newContent = $content;
die;
}
#print encode 'cp850', "  Saving $routeName\n";
}
 
open  FOUT, encode 'cp1252', "> $savePath/$routeName.txt" or die $!;
my $replace_1 = "$match_1\| Tour-/Retour-Link = $gegenrichtung\n";
print FOUT encode ($encoding, $newContent);
$replace_1 =~ s/  / /;
close FOUT;
$replace_1 =~ s/Höhenmeter/Höhenmexer/;
}
 
if ($content =~ s/\Q$match_1/$replace_1/) {
if ($upload) {
 
} else {
#==========================================
print "No Match\n";
# UPLOAD CHANGED TEXTFILES TO THE WIKI !!!
die;
}
print encode ('cp850', "  Uploading $routeName to $routeURL\n");
 
$content =~ s/\Q$match_2//;
$mech->get("http://www.radreise-wiki.de/$routeURL");
 
$content =~ s/ \n/\n/g;
$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );
$content =~ s/ \n/\n/g;
$content =~ s/ \n/\n/g;
$mech->field( 'wpTextbox1', $newContent);
$content =~ s/Höhenmexer/Höhenmeter/;
$mech->field( 'wpSummary' , "Test Wiki-Bot: Infobox Tour-/Retour-Link hinzugefügt" );
 
$mech->submit;
$newContent = $content;
}
 
}
#print encode $encOut, "  Saving $routeName\n";
 
if ($changesTxt) {
open  FOUT, encode $encAnsi, "> $savePath/$routeName.txt" or die $!;
exit(1);
print FOUT encode ($encoding, $newContent);
} else {
close FOUT;
exit(0);
}
}
 
if ($upload) {
#=======================================================
 
#=======================================================
#==========================================
# UPLOAD CHANGED TEXTFILES TO THE WIKI !!!
sub saveFileIfChangedOrNew {
 
print encode $encOut, "  Uploading $routeName to $routeURL\n";
(my $path, my $fileName, my $file, my $kmz) = @_;
 
$mech->get("http://www.radreise-wiki.de/$routeURL");
my $change = 0;
 
$mech->follow_link( url => "/index.php?title=$routeURL&action=edit" );
if (open(FILE, "< $path$fileName")) {
 
$mech->field( 'wpTextbox1', $newContent);
my $md5 = Digest::MD5->new;
$mech->field( 'wpSummary' , "Test Wiki-Bot: Infobox Tour-/Retour-Link hinzugefügt" );
while (<FILE>) {
$mech->submit;
$md5->add($_);
}
}
}
close(FILE);
 
if ($changesTxt) {
my $md5_old = $md5->hexdigest;
exit(1);
} else {
$md5 = Digest::MD5->new;
exit(0);
$md5->add($file);
}
my $md5_new = $md5->hexdigest;
</nowiki>
 
unless ($md5_old eq $md5_new) {
[[Kategorie: Verwaltungs-Software]]
$change = 1;
print encode 'cp850', "****************** Overwriting File $fileName ******************\n";
open  FT,"> $path$fileName";
print FT $file;
close FT;
if ($kmz) {
my $zip = Archive::Zip->new();
$zip->addFile("$path$fileName",$fileName);
$fileName =~ s/\.kml/\.kmz/;
unless ( $zip->writeToFileNamed("$path$fileName") == AZ_OK ) {
  die 'write error';
}
}
}
} else {
$change = 1;
print encode 'cp850', "****************** Creating new file $fileName ******************\n";
open  FT,"> $path$fileName";
print FT $file;
close FT;
if ($kmz) {
my $zip = Archive::Zip->new();
$zip->addFile("$path$fileName",$fileName);
$fileName =~ s/\.kml/\.kmz/;
unless ( $zip->writeToFileNamed("$path$fileName") == AZ_OK ) {
  die 'write error';
}
}
}
return $change;
}
</nowiki>

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);
}