summaryrefslogtreecommitdiff
path: root/rhautoimport-gd
blob: 89d84c3c880922f1c2b96e68af98d2ef5c8d3201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#!/usr/bin/perl -w
#
#
#  rhautoimport
#
#  Copyright (C) 2009-2017 Christian Pointner <equinox@helsinki.at>
#
#  This file is part of rhautoimport.
#
#  rhautoimport is free software: you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, either version 3 of the License, or
#  any later version.
#
#  rhautoimport is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with rhautoimport. If not, see <http://www.gnu.org/licenses/>.
#

use strict;
use Date::Calc;
use DateTime::Format::Strptime;
use XML::Feed;
use XML::Feed::Entry;
use XML::Feed::Content;
use XML::Feed::Enclosure;
use URI::URL;
use HTML::Entities;

use lib '/usr/local/share/rhautoimport/';
use rhautoimport;

my $STAT_FILE = $ENV{'HOME'} . "/rhautoimport-gd.stat";
my $RSS_URL = "https://cba.fro.at/series/globale-dialoge-women-on-air/feed";
$XML::Feed::MULTIPLE_ENCLOSURES=1;
my $RD_GROUP = "womenonair";
my $PV_ID = '210';
my $TITLE="Women on Air present: Globale Dialoge";
my $LAST_RUN = 0;
my $upload_delay_days = 1;   # files are usually delayed at least one day

binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
binmode(STDERR, ":utf8");

if($#ARGV >= 0 && $ARGV[0] eq 'last') {
  print "!!!This is the last attempt, there won't be a retry on error!!!\n";
  $LAST_RUN = 1;
}
rhautoimport::report_title_and_last($TITLE, $LAST_RUN);


my @allowed_dbs = rhautoimport::get_dropboxes($RD_GROUP);
if(!defined $allowed_dbs[0] && defined $allowed_dbs[1]) {
  print "$allowed_dbs[1]\n";
  exit 1;
}

my $idx = 0;
my $idx_reb = 1;
if(scalar(@allowed_dbs) != 2) {
  print "found more or less than 2 Dropboxes for this group?!\n";
  exit 1;
}
my $show_id = $allowed_dbs[$idx]->{'SHOWID'};
my $show_title = $allowed_dbs[$idx]->{'SHOWTITLE'};
my $show_id_reb = $allowed_dbs[$idx_reb]->{'SHOWID'};
my $show_title_reb = $allowed_dbs[$idx_reb]->{'SHOWTITLE'};


my @today = Date::Calc::Today();
my @tmp = Date::Calc::Standard_to_Business(@today);
my $dow = $tmp[2];
if($dow > 1 && $dow < 5) {
  print "please don't run this script Tuesday, Wednesday or Thursday!\n";
  exit 42;
}
$tmp[2] = 2;
my @broadcast_date = Date::Calc::Business_to_Standard(@tmp);
if($dow == 1) {
  @broadcast_date = Date::Calc::Add_Delta_Days(@broadcast_date, -7);
}
my @import_date = Date::Calc::Add_Delta_Days(@broadcast_date, 6);
my @import_date_reb = Date::Calc::Add_Delta_Days(@import_date, 3);
print "day of original broadcast: " . Date::Calc::Date_to_Text(@broadcast_date) . "\n";
print "day of Radio Helsinki broadcast: " . Date::Calc::Date_to_Text(@import_date) . "\n";
print "day of Radio Helsinki rebroadcast: " . Date::Calc::Date_to_Text(@import_date_reb) . "\n";

if(Date::Calc::Delta_Days(@broadcast_date, @today) <= $upload_delay_days) {
  print "File won't be available by now!\n";
  exit 42;
}

my $bd = sprintf("%04d-%02d-%02d", @broadcast_date);

print "looking for files with cba:broadcastDate $bd in RSS Feed (will be using cba:productionDate if cba:broadcastDate is not set)\n";
print " -> $RSS_URL\n";

my ($result, $feed) = rhautoimport::fetch_parse_rss_cba($RSS_URL);
unless ($result) {
  print "Error fetching feed: $feed\n";
  exit 1;
}

my $uri = "";
my $file = "";
my $sum_title = "";
my $sum_text = "";

