source: extras/pLoader/trunk/src/Uploader/PWG/Categories.pm @ 3159

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

I18n support.

  • Property svn:eol-style set to LF
File size: 3.2 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::Categories;
21use strict;
22use Data::Dumper;
23use Wx::Locale qw/:default/;
24use base qw/
25           Uploader::Object
26           Class::Accessor::Fast
27           /;
28
29# create a list of tree items
30sub prepare_items {
31    my ( $self, $categories ) = @_;
32
33
34    my $records = {};   
35
36    # lookup by id
37    # every node is a parent
38    map {
39        $records->{$_->{id}} = _record( $_ );
40    }
41    @$categories;
42
43    # find the parent
44    map {
45        my $child = $records->{$_};
46        my $parentid = _parentid($child);
47        if(defined $parentid){
48            _addchild( 
49                $records->{$parentid}, 
50                $child
51            );
52            delete $records->{$_};     
53        }
54    }
55    sort { $b <=> $a }
56    keys %$records;
57
58    return [
59        [
60            gettext("Categories"),
61            undef,
62            -1,
63            0,
64            -1,
65           
66        ],
67        sort { $a->[6] <=> $b->[6] } values %$records,
68    ];
69}
70
71sub _parentid {
72    my ( $record ) = @_;
73   
74    $record->[5];
75}
76
77
78sub _addchild {
79    my ( $record, $child ) = @_;
80   
81    $record->[1] ||= [];
82   
83    my $children = $record->[1];
84   
85    push @$children, $child;
86   
87    # sort by rank     
88    @$children = sort { $a->[6] <=> $b->[6] } @$children;
89}
90
91sub _parent_rank {
92   my ( $category ) = @_;
93
94   my @rank = split /\./, $category->{global_rank} ;
95   my @ucats = split /,/, $category->{uppercats} ;
96
97   my $parent;
98   if( 1 < scalar @ucats ){
99        $parent = $ucats[scalar @rank - 2 ];
100   }
101   my $rank = $rank[scalar @rank - 1 ];
102   
103   return ($parent, $rank);
104}
105
106
107
108sub _record {
109    my ( $category ) = @_;
110
111    my ( $parent, $rank ) = _parent_rank($category);
112    return [
113        $category->{name},
114        undef,
115        $category,
116        1,
117        -1,
118        $parent,
119        $rank,
120    ];   
121}
122
1231;
Note: See TracBrowser for help on using the repository browser.