source: bookmarks/trunk/bkmk @ 86

Last change on this file since 86 was 86, checked in by peter, 9 years ago

issue #9: allow bkmk init to specifiy a YAML file to load after creating the database

  • Property svn:executable set to *
File size: 2.3 KB
RevLine 
[2]1#!/usr/bin/perl -w
2use strict;
3
[83]4use FindBin;
5use lib "$FindBin::RealBin/lib";
6
[2]7use YAML;
[15]8use Getopt::Long;
[2]9
[83]10use Bookmarks;
11
[15]12GetOptions(
13    'file|f=s' => \my $DBNAME,
[83]14    'title=s' => \my $TITLE,
[15]15);
[2]16
[83]17my $dbname = $DBNAME || $ENV{BKMK_DBNAME};
18die "Usage: $0 --file <dbname> <command>\n" unless $dbname;
[2]19
20my $bookmarks = Bookmarks->new({
[83]21    dbname => $dbname,
[2]22});
23
24my $command = shift;
25
26my %action_for = (
[47]27    init => sub {
[86]28        my $src_file = shift;
[47]29        $bookmarks->create_tables;
[86]30        load_bookmarks($src_file) if $src_file;
[47]31    },
[83]32   
[2]33    get => sub {
34        my $identifier = shift;
[85]35        my $bookmark = find_bookmark($identifier);
36        print $bookmark ? Dump($bookmark->TO_JSON) : "Not Found\n";
[2]37    },
[83]38   
[2]39    add => sub {
[83]40        my ($uri, @tags) = @_;
41        my $title = defined $TITLE ? $TITLE : fetch_title($uri);
[2]42        my $bookmark = $bookmarks->add({ uri => $uri, title => $title, tags => \@tags });
[85]43        print Dump($bookmark->TO_JSON);
[2]44    },
[83]45
[14]46    list => sub {
[83]47        my @tags = @_;
[85]48        my $resources = $bookmarks->get_bookmarks({
49            tags => \@tags
[20]50        });
[14]51        # TODO: list by tags, date, etc.
52        # TODO: coordinate this commandline script with the CGI app
[85]53        print Dump([ map { $_->TO_JSON } @{ $resources->results } ]);
[15]54    },
[83]55
[85]56    tag => sub {
57        my ($identifier, @tags) = @_;
58        my $bookmark = find_bookmark($identifier);
59        if ($bookmark) {
60            $bookmark->tags(\@tags);
61            $bookmarks->update($bookmark);
62            print Dump($bookmark->TO_JSON);
63        } else {
64            die "Not found\n";
65        }
66    },
67
68    #TODO: interactive editing of a bookmark
69
[83]70    # bulk loading
[15]71    load => sub {
72        my ($src_file) = @_;
[86]73        load_bookmarks($src_file);
[15]74    },
[2]75);
76
77$action_for{$command}->(@ARGV);
78
[85]79sub find_bookmark {
80    my $identifier = shift;
81    my $query = $identifier =~ /^\d+$/ ? { id => $identifier } : { uri => $identifier };
82    return $bookmarks->get_bookmark($query);
83}
84
[83]85sub fetch_title {
86    my $uri = shift;
87    require WWW::Mechanize;
88    my $mech = WWW::Mechanize->new;
89    $mech->get($uri);
90    return $mech->title || $uri;
91}
[86]92
93sub load_bookmarks {
94    my $src_file = shift;
95    my $src_bookmarks = YAML::LoadFile($src_file);
96    for my $bookmark (@{ $src_bookmarks }) {
97        $bookmarks->add($bookmark);
98    }
99}
Note: See TracBrowser for help on using the repository browser.