my $i = 0;
for my $entry ($feed->entries) {
  $i++;
  next unless $entry->enclosure;

  my $entry_bdt = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'broadcastDate'};
  my $format_string = "%a, %d %b %Y %H:%M:%S";
  unless (defined $entry_bdt) {
    $entry_bdt = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'productionDate'};
    $format_string = "%a, %d %b %Y";
  }
  next unless (defined $entry_bdt);
  my $bdt = DateTime::Format::Strptime::strptime($format_string, $entry_bdt);

  next unless($broadcast_date[0] == $bdt->year && $broadcast_date[1] == $bdt->month && $broadcast_date[2] == $bdt->day);

  my $j = 0;
  for my $enclosure($entry->enclosure) {
    $j++;
    if($enclosure->type eq "audio/mpeg" || $enclosure->type eq "audio/ogg") {
      print "$i/$j: (" . $enclosure->type . ", " . $enclosure->length . ") "  . $enclosure->url . "\n";
      my $orig_uri = $enclosure->url;
      if($orig_uri =~ /^(.*)_cut(\.[^\.]+)$/) {
        $orig_uri = $1 . $2;
      }

      $uri = new URI::URL($orig_uri);
      my @path = $uri->path_components;
      $file = $path[-1];

      my $current_file = `cat $STAT_FILE`;
      if($current_file eq $file) {
        print "Already downloaded file of today\n";
        exit 42;
      }
      if(!rhautoimport::check_file_extension($file)) {
        print "\n\nThe extension of the matching file '". $file . "' seems to be wrong - manual import necessary!!!\n";
        print "\n\n --> https://import.helsinki.at/shows/$show_id\n";
        exit 1;
      }

      $sum_title = decode_entities($entry->title);
      $sum_text = decode_entities($entry->content->body);
      print "summary:\n" . $sum_title . "\n\n" . $sum_text . "\n";
      last;
    }
  }
  last if $uri ne "";
}
if($uri eq "") {
  print "No Entry found from $bd - ";
  if($LAST_RUN) {
    print "giving up, manual import necessary!!!\n";
    print "\n\n --> https://import.helsinki.at/shows/$show_id\n";
  } else {
    print "will retry later\n";
  }
  exit 1;
}

my $exit_code = 0;
print "\n\nwill import '$uri' to show $show_id, $show_title\n";
my ($ret, $log, $keptfile_uri) = rhautoimport::import_uri($show_id, $uri->as_string, "keep");
if($ret == 0) {
  print "\nImport Success:\n\n";
  print $log;
  print "\n";
  ($ret, $log) = rhautoimport::pv_add_note($sum_title, $sum_text, $PV_ID, sprintf("%04d-%02d-%02d", @import_date), "1");
  print $log;
  if($ret) {
    print "\nIgnoring failed note import - manual intervention necessary!\n";
    $exit_code = 23;
  }

  print "\n";

  if(!defined($keptfile_uri)) {
    print "rhimportd didn't provide a clue where to find the kept file... will import '$uri' to rebroadcast $show_id_reb, $show_title_reb\n";
    ($ret, $log) = rhautoimport::import_uri($show_id_reb, $uri->as_string);
  } else {
    print "re-using kept file '$keptfile_uri' to import rebroadcast $show_id_reb, $show_title_reb\n";
    ($ret, $log) = rhautoimport::import_uri($show_id_reb, $keptfile_uri, "delete");
  }

  if($ret == 0) {
    print "\nImport Success:\n\n";
    print $log;
    print "\n";
    ($ret, $log) = rhautoimport::pv_add_note($sum_title, $sum_text, $PV_ID, sprintf("%04d-%02d-%02d", @import_date_reb), "2");
    print $log;
    if($ret) {
      print "\nIgnoring failed note import - manual intervention necessary!\n";
      $exit_code = 23;
    }

  } else {
    print "\nImport Error:\n\n";
    print $log;
    print "\n\nNot adding PV note!!";
    print "\n\nSince the import for the regular broadcast went through we will not retry this import!!!";
    print "\nYou need to manually import the rebroadcast.";
    print "\n\n --> https://import.helsinki.at/shows/$show_id_reb\n";
    $exit_code = 23;
  }
} else {
  print "\nImport Error:\n\n";
  print $log;
  print "\n\nNot adding PV note!!";
  exit 1;
}

unlink($STAT_FILE);
open(my $fhs, '>', $STAT_FILE);
print $fhs "$file";
close($fhs);

exit $exit_code;