/[socialtext-import]/tamtam/tamtam2socialtext.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /tamtam/tamtam2socialtext.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 17 by dpavlin, Wed Dec 12 18:46:04 2007 UTC revision 26 by dpavlin, Fri Dec 14 23:46:57 2007 UTC
# Line 10  use Socialtext::Resting; Line 10  use Socialtext::Resting;
10  use Encode;  use Encode;
11  use HTTP::Date;  use HTTP::Date;
12  use POSIX qw/strftime/;  use POSIX qw/strftime/;
13    use File::Slurp;
14    use File::MMagic::XS;
15    use Getopt::Long;
16  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
17    
18  my $debug = 1;  my $debug = 0;
19  my $max = 999;  my $max = 999;
20    my $attachments = 0;
21    
22    GetOptions(
23            'debug+' => \$debug,
24            'max=i' => \$max,
25            'attachments' => \$attachments,
26    );
27    
28  my $page;  my $page;
29  my $page_date;  my $page_date;
30    
31  my @page_names;  my @page_names;
32    
33    print "Importing $max pages", $attachments ? " with attachments" : "", "...\n";
34    
35  find({  find({
36          wanted => sub {          wanted => sub {
37                  my $path = $File::Find::name;                  my $path = $File::Find::name;
38                  return unless -f $path;                  return unless -f $path;
39    
40                  warn "# $path\n";                  warn "+ $path\n";
41                  my $ref = XMLin( $path ) || die "can't open $path: $!";                  my $ref = XMLin( $path,
42                            KeyAttr => {
43                                    'attachment' => '+name',
44                                    'meta' => 'name',
45                            },
46                            ForceArray => [ 'attachment', 'meta', 'widget' ],
47                    ) || die "can't open $path: $!";
48    
49                    warn "## $path = ",dump( $ref ) if $debug;
50    
51                  my $name = $ref->{name} || die "no name in $path";                  my $name = $ref->{name} || die "no name in $path";
52    
# Line 38  find({ Line 58  find({
58                          return;                          return;
59                  }                  }
60    
61                  my $w = $ref->{widgets}->{widget};                  my $data;
62    
63                  my $data =                  foreach my $w ( @{ $ref->{widgets}->{widget} } ) {
                         defined( $w->{data} )           ? $w->{data} :  
                         defined( $w->{Body}->{date} )   ? $w->{Body}->{date} :  
                         die "no data in $path ",dump( $ref );  
64    
65                  # empty data is returned like empty hash. yack.                          warn "## w = ",dump( $w ) if $debug;
66                  $data = "\n" if ref($data) eq 'HASH' and ! keys %$data;  
67                            $data .= "\n----\n" if $data;
68                            $data .= $w->{data} || die "no data?";
69                    }
70    
71                    my $attachments;
72    
73                    if ( my $a = $ref->{attachment} ) {
74                            foreach my $name ( keys %$a ) {
75                                    my $full_path = $path;
76                                    $full_path =~ s,pages/,attachments/,;
77                                    $full_path .= '.' . $name;
78                                    die "$full_path doesn't exist" unless -e $full_path;
79                                    push @$attachments, {
80                                            full_path => $full_path,
81                                            name => ( $name || $a->{$name}->{desc} || 'noname' ),
82                                    };
83                            }
84                    }
85    
86                  $page->{ $name } = {                  $page->{ $name } = {
87                          content => convert_markup( $data ),                          content => convert_markup( $data ),
88                            original => $data,
89                          date => convert_date( $date ),                          date => convert_date( $date ),
90                            attachments => $attachments,
91                  };                  };
92    
                 # strip path from page name  
93                  $name =~ s,^.+/([^/]+)$,$1,;                  $name =~ s,^.+/([^/]+)$,$1,;
94                  push @page_names, $name;                  push @page_names, $name;
95    
                 warn "## $path = ",dump( $ref ) if $debug;  
96          },          },
97            no_chdir=>1,
98  }, shift @ARGV || '.');  }, shift @ARGV || '.');
99    
100  my @pages = ( keys %$page );  my @pages = ( keys %$page );
# Line 71  my $Rester = Socialtext::Resting->new( Line 107  my $Rester = Socialtext::Resting->new(
107          username => 'tamtam',          username => 'tamtam',
108          password => 'import',          password => 'import',
109          server   => 'http://saturn.ffzg.hr/',          server   => 'http://saturn.ffzg.hr/',
110            workspace => 'razmjenavjestina',
111  );  );
 $Rester->workspace('razmjenavjestina');  
