source: extensions/pLoader/trunk/src/Uploader/PWG.pm @ 3472

Last change on this file since 3472 was 3472, checked in by ronosman, 15 years ago

Feature 993 added : set Piwigo tags. Only existing tags are supported.

  • Property svn:eol-style set to LF
File size: 2.3 KB
Line 
1# +-----------------------------------------------------------------------+
2# | pLoader - a Perl photo uploader for Piwigo                            |
3# +-----------------------------------------------------------------------+
4# | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
5# +-----------------------------------------------------------------------+
6# | This program is free software; you can redistribute it and/or modify  |
7# | it under the terms of the GNU General Public License as published by  |
8# | the Free Software Foundation                                          |
9# |                                                                       |
10# | This program is distributed in the hope that it will be useful, but   |
11# | WITHOUT ANY WARRANTY; without even the implied warranty of            |
12# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
13# | General Public License for more details.                              |
14# |                                                                       |
15# | You should have received a copy of the GNU General Public License     |
16# | along with this program; if not, write to the Free Software           |
17# | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
18# | USA.                                                                  |
19# +-----------------------------------------------------------------------+
20package Uploader::PWG;
21use strict;
22use Data::Dumper;
23use Uploader::PWG::WebServices;
24use Uploader::PWG::Categories;
25use base qw/
26           Uploader::Object
27           Class::Accessor::Fast
28           Uploader::PWG::WebServices
29           Uploader::PWG::Categories
30           /;
31
32__PACKAGE__->mk_accessors( 
33    qw/
34           site_url
35           site_username
36           site_password
37           http_username
38           http_password
39           branding
40           use_offline
41      / 
42);
43
44$|=1;
45
46
47sub Init {
48    my ( $self ) = @_;
49
50    # for web services   
51    $self->SUPER::Init();
52
53    if(!$self->use_offline){
54        $self->RefreshCategories;       
55        $self->RefreshTags;
56    }
57}
58
59sub RefreshCategories {
60    my ( $self ) = @_;
61
62    $self->categories(
63        $self->prepare_items(
64            $self->GetCategories
65        )
66    );
67}
68
69sub RefreshTags {
70    my ( $self ) = @_;
71
72    $self->tags(
73        $self->GetTags
74    );
75}
76
77
781;
Note: See TracBrowser for help on using the repository browser.