Changeset 46 in bookmarks for trunk/Bookmarks.pm


Ignore:
Timestamp:
06/03/13 17:57:19 (11 years ago)
Author:
peter
Message:
  • moved the update method from Bookmark to Bookmarks
  • added a utility helper method _update_tags that is called by add and update in the Bookmarks class
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Bookmarks.pm

    r28 r46  
    193193    } 
    194194 
     195    my $changed_tags = $self->_update_tags($uri, $bookmark->{tags}); 
     196 
     197    if ($bookmark_exists && $changed_tags) { 
     198        # update the mtime if the bookmark already existed but the tags were changed 
     199        my $sth_update = $self->dbh->prepare('update bookmarks set mtime = ? where uri = ?'); 
     200        $sth_update->execute($mtime, $uri); 
     201    } 
     202 
     203    # return the newly created or updated bookmark 
     204    return $self->get_bookmark({ uri => $uri }); 
     205} 
     206 
     207sub update { 
     208    my $self = shift; 
     209    my $bookmark = shift; 
     210 
     211    my $mtime = time; 
     212 
     213    my $changed_uri = 0; 
     214    my $sth_current = $self->dbh->prepare('select uri from bookmarks where id = ?'); 
     215    $sth_current->execute($bookmark->id); 
     216    my ($stored_uri) = $sth_current->fetchrow_array; 
     217 
     218    if ($stored_uri ne $bookmark->uri) { 
     219        # the URI has changed 
     220        my $sth_update_uri = $self->dbh->prepare('update resources set uri = ? where uri = ?'); 
     221        $sth_update_uri->execute($bookmark->uri, $stored_uri); 
     222        $changed_uri++; 
     223    } 
     224 
     225    # update the title 
     226    # TODO: only do this if the title has changed 
     227    # TODO: should we update mtime if the title changes? 
     228    my $sth_update = $self->dbh->prepare('update resources set title = ? where uri = ?'); 
     229    $sth_update->execute($bookmark->title, $bookmark->uri); 
     230 
     231    my $changed_tags = $self->_update_tags($bookmark->uri, $bookmark->tags); 
     232 
     233    if ($changed_uri or $changed_tags) { 
     234        # update the mtime if the bookmark already existed but the tags were changed 
     235        my $sth_update = $self->dbh->prepare('update bookmarks set mtime = ? where uri = ?'); 
     236        $sth_update->execute($mtime, $bookmark->uri); 
     237    } 
     238 
     239    # return the bookmark 
     240    return $bookmark; 
     241} 
     242 
     243sub _update_tags { 
     244    my $self = shift; 
     245    my ($uri, $tags) = @_; 
     246 
    195247    my $changed_tags = 0; 
    196     my %new_tags = map { $_ => 1 } @{ $bookmark->{tags} }; 
     248    my %new_tags = map { $_ => 1 } @{ $tags }; 
    197249    my $sth_delete_tag = $self->dbh->prepare('delete from tags where uri = ? and tag = ?'); 
    198250    my $sth_insert_tag = $self->dbh->prepare('insert into tags (uri, tag) values (?, ?)'); 
     
    214266    } 
    215267 
    216     if ($bookmark_exists && $changed_tags) { 
    217         # update the mtime if the bookmark already existed but the tags were changed 
    218         my $sth_update = $self->dbh->prepare('update bookmarks set mtime = ? where uri = ?'); 
    219         $sth_update->execute($mtime, $uri); 
    220     } 
    221  
    222     # return the newly created or updated bookmark 
    223     return $self->get_bookmark({ uri => $uri }); 
    224 } 
     268    # how many tags have changed? 
     269    return $changed_tags; 
     270} 
     271 
    225272 
    226273# module returns true 
Note: See TracChangeset for help on using the changeset viewer.