X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FApp%2FMusicExpo.pm;h=23489619410c1c031001ff98043f57724aaad897;hb=7ad441f0fdb3394b96f96be789da87fd0ff8f4e5;hp=1595f71cf4933a084bb073cecd562aaf2ff5e4d9;hpb=21cd9240d572994ade62bed83cabba9e0c53e4c1;p=app-musicexpo.git diff --git a/lib/App/MusicExpo.pm b/lib/App/MusicExpo.pm index 1595f71..2348961 100644 --- a/lib/App/MusicExpo.pm +++ b/lib/App/MusicExpo.pm @@ -1,13 +1,13 @@ -package App::MusicExpo 0.001; +package App::MusicExpo 0.002; use v5.14; +use strict; use warnings; use Audio::FLAC::Header qw//; -use HTML::Entities qw/encode_entities/; use HTML::Template::Compiled qw//; use Memoize qw/memoize/; use MP3::Tag qw//; -use URI::Escape qw/uri_escape/; +use Ogg::Vorbis::Header::PurePerl; use DB_File qw//; use File::Basename qw/fileparse/; @@ -17,28 +17,28 @@ use Storable qw/thaw freeze/; ################################################## +my $default_template; + our $prefix='/music/'; -our $cache='cache.db'; -our $caching=1; -our $template='index.tmpl'; +our $cache=''; +our $template=''; GetOptions ( "template=s" => \$template, "prefix=s" => \$prefix, "cache=s" => \$cache, - "caching!" => \$caching, ); sub fix{ utf8::decode($_[0]); - encode_entities($_[0]) + $_[0] } sub flacinfo{ my $file=$_[0]; my $flac=Audio::FLAC::Header->new($file); - $file = $prefix . uri_escape scalar fileparse $file; + $file = scalar fileparse $file; freeze +{ format => 'FLAC', @@ -49,14 +49,14 @@ sub flacinfo{ tracknumber => fix ($flac->tags('TRACKNUMBER') // '?'), tracktotal => fix ($flac->tags('TRACKTOTAL') // '?'), genre => fix ($flac->tags('GENRE') // '?'), - path => $file, + file => $file, } } sub mp3info{ my $file=$_[0]; my $mp3=MP3::Tag->new($file); - $file = $prefix . uri_escape scalar fileparse $file; + $file = scalar fileparse $file; freeze +{ format => 'MP3', @@ -67,7 +67,25 @@ sub mp3info{ tracknumber => fix ($mp3->track1 || '?'), tracktotal => fix ($mp3->track2 || '?'), genre => fix ($mp3->genre) || '?', - path => $file, + file => $file, + } +} + +sub vorbisinfo{ + my $file=$_[0]; + my $ogg=Ogg::Vorbis::Header::PurePerl->new($file); + $file = scalar fileparse $file; + + freeze +{ + format => 'Vorbis', + title => fix($ogg->comment('TITLE') || '?'), + artist => fix ($ogg->comment('artist') || '?'), + year => fix ($ogg->comment('DATE') || '?'), + album => fix ($ogg->comment('ALBUM') || '?'), + tracknumber => fix ($ogg->comment('TRACKNUMBER') || '?'), + tracktotal => fix ($ogg->comment('TRACKTOTAL') || '?'), + genre => fix ($ogg->comment('GENRE')) || '?', + file => $file, } } @@ -76,21 +94,54 @@ sub normalizer{ } sub run { - tie my %cache, 'DB_File', $cache, O_RDWR|O_CREAT, 0644 if $caching; - memoize 'flacinfo', NORMALIZER => \&normalizer, LIST_CACHE => 'MERGE', SCALAR_CACHE => [HASH => \%cache] if $caching; - memoize 'mp3info' , NORMALIZER => \&normalizer, LIST_CACHE => 'MERGE', SCALAR_CACHE => [HASH => \%cache] if $caching; + tie my %cache, 'DB_File', $cache, O_RDWR|O_CREAT, 0644 unless $cache eq ''; + memoize 'flacinfo', NORMALIZER => \&normalizer, LIST_CACHE => 'MERGE', SCALAR_CACHE => [HASH => \%cache] unless $cache eq ''; + memoize 'mp3info' , NORMALIZER => \&normalizer, LIST_CACHE => 'MERGE', SCALAR_CACHE => [HASH => \%cache] unless $cache eq ''; + memoize 'vorbisinfo' , NORMALIZER => \&normalizer, LIST_CACHE => 'MERGE', SCALAR_CACHE => [HASH => \%cache] unless $cache eq ''; - my @files; + my %files; for my $file (@ARGV) { - push @files, thaw flacinfo $file if $file =~ /.flac$/i; - push @files, thaw mp3info $file if $file =~ /.mp3$/i; + my $info; + $info = thaw flacinfo $file if $file =~ /.flac$/i; + $info = thaw mp3info $file if $file =~ /.mp3$/i; + $info = thaw vorbisinfo $file if $file =~ /.og(?:g|a)$/i; + next unless defined $info; + my $basename = fileparse $file, '.flac', '.mp3', '.ogg', '.oga'; + $files{$basename} //= []; + push $files{$basename}, $info; } - my $ht=HTML::Template::Compiled->new(filename => $template); - $ht->param(files=>[sort { $a->{title} cmp $b->{title} } @files]); + my $ht=HTML::Template::Compiled->new( + default_escape => 'HTML', + $template eq '' ? (scalarref => \$default_template) : (filename => $template), + ); + + my @files; + for (values %files) { + my @versions = @$_; + my %entry = (%{$versions[0]}, formats => []); + push $entry{formats}, {format => $_->{format}, file => $_->{file}} for @versions; + push @files, \%entry + } + + $ht->param(files=>[sort { $a->{title} cmp $b->{title} } @files], prefix => $prefix); print $ht->output; } +$default_template = <<'HTML'; + +Music + + + + + + +
TitleArtistAlbumGenreTrackYearType +
/ +
+HTML + 1; __END__ @@ -122,7 +173,7 @@ where the title is a download link. =item B<--template> I