112  $Rester->put_workspacetag('TamTam');  $Rester->put_workspacetag('TamTam');
113    
114  sub convert_date {  sub convert_date {
# Line 98  sub surround { Line 134  sub surround {
134    
135  sub pre {  sub pre {
136          my $text = shift;          my $text = shift;
137          $text =~ s/^{{{//;          $text =~ s/^{{{\s*//s;
138          $text =~ s/}}}$//;          $text =~ s/\s*}}}$//s;
139          return '.pre' . $text . '.pre';          return "\n.pre\n" . $text . "\n.pre\n";
140  }  }
141    
142  sub convert_markup {  sub convert_markup {
# Line 126  sub convert_markup { Line 162  sub convert_markup {
162          $body =~ s,(\S+)----,$1\n----,gs;          $body =~ s,(\S+)----,$1\n----,gs;
163          $body =~ s,----(\S+),----\n$1,gs;          $body =~ s,----(\S+),----\n$1,gs;
164    
165            # attachments
166            $body =~ s,\[attachment:([^\]]+)(gif|png|jpg|jpeg)\],{image: $1$2},gis;
167            $body =~ s,\[attachment:([^\]]+)\],{file: $1},gs;
168    
169          return $body;          return $body;
170  }  }
171    
172  my $count = 0;  my $count = 0;
173    
174    my $m = File::MMagic::XS->new;
175    
176  foreach my $name ( keys %$page ) {  foreach my $name ( keys %$page ) {
177          last if $count++ == $max;          last if $count++ == $max;
178    
# Line 156  foreach my $name ( keys %$page ) { Line 198  foreach my $name ( keys %$page ) {
198          $body =~ s,``,,gs;          $body =~ s,``,,gs;
199    
200          $body .= qq{          $body .= qq{
201    
202  ----  ----
203    
204  Original sa http://www.razmjenavjestina.org/$full_name zadnja promjena {date: $date}  "original"<http://www.razmjenavjestina.org/$full_name> {date: $date}
205  };  };
206    
207          Encode::_utf8_off( $body );          Encode::_utf8_off( $body );
208    
209          $Rester->put_page( $name, {          print "$name $date\n";
210                  content => $body,  
211                  date => $date,          # original markup
212          });          $Rester->put_page( $name, { content => $p->{original}, date => $date });
213          print "+ $name $date\n";  
214          foreach ( @tags ) {          foreach ( @tags ) {
215                  $Rester->put_pagetag( $name, $_ );                  $Rester->put_pagetag( $name, $_, { date => $date } );
216                  print "+ $name [$_]\n";                  print "+ tag $_\n";
217          }          }
218    
219            if ( $attachments ) {
220                    foreach my $a ( @{ $p->{attachments} } ) {
221                            my $type = $m->get_mime( $a->{full_path} );
222                            my $content = read_file( $a->{full_path} );
223                            print "+ attachment ", $a->{name}," $type ", length($content), " bytes\n";
224                            $Rester->post_attachment($name, $a->{name}, $content, $type );
225                    }
226            }
227    
228            # converted page
229            $Rester->put_page( $name, { content => $body, date => $date });
230    
231  }  }
232    

Legend:
Removed from v.17  
changed lines
  Added in v.26

  ViewVC Help
Powered by ViewVC 1.1.26