From 3f7d3d2183dcaa0ed76bad4a5ba59380a4932983 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 21 Mar 2013 18:08:43 +0000 Subject: added rhimport for mahlzeit diff --git a/Makefile b/Makefile index cb367cc..bd38a0c 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,7 @@ install-bin: $(INSTALL) -d $(DESTDIR)$(BINDIR) $(INSTALL) -m 755 $(EXECUTABLE) $(DESTDIR)$(BINDIR) $(INSTALL) -m 755 $(EXECUTABLE)-dn $(DESTDIR)$(BINDIR) + $(INSTALL) -m 755 $(EXECUTABLE)-mz $(DESTDIR)$(BINDIR) $(INSTALL) -m 755 $(EXECUTABLE)-rs $(DESTDIR)$(BINDIR) $(INSTALL) -m 755 $(EXECUTABLE)-ra $(DESTDIR)$(BINDIR) $(INSTALL) -m 755 $(EXECUTABLE)-sm $(DESTDIR)$(BINDIR) @@ -52,6 +53,7 @@ install-bin: $(INSTALL) -m 755 $(EXECUTABLE)-create-id $(DESTDIR)$(BINDIR) @sed s#/usr/local/share/rhimport/#$(SHAREDIR)/$(EXECUTABLE)/#g -i $(DESTDIR)$(BINDIR)/$(EXECUTABLE) @sed s#/usr/local/share/rhimport/#$(SHAREDIR)/$(EXECUTABLE)/#g -i $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-dn + @sed s#/usr/local/share/rhimport/#$(SHAREDIR)/$(EXECUTABLE)/#g -i $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-mz @sed s#/usr/local/share/rhimport/#$(SHAREDIR)/$(EXECUTABLE)/#g -i $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-rs @sed s#/usr/local/share/rhimport/#$(SHAREDIR)/$(EXECUTABLE)/#g -i $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-ra @sed s#/usr/local/share/rhimport/#$(SHAREDIR)/$(EXECUTABLE)/#g -i $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-sm @@ -71,6 +73,7 @@ remove: $(REMOVE_TARGETS) remove-bin: rm -f $(DESTDIR)$(BINDIR)/$(EXECUTABLE) rm -f $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-dn + rm -f $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-mz rm -f $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-rs rm -f $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-ra rm -f $(DESTDIR)$(BINDIR)/$(EXECUTABLE)-sm diff --git a/debian/control b/debian/control index 53e18c1..ca8efc8 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Homepage: http://www.helsinki.at/ Package: rhimport Architecture: all -Depends: ${misc:Depends}, adduser, perl, libdbd-mysql-perl, libgtk2-gladexml-perl, libdate-calc-perl, libxml-feed-perl +Depends: ${misc:Depends}, adduser, perl, libdbd-mysql-perl, libgtk2-gladexml-perl, libdate-calc-perl, libxml-feed-perl, libfile-slurp-perl, libfile-touch-perl Description: Radio Helsinki Import Tool rhimport is a small tool which can be used to import media files into the playout system namley Rivendell. diff --git a/rhimport-mz b/rhimport-mz new file mode 100755 index 0000000..224cfb4 --- /dev/null +++ b/rhimport-mz @@ -0,0 +1,216 @@ +#!/usr/bin/perl -w +# +# +# rhimport +# +# Copyright (C) 2009 Christian Pointner +# +# This file is part of rhimport. +# +# rhimport 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. +# +# rhimport 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 rhimport. If not, see . +# + +use strict; +use Switch; +use DBI; +use Date::Calc; +use Time::localtime; +use IO::Handle; +use IPC::Open3; +use File::Slurp; + +use lib '/usr/local/share/rhimport/'; +use rhimport; + +my $DBHOST = "airplay"; +my $DBUSER = "rivendell"; +my $DBPW = "lldriven"; +my $DB = "rivendell"; + +my @STATIC_FILES = ($ENV{'HOME'} . "/frontex", $ENV{'HOME'} . "/maribor" ); +my $ZF_NOTE_FILE = $ENV{'HOME'} . "/rhimport-zf.last_note"; +my $ZF_NEW_FILE = $ENV{'HOME'} . "/rhimport-zf.is_new"; +my $PV_ID = '320'; + +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" +} + +my $user = `/usr/bin/id -un`; +$user =~ s/\n//; + +my @today = Date::Calc::Today(); +my @next_day = Date::Calc::Add_Delta_Days(@today, 1); +my $dow = Date::Calc::Day_of_Week(@today); +if($dow == 5) { + @next_day = Date::Calc::Add_Delta_Days(@today, 3); +} + +print "today: " . Date::Calc::Date_to_Text(@today) . "\n"; +print "next day would be: " . Date::Calc::Date_to_Text(@next_day) . "\n"; +my @import_day = @next_day; +if(localtime->hour < 12) { + print "It's forenoon, assuming to import for today\n"; + @import_day = @today; +} +print "day of broadcast: " . Date::Calc::Date_to_Text(@import_day) . "\n"; + + +$dow = Date::Calc::Day_of_Week(@import_day); +my $group = ""; +switch($dow) { + case 1 { $group = "mahlzeitMo" } + case 2 { $group = "mahlzeitDi" } + case 3 { $group = "mahlzeitMi" } + case 4 { $group = "mahlzeitDo" } + case 5 { $group = "mahlzeitFr" } + else { print("invalid day of week?!\n"); exit 1; } +} + +my $dbh = DBI->connect("DBI:mysql:$DB:$DBHOST","$DBUSER","$DBPW") or die "Database Error: $DBI::errstr"; +my @allowed_dbs = rhimport::get_dropboxes($dbh, $user, $group); +if(scalar(@allowed_dbs) != 1) { + print "found no or more than one Dropboxes for this group?!\n"; + $dbh->disconnect(); + exit 1; +} +my $dropbox = $allowed_dbs[0]->{'PATH'}; + +unless(-e $ZF_NEW_FILE) { + print "zip-fm not imported yet - "; + if($#ARGV >= 0 && $ARGV[0] eq 'last') { + print "giving up, rebroadcasting last show"; + } else { + print "will retry later\n"; + exit 0, + } +} + + +sub read_first_line { + my ($file) = @_; + my @lines = read_file($file, binmode => ':utf8', err_mode => 'quiet', chomp => 1); + return "" unless ($lines[0]); + return $lines[0]; +}; + +sub get_note { + my ($file) = @_; + my @lines = read_file($file, binmode => ':utf8', err_mode => 'quiet'); + chomp($lines[0]); + $lines[0] = "

