X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=Memories%2FPhoto.pm;h=6e09ae9cf6034a978899960fa2a638c8a24f272d;hb=9f88be0c76a71ec511c21a872ae02db66a015176;hp=771c3a6ba3f6e619ed704b1d9f783394426b161d;hpb=92f8c80c61d9b1f90c0cd25e79710fc8e7963f4c;p=memories.git diff --git a/Memories/Photo.pm b/Memories/Photo.pm index 771c3a6..6e09ae9 100644 --- a/Memories/Photo.pm +++ b/Memories/Photo.pm @@ -1,20 +1,47 @@ package Memories::Photo; +use Apache2::Upload; +use File::Basename; +use File::Copy; +use Archive::Any; +use File::Temp qw(tempdir tmpnam); +use File::Path qw(rmtree); +use File::Find; +use File::MMagic; use strict; use Carp qw(cluck confess); use base qw(Memories::DBI Maypole::Model::CDBI::Plain); +use constant INTERESTINGNESS_ALGORITHM => '((rating+3)/(rated+1))*(1+rated/hit_count)*(1+hit_count/(select max(hit_count) from photo))'; use Time::Piece; use Image::Seek; use constant PAGER_SYNTAX => "LimitXY"; -__PACKAGE__->columns(Essential => qw(id title uploader uploaded x y rating rated hit_count)); +__PACKAGE__->columns(Essential => qw(id title uploader uploaded x y rating rated hit_count format)); __PACKAGE__->untaint_columns(printable => [qw/title/]); __PACKAGE__->columns(TEMP => qw/exif_object/); -__PACKAGE__->set_sql(recent => q{ -SELECT __ESSENTIAL__ -FROM __TABLE__ -ORDER BY uploaded DESC -LIMIT 4 -}); +BEGIN { +my %order_by = ( + recent => "uploaded", + popular => "hit_count", + loved => "rating/(1+rated)", + interesting => INTERESTINGNESS_ALGORITHM, + random => "rand()" +); + +while (my($label, $how) = each %order_by) { + __PACKAGE__->set_sql($label => qq{ + SELECT __ESSENTIAL__ + FROM __TABLE__ + ORDER BY $how DESC + LIMIT 4 + }); + no strict; + *$label = sub { + my ($self, $r) = @_; + $self->view_paged_ordered($r, "$how desc"); + }; + __PACKAGE__->MODIFY_CODE_ATTRIBUTES(*{$label}{CODE}, "Exported"); # Hack +} +} __PACKAGE__->has_many(comments => "Memories::Comment"); __PACKAGE__->has_a(uploader => "Memories::User"); __PACKAGE__->has_a(uploaded => "Time::Piece", @@ -24,53 +51,125 @@ __PACKAGE__->has_a(uploaded => "Time::Piece", sub do_upload :Exported { my ($self, $r) = @_; - my %upload = $r->upload("photo"); + my $upload = $r->{ar}->upload("photo"); + # Check $self->type + my @photos = ($self->upload_file($r, $upload->tempname, $upload->filename)); + my @quarantined = grep { !$_->tags } @photos; + # Set it up to go again + if (@quarantined) { + $r->{session}{quarantined} = join ",", sort map { $_->id} @quarantined; + $r->objects(\@quarantined); + $r->template("quarantine"); + return; + } + $r->objects(\@photos); + if (@photos == 0) { $r->template("upload"); return } + if (@photos > 1) { $r->template("list") } + else { $r->template("view"); } + $r->message("Thanks for the upload!"); +} + +sub quarantine :Exported { + my ($self, $r) = @_; + my @quarantined = split /,/, $r->{session}{quarantined}; + my %q = map { $_ => 1 } @quarantined; + for (map /(\d+)/,grep /tags\d+/, keys %{$r->{params}}) { + my $tags = $r->{params}{"tags$_"}; + next unless $tags; + if (my $photo = $self->retrieve($_)) { + $photo->add_tags($tags); + delete $q{$_}; + } + } + $r->{session}{quarantined} = join ",", sort keys %q; + if (!$r->{session}{quarantined}) { + $r->template("list"); + $r->objects([ map { $self->retrieve($_) } @quarantined ]); + } else { + $r->objects([ map { $self->retrieve($_) } sort keys %q ]); + } +} + +sub upload_file { + my ($self, $r, $filename, $offered_name) = @_; + my $mm = File::MMagic->new; + my $res = $mm->checktype_filename($filename); + warn "$filename is a $res\n"; + if ($res =~ m{/x-zip} or $offered_name =~ /t(ar\.)?gz$/i) { + return $self->upload_archive($r, $filename); + } elsif ($offered_name =~ /\.(raw|nef|dng|cr2)/i) { + return $self->upload_raw($r, $filename, $offered_name); + } elsif ($res =~ m{image/jpeg}) { + return $self->upload_jpeg($r, $filename, $offered_name); + } else { + $r->message(basename($offered_name).": I can't handle $res files yet"); + return (); + } +} + +sub upload_archive { + my ($self, $r, $filename, $tags) = @_; + $r->{params}{title} = ""; # Kill that dead. + my $archive = Archive::Any->new($filename); + my $dir = tempdir(); + $archive->extract($dir); + my @results; + find({ wanted => sub { return unless -f $_; + push @results, $self->upload_file($r, $_, $_) }, + no_chdir => 1}, $dir); + rmtree($dir); + return @results; +} - # XXX Stop anonymous uploads! +sub upload_raw { + my ($self, $r, $filename, $offered_name) = @_; + my $jpg = tmpnam().".jpg"; + system("dcraw -c $filename | convert - $jpg"); + my $photo = $self->upload_jpeg($r, $jpg, $offered_name); + $filename =~ /\.(.*)$/; + my $format = $1; + $photo->format($format); + # Put the file in place + copy($filename, + Memories->config->{data_store}."/".$photo->id.".".$format); + return $photo; +} + +sub upload_jpeg { + my ($self, $r, $filename, $offered_name) = @_; my $photo = $self->create({ uploader => $r->user, uploaded => Time::Piece->new(), - title => $r->params->{title}, + title => ($r->{params}{title} || basename($offered_name)), hit_count => 0, rating => 0, - rated => 0, # Oh, the potential for divide by zero errors... + rated => 0, }); - - # Dump content - if (!open OUT, ">". $photo->path("file")) { - die "Can't write ".$photo->path("file")." because $!"; + if (!copy($filename, $photo->path("file"))) { + warn "Couldn't copy photo to ".$photo->path("file").": $!"; + $photo->delete(); die; } - # XXX Check it's a JPEG, etc. - # XXX Unzip ZIP file - print OUT $upload{content}; - close OUT; my ($x, $y) = dim(image_info($photo->path)); $photo->x($x); $photo->y($y); # Rotate? $photo->unrotate(); if (!$photo->title){ - $photo->title($photo->title_exif || $upload{filename}); + $photo->title($photo->title_exif || basename($filename)); } $photo->make_thumb; - $r->{params}{tags} ||= join " ", map { qq{"$_"} } $photo->tags_exif; - $photo->add_tags($r->{params}{tags}); + my $tags = $r->{params}{tags}.join " ", map { qq{"$_"} } $photo->tags_exif; + $photo->add_tags($tags); +warn "D"; $photo->add_to_imageseek_library; Memories->zap_cache(); +warn "E"; # Add system tags here my $tag = "date:".$photo->shot->ymd; $photo->add_to_system_tags({tag => Memories::SystemTag->find_or_create({name =>$tag}) }); - - # Set it up to go again - $r->objects([$photo]); - $r->template("view"); - $r->message("Thanks for the upload! ". - ($r->{params}{tags} ? "" - : "Don't forget to config->uri_base."photo/view/".$photo->id."?active=tagedit\">tag your photo" - ) - ); + return $photo; } sub approx_rating { @@ -114,22 +213,24 @@ sub exif :Exported {} sub comment :Exported {} sub tagedit :Exported {} sub similar :Exported {} +sub sized :Exported {} use Class::DBI::Plugin::Pager; use Class::DBI::Plugin::AbstractCount; -sub recent :Exported { - my ($self, $r) = @_; +sub view_paged_ordered { + my ($self, $r, $how) = @_; my $page = $r->params->{page} || 1; my $pager = $self->pager( per_page => Memories->config->{photos_per_page}, page => $page, syntax => PAGER_SYNTAX, - order_by => "uploaded desc" + order_by => $how ); $r->objects([$pager->retrieve_all ]); $r->{template_args}{pager} = $pager; $r->last_search; + $r->template("paged"); # Set the what using the action name } sub add_comment :Exported { @@ -141,10 +242,6 @@ sub add_comment :Exported { }); } -sub format { - "jpg" # For now -} - use Cache::MemoryCache; use Image::Info qw(dim image_info); use Image::ExifTool; @@ -209,7 +306,7 @@ my %banned_tags = map { $_ => 1 } sub _exif_info { my $exifTool = new Image::ExifTool; $exifTool->Options(Group0 => ['IPTC', 'EXIF', 'XMP', 'MakerNotes', 'Composite']); - my $info = $exifTool->ImageInfo(shift->path); + my $info = $exifTool->ImageInfo(shift->path(0,0,1)); my $hash = {}; foreach my $tag ($exifTool->GetFoundTags('Group0')) { next if $banned_tags{$tag}; @@ -240,20 +337,25 @@ sub sized_url { # Use this rather than ->path from TT my $resized = Memories->config->{sizes}->[$size]; if (!$resized) { cluck "Asked for crazy size $size"; return; } if ($resized eq "full") { return $self->path("url") } + warn "Looking for path ".$self->path(file => $resized); $self->scale($resized) unless -e $self->path( file => $resized ); return $self->path(url => $resized); } sub path { - my ($self, $is_url, $scale) = @_; + my ($self, $is_url, $scale, $raw) = @_; my $path = Memories->config->{$is_url eq "url" ? "data_store_external" : "data_store" }; if ($scale) { $path .= "$scale/" } # Make dir if it doesn't exist, save trouble later use File::Path; - if ($is_url ne "url") {mkpath($path);} - $path .= $self->id.".".$self->format; + if ($is_url ne "url" and ! -d $path) {mkpath($path) or die "Couldn't make path $path: $!";} + if ($scale or ($is_url ne "url" and !$raw)) { + $path .= $self->id.".jpg"; + } else { + $path .= $self->id.".".($self->format||"jpg"); + } return $path; } @@ -286,27 +388,32 @@ sub scale { } } -use Text::Balanced qw(extract_multiple extract_quotelike); sub edit_tags :Exported { my ($self, $r) = @_; my $photo = $r->objects->[0]; my %params = %{$r->params}; + my $exifTool = new Image::ExifTool; for (keys %params) { next unless /delete_(\d+)/; my $tagging = Memories::Tagging->retrieve($1) or next; next unless $tagging->photo->id == $photo->id; + $exifTool->SetNewValue(Keywords => $1, DelValue => 1); $tagging->delete; } + $exifTool->WriteInfo($photo->path); $photo->add_tags($params{newtags}); $r->template("view"); } sub add_tags { my ($photo, $tagstring) = @_; + my $exifTool = new Image::ExifTool; - for my $tag (map { s/^"|"$//g; $_} extract_multiple(lc $tagstring, [ \&extract_quotelike, qr/([^\s]+)/ ], undef,1)) { - $photo->add_to_tags({tag => Memories::Tag->find_or_create({name =>$tag}) }) + for my $tag (Tagtools->separate_tags($tagstring)) { + $photo->add_to_tags({tag => Memories::Tag->find_or_create({name =>$tag}) }); + $exifTool->SetNewValue(Keywords => $tag, AddValue => 1); } + $exifTool->WriteInfo($photo->path); } # Work out some common properties from a set of potential photo metadata