|
14 | 14 | # Modules: My Default Set
|
15 | 15 | use strict;
|
16 | 16 | use warnings;
|
17 |
| -use 5.010; # say |
| 17 | +use 5.010; # say |
18 | 18 | # use Data::Dumper;
|
19 |
| -use utf8; # this script is written in UTF-8 |
| 19 | +use utf8; # this script is written in UTF-8 |
20 | 20 | binmode STDOUT, ':utf8'; # default encoding for linux print STDOUT
|
21 |
| -use autodie qw (open close); # Replace functions with ones that succeed or die: e.g. close |
| 21 | +use autodie qw (open close) |
| 22 | + ; # Replace functions with ones that succeed or die: e.g. close |
22 | 23 |
|
23 |
| -use lib ( '/var/www/virtual/entorb/perl5/lib/perl5' ); |
| 24 | +use lib ('/var/www/virtual/entorb/perl5/lib/perl5'); |
24 | 25 |
|
25 | 26 | # Modules: Perl Standard
|
26 |
| -use Storable; # read and write variables to filesystem |
27 |
| -use File::Basename; # for basename, dirname, fileparse |
| 27 | +use Storable; # read and write variables to filesystem |
| 28 | +use File::Basename; # for basename, dirname, fileparse |
28 | 29 | use File::Path qw(make_path);
|
29 | 30 | use Date::Parse;
|
30 | 31 | # use DateTime; # not working on uberspace, could not fix it, so tried POSIX instead
|
|
42 | 43 | use lib ('.');
|
43 | 44 | # use lib "C:\\Users\\menketrb\\Documents\\Hacken\\Perl\\Strava-Web"; # just for making Visual Studio Code happy
|
44 | 45 | # use lib "d:\\files\\Hacken\\Perl\\Strava-Web";
|
45 |
| -use TMsStrava qw( %o %s); # at entorb.net some modules require use local::lib!!! |
| 46 | +use TMsStrava qw( %o %s) |
| 47 | + ; # at entorb.net some modules require use local::lib!!! |
46 | 48 |
|
47 | 49 | TMsStrava::htmlPrintHeader( $cgi, 'Export activity calendar' );
|
48 | 50 | TMsStrava::initSessionVariables( $cgi->param("session") );
|
49 | 51 | TMsStrava::htmlPrintNavigation();
|
50 | 52 |
|
51 |
| - |
52 |
| - |
53 |
| - |
54 |
| - |
55 | 53 | # if not already done, fetchActivityList, 200 per page into dir activityList
|
56 | 54 | unless ( -f $s{'pathToActivityListHashDump'} ) {
|
57 |
| - die("E: activity cache missing"); |
| 55 | + die("E: activity cache missing"); |
58 | 56 | }
|
59 | 57 |
|
60 | 58 | TMsStrava::logIt("reading activity data from dmp file");
|
61 |
| -my $ref = retrieve( $s{'pathToActivityListHashDump'} ); # retrieve data from file (as ref) |
62 |
| -my @allActivityHashes = @{$ref}; # convert arrayref to array |
| 59 | +my $ref = retrieve( $s{'pathToActivityListHashDump'} ) |
| 60 | + ; # retrieve data from file (as ref) |
| 61 | +my @allActivityHashes = @{$ref}; # convert arrayref to array |
63 | 62 |
|
64 | 63 | my $pathToICS = "$s{'tmpDownloadFolder'}/ActivityList.ics";
|
65 | 64 |
|
66 | 65 | # Generate Excel only if not already done
|
67 | 66 | unless ( -f $pathToICS ) {
|
68 |
| -my $ics_header = |
69 |
| -"BEGIN:VCALENDAR |
| 67 | + my $ics_header = "BEGIN:VCALENDAR |
70 | 68 | CALSCALE:GREGORIAN
|
71 | 69 | VERSION:2.0
|
72 | 70 | X-WR-CALNAME:Strava Activity Export by entorb.net
|
73 | 71 | METHOD:PUBLISH
|
74 | 72 | ";
|
75 |
| -my $ics_footer = |
76 |
| -"END:VCALENDAR |
| 73 | + my $ics_footer = "END:VCALENDAR |
77 | 74 | ";
|
78 | 75 |
|
79 |
| -# V1: DateTime |
80 |
| -#my $date_str_now = DateTime->now()->iso8601().'Z'; |
81 |
| -#$date_str_now =~ s/[\-:]//g; |
82 |
| -# V2: POSIX |
83 |
| -# my $now = time(); |
84 |
| -my $date_str_now = strftime('%Y%m%dT%H%M%SZ', gmtime(time())); |
| 76 | + # V1: DateTime |
| 77 | + # my $date_str_now = DateTime->now()->iso8601().'Z'; |
| 78 | + # $date_str_now =~ s/[\-:]//g; |
| 79 | + # V2: POSIX |
| 80 | + # my $now = time(); |
| 81 | + my $date_str_now = strftime( '%Y%m%dT%H%M%SZ', gmtime( time() ) ); |
85 | 82 |
|
86 |
| -open my $fhOut, '>:encoding(UTF-8)', $pathToICS or die "ERROR: Can't write to file '$pathToICS': $!"; |
87 |
| -print { $fhOut } $ics_header; |
| 83 | + open my $fhOut, '>:encoding(UTF-8)', $pathToICS |
| 84 | + or die "ERROR: Can't write to file '$pathToICS': $!"; |
| 85 | + print {$fhOut} $ics_header; |
| 86 | + |
| 87 | + foreach my $activity (@allActivityHashes) { |
| 88 | + my %h = %{$activity}; # each $activity is a hashref |
88 | 89 |
|
89 |
| -foreach my $activity ( @allActivityHashes ) { |
90 |
| - my %h = %{ $activity }; # each $activity is a hashref |
91 |
| -# print %h; |
92 | 90 | foreach my $k ( sort keys %h ) {
|
93 |
| - # say "$k\t$h{$k}"; |
| 91 | + # say "$k\t$h{$k}"; |
94 | 92 | }
|
95 | 93 | # say $h{'id'};
|
96 | 94 | # say $h{'type'};
|
97 | 95 | # say $h{'name'};
|
98 | 96 | # say $h{'start_date'};
|
99 | 97 | # say $h{'elapsed_time'};
|
100 |
| - next if ($h{'elapsed_time'} < 5*60); |
101 |
| - my $ts = str2time($h{'start_date'}); # from Date::Parse |
102 |
| - # V1: DateTime |
103 |
| - # my $dt = DateTime->from_epoch( epoch => $ts + $h{'elapsed_time'}); |
104 |
| - # my $end_date = $dt->iso8601().'Z'; |
105 |
| - # $end_date =~ s/[\-:]//g; |
106 |
| - my $end_date = strftime('%Y%m%dT%H%M%SZ', gmtime($ts + $h{'elapsed_time'})); |
| 98 | + next if ( $h{'elapsed_time'} < 5 * 60 ); |
| 99 | + |
| 100 | + my $ts = str2time( $h{'start_date'} ); # from Date::Parse |
| 101 | + |
| 102 | + my $end_date |
| 103 | + = strftime( '%Y%m%dT%H%M%SZ', gmtime( $ts + $h{'elapsed_time'} ) ); |
107 | 104 | # say $end_date;
|
108 | 105 | my $start_date = $h{'start_date'};
|
109 | 106 | $start_date =~ s/[\-:]//g;
|
110 | 107 |
|
111 |
| - |
112 | 108 | my $location = "unknown";
|
113 |
| - if (exists $h{ 'x_nearest_city_start' }){ |
114 |
| - $location = $h{ 'x_nearest_city_start' } |
115 |
| - } else { |
116 |
| - my @L = (); |
117 |
| - push @L, $h{'location_city'} if $h{'location_city'}; |
118 |
| - push @L, $h{'location_state'} if $h{'location_state'}; |
119 |
| - push @L, $h{'location_country'} if $h{'location_country'}; |
120 |
| - if (@L) { |
121 |
| - $location = join (", ", @L); |
122 |
| - } |
| 109 | + if ( exists $h{'x_nearest_city_start'} ) { |
| 110 | + $location = $h{'x_nearest_city_start'}; |
123 | 111 | }
|
124 |
| - my $vevent = |
125 |
| -"BEGIN:VEVENT |
| 112 | + else { |
| 113 | + my @L = (); |
| 114 | + push @L, $h{'location_city'} if $h{'location_city'}; |
| 115 | + push @L, $h{'location_state'} if $h{'location_state'}; |
| 116 | + push @L, $h{'location_country'} if $h{'location_country'}; |
| 117 | + if (@L) { |
| 118 | + $location = join( ", ", @L ); |
| 119 | + } |
| 120 | + } ## end else [ if ( exists $h{'x_nearest_city_start'...})] |
| 121 | + my $vevent = "BEGIN:VEVENT |
126 | 122 | UID:strava-id-$h{'id'}
|
127 | 123 | TRANSP:OPAQUE
|
128 | 124 | DTSTART:$start_date
|
|
138 | 134 | END:VEVENT
|
139 | 135 | ";
|
140 | 136 | # FIXME: SEQUENCE is the revision number of the event and should be increase when creating a new one
|
141 |
| -print { $fhOut } $vevent; |
142 |
| -# last; |
143 |
| -} |
144 |
| -print { $fhOut } $ics_footer; |
145 |
| -close $fhOut; |
| 137 | + print {$fhOut} $vevent; |
| 138 | + # last; |
| 139 | + } ## end foreach my $activity (@allActivityHashes) |
| 140 | + print {$fhOut} $ics_footer; |
| 141 | + close $fhOut; |
146 | 142 |
|
147 |
| - |
148 |
| -} |
149 |
| -say "<p>This feature generates a calender of your cached activities in .ics format. This file can be imported into you calender application. I suggest using a new separate Strava calender than can easily be dropped completely if you do not like the result.</p>"; |
| 143 | +} ## end unless ( -f $pathToICS ) |
| 144 | +say |
| 145 | + "<p>This feature generates a calender of your cached activities in .ics format. This file can be imported into you calender application. I suggest using a new separate Strava calender than can easily be dropped completely if you do not like the result.</p>"; |
150 | 146 |
|
151 | 147 | say "Download: <a href=\"$pathToICS\">your activity calendar</a>";
|
152 | 148 |
|
153 |
| - |
154 |
| - |
155 | 149 | TMsStrava::htmlPrintFooter($cgi);
|
0 commit comments