$lines[0]

\n"; + return "" unless ($lines[0]); + return join('',@lines); +}; + +sub find_next_file { + my ($dir, $current) = @_; + + my %files = (); + opendir(my $dh, $dir) or die $!; + while (my $file = readdir($dh)) { + next if ($file =~ m/^\./); + next if ($file =~ m/_notes$/); + $files{$file} = 1; + } + closedir($dh); + + my $num = scalar keys %files; + foreach my $file (sort keys %files) { + if($file gt $current) { + return $num, $file; + } + $num--; + } + + return 0, ""; +}; + +my $sum_title = "zip-fm (WH)"; +my $sum_text = get_note($ZF_NOTE_FILE); + +print "\nsearching local files:\n"; + +my @files = (); +my %next_files = (); +foreach my $dir (@STATIC_FILES) { + my $file = read_first_line("$dir/.current"); + if($file eq "") { + print " $dir: skipped !!! (no .current file or no more files)\n"; + next; + } + my ($remaining, $next_file) = find_next_file($dir, $file); + if($remaining >= 1) { + print " $dir: adding $file\n (next: $next_file, $remaining files remaining)\n"; + } else { + print " $dir: adding $file\n (this was the last file!!!!)\n"; + } + + $sum_title = "$sum_title, " . read_first_line("$dir/.sum_title"); + $sum_text = $sum_text . "
\n" . get_note("$dir/$file" . "_notes"); + foreach my $ext ("flac", "wav", "ogg", "mp3") { + push(@files, "$dir/.jingle.$ext") if(-e "$dir/.jingle.$ext"); + } + push(@files, "$dir/$file"); +} + +print "\nsummary:\n" . $sum_title . "\n\n" . $sum_text . "\n"; +#rhimport::pv_add_note($sum_title, $sum_text, $PV_ID, sprintf("%04d-%02d-%02d", $import_day[0], $import_day[1], $import_day[2]), "1"); +print "\n"; + + +print "will import " . join(", ", @files) . " to dropbox $dropbox\n"; + + +my $error_cb = sub { + my ($text) = @_; + + print "\n$text"; + return 0; +}; + +rhimport::check_key_file() or die "Import Key not found, use rhimport-create-id to create one\n"; + +my $ret; +my $log = rhimport::clear_carts($dbh, $group, 0); +my ($cart, $high_cart) = rhimport::get_cart_range($dbh, $group); +foreach my $file (@files) { + if($cart > $high_cart) { + print "not enough carts - will ignore remaining files!!!"; + last; + } + print " importing $file to cart $cart\n"; + my $import_log; + ($ret, $import_log) = rhimport::import_single($file, $dropbox, $user, 0, $error_cb); + $log .= $import_log; + last unless $ret; + + $cart++; +} + +$dbh->disconnect(); + +if(!$ret) { + print "\nImport Error:\n"; + print $log; + exit 1; +} + +unlink($ZF_NEW_FILE); + +exit 0; diff --git a/rhimport-zf b/rhimport-zf index 19d34df..008ebec 100755 --- a/rhimport-zf +++ b/rhimport-zf @@ -32,6 +32,7 @@ use File::Fetch; use IO::Handle; use IPC::Open3; use HTML::Entities; +use File::Touch; use lib '/usr/local/share/rhimport/'; use rhimport; @@ -43,6 +44,7 @@ my $DB = "rivendell"; my $STAT_FILE = $ENV{'HOME'} . "/rhimport-zf.stat"; my $NOTE_FILE = $ENV{'HOME'} . "/rhimport-zf.last_note"; +my $NEW_FILE = $ENV{'HOME'} . "/rhimport-zf.is_new"; my $RSS_URL = "http://freie-radios.net/portal/podcast.php?serie=53&rss"; my $PV_ID = '300'; @@ -180,5 +182,6 @@ unlink($STAT_FILE); open(my $fhs, '>', $STAT_FILE); print $fhs $out_file; close($fhs); +touch($NEW_FILE); exit 0; -- cgit v0.10.2