From 933b820e0799e413ab680eba1753cec506108b1e Mon Sep 17 00:00:00 2001 From: plegall Date: Sat, 11 Oct 2008 20:37:54 +0000 Subject: feature 892 added: pwg.images.setInfo added so that once we have discovered the photo was already in the database (thanks to pwg.images.exist), we can only set the photo metadata. git-svn-id: http://piwigo.org/svn/branches/2.0@2722 68402e56-0260-453c-a942-63ccdbb3a9ee --- tools/piwigo_remote.pl | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/piwigo_remote.pl b/tools/piwigo_remote.pl index 3e3031c82..2a3876b87 100644 --- a/tools/piwigo_remote.pl +++ b/tools/piwigo_remote.pl @@ -18,7 +18,7 @@ our $ua = LWP::UserAgent->new; $ua->cookie_jar({}); my %conf; -$conf{base_url} = 'http://localhost/~pierrick/piwigo/trunk'; +$conf{base_url} = 'http://localhost/~pierrick/piwigo/2.0'; $conf{response_format} = 'json'; $conf{username} = 'pierrick'; $conf{password} = 'z0rglub'; @@ -192,6 +192,25 @@ if ($opt{action} eq 'pwg.images.exist') { # print Dumper($response); } +if ($opt{action} eq 'pwg.images.setInfo') { + $form = { + method => $opt{action}, + }; + + foreach my $key (keys %{ $opt{define} }) { + $form->{$key} = $opt{define}{$key}; + } + + my $response = $ua->post( + $conf{base_url}.'/ws.php?format=json', + $form + ); + + use Data::Dumper; + # print Dumper(from_json($response->content)->{result}); + print Dumper($response); +} + $query = pwg_ws_get_query( method => 'pwg.session.logout' ); -- cgit v1.2.3