summaryrefslogtreecommitdiffstats
path: root/videomv.pl
blob: 9c429799e77142d3f2b79320cf04aa4ef67bac1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#! /usr/bin/perl -w

# This program is free software. It comes without any warranty, to the
# extent permitted by applicable law. You can redistribute it and/or
# modify it under the terms of the Do What The Fuck You Want To Public
# License, Version 2, as published by Sam Hocevar.
# See http://sam.zoy.org/wtfpl/COPYING for more details.


$VERSION = "0.1, 08 August 2011";

use Getopt::Long qw(:config posix_default no_ignore_case gnu_compat
                            bundling auto_version auto_help);
use Pod::Usage;
use DBI;
use File::Basename;
use strict;

################################################################################

# This path has to be absolute!
my $video     = "/home/guilhem/video";

my $symlinks  = "MOVIES";       # Symlinks folder in $video
my $directors = "DIRECTORS";    # Directors folder in $video

# Database configuration
my $driver    = "mysql";
my $database  = "videodb";
my $hostname  = "127.0.0.1";
my $user      = "videodb";
my $port      = 3306;
my $password  = "videodb";
my $videodata = "videodb_videodata";

################################################################################

=head1 NAME

videomv.pl - TODO

=head1 SYNOPSIS

B<videomv.pl> [B<--sort>] I<path/to/oldfile> [I<.../>{I<MOVIES>,I<DIRECTORS/director/>}I</>[I<newfile>]]

video
  |- ...
  |- DIRECTORS
  |    |- director1/
  |    |- director2/
  |    `- ...
  `- MOVIES/


=head1 DESCRIPTION

Depending on whether I<path/to/> is I<.../MOVIES/>,
I<.../DIRECTORS/director/>, or something
else, one has one of the six behaviors below. For the sake of
readability the paths are absolute here, but relative paths are fine as
well.

=over 4

=item B<videomv.pl> [B<--sort>] I<.../MOVIES/oldfile> I<.../MOVIES/newfile>

I<oldfile> is supposed to be an existing symlink in I<.../MOVIES/>,
which targets to I<../DIRECTORS/director/oldfile>. If
I<oldfile>=I<newfile>, an error will be raised. Otherwise, the following
actions will be performed:

=over 4

=item * The filename in the database will be updated,

=item * the old target will be renamed to I<../DIRECTORS/director/newfile>,

=item * the old symlink will be deleted, and

=item * a new symlink I<.../MOVIES/newfile> -> I<../DIRECTORS/director/newfile>
will be created.

=back

If the B<--sort> flag is set, the new I<director> will be find on the
database instead of from the old target. 


=item B<videomv.pl> I<.../MOVIES/oldfile> I<.../DIRECTOR/newdirector/>[I<newfile>]

I<oldfile> is supposed to be an existing symlink in I<.../MOVIES/>,
which targets to I<../DIRECTORS/olddirector/oldfile>. If
I<olddirector/oldfile>=I<newdirector/newfile>
(or if I<olddirector>=I<newdirector> and I<newfile> was not given),
an error will be raised.
Otherwise, the following actions will be performed:

=over 4

=item * The filename in the database will be updated if I<oldfile><>I<newfile>,

=item * the old target will be moved to I<../DIRECTORS/newdirector/newfile>,
(or to I<../DIRECTORS/newdirector/oldfile> if I<newfile> was not given),

=item * the old symlink will be deleted, and

=item * a new symlink I<.../MOVIES/newfile> -> I<../DIRECTORS/newdirector/newfile>
(or -> I<../DIRECTORS/newdirector/oldfile> if I<newfile> was not given)
will be created.

=back


=item B<videomv.pl> [B<--sort>] I<.../DIRECTORS/director/oldfile> I<.../MOVIES/newfile>

A symlink I<.../MOVIES/oldfile> -> I<../DIRECTORS/director/oldfile> is
supposed to exist.
If I<oldfile>=I<newfile>, an error will be raised. Otherwise, the following
actions will be performed:

=over 4

=item * The filename in the database will be updated,

=item * the old target I<../DIRECTORS/director/oldfile> will be renamed to
I<../DIRECTORS/director/newfile>,

=item * the old symlink will be deleted, and

=item * a new symlink I<.../MOVIES/newfile> -> I<../DIRECTORS/director/newfile>
will be created.

=back


=item B<videomv.pl> I<.../DIRECTORS/olddirector/oldfile> I<.../DIRECTOR/newdirector/>[I<newfile>]

A symlink I<.../MOVIES/oldfile> -> I<../DIRECTORS/olddirector/oldfile> is
supposed to exist.  
If I<olddirector/oldfile>=I<newdirector/newfile>
(or if I<olddirector>=I<newdirector> and I<newfile> was not given),
an error will be raised.
Otherwise, the following actions will be performed:

=over 4

=item * The filename in the database will be updated if I<oldfile><>I<newfile>,

=item * the old target I<../DIRECTORS/olddirector/oldfile> will be moved to
I<../DIRECTORS/newdirector/newfile>,

=item * the old symlink will be deleted, and

=item * a new symlink I<.../MOVIES/newfile> -> I<../DIRECTORS/newdirector/newfile>
will be created.

=back


=item B<videomv.pl> B<--sort> I<path/to/oldfile> [I<.../MOVIES/newfile>]

Where I<path/to/> is neither of I<.../MOVIES/> nor I<.../DIRECTORS/*/>.
The director will looked for in the database, and and error will be
raised if no entry is found.
Otherwise, the following actions will be performed:

=over 4

=item * The filename in the database will be updated if I<oldfile><>I<newfile>,

=item * the old file will be moved to I<../DIRECTORS/director/newfile>
(or to I<../DIRECTORS/director/oldfile> if the second argument was not
given),

=item * a symlink I<.../MOVIES/newfile> -> I<../DIRECTORS/director/newfile>
(or I<.../MOVIES/oldfile> -> I<../DIRECTORS/director/oldfile> if the second
argument was not given) will be created.

=back

Note that the B<--sort> has to set for this to work; if not, an error
will be raised.


=item B<videomv.pl> I<path/to/oldfile> I<.../DIRECTOR/director/>[I<newfile>]

Where I<path/to/> is neither of I<.../MOVIES/> nor I<.../DIRECTORS/*/>.
The following actions will be performed:

=over 4

=item * The filename in the database will be updated if I<oldfile><>I<newfile>,

=item * the old file will be moved to I<../DIRECTORS/director/newfile>
(or to I<../DIRECTORS/director/oldfile> if I<newfile> was not given),

=item * a symlink I<.../MOVIES/newfile> -> I<../DIRECTORS/director/newfile>
(or I<.../MOVIES/oldfile> -> I<../DIRECTORS/director/oldfile> if the second
argument was not given) will be created.

=back

=back


=head1 OPTIONS

=over 8

=item B<--sort>

TODO

=back

=head1 EXIT STATUS

TODO

=head1 REQUIREMENTS

TODO

=head1 AUTHOR

Copyright 2011 Guilhem Moulin. See the source for copying conditions.

=cut

################################################################################

my $man;
my $quiet;


# Get options
GetOptions( "q|quiet" => sub { open LOG, '>', '/dev/null'
                               or die "Cannot open `/dev/null': $!" },
            "man"     => sub { pod2usage(-exitstatus => 0, -verbose => 2) }
          )
    or  pod2usage(2);
pod2usage(2)  if  ($#ARGV < 0 or $#ARGV > 1);
*LOG = *STDERR  unless  defined (fileno LOG);


# File to rename/sort, with its path
my $old_file = $ARGV[0];

# Basenames of files to rename to / sort
my ($old_filename, $new_filename) = map {basename($_)} @ARGV;


# Connect to database
my $dsn = "DBI:$driver:database=$database;host=$hostname;port=$port";
my $dbh = DBI->connect($dsn, $user, $password)
              or die "Can't connect do database";
$dbh->do( "set names utf8" ) or die;


# Lookup for the file in the videodb database
my $RES =
    $dbh->selectall_hashref ( "SELECT id,director,title FROM $videodata
                               WHERE filename = ?",
                              'id', undef, $old_filename
    )
        or die "Can't select: " . $dbh->errstr;

my $nRES = scalar (keys %$RES);

die "Error: no entry entry found in the database.\n" if $nRES == 0;
die "Error: $nRES > 1 entries found in the database.\n" if $nRES > 1;


# The *unique* ID of the movie found in the database
my $id = each %$RES;


print LOG "One entry found: " .
          $RES->{$id}->{director} .  " - " . $RES->{$id}->{title} . "\n";

if (defined $new_filename) {
#    print LOG "Update filename for " .
#              $RES->{$id}->{director} .  " - " .  $RES->{$id}->{title} .
#              ":\n";
#    print LOG "`" . $old_filename . "' -> `" . $new_filename, "'\n";

    &rename ($id, $old_filename, $new_filename);
}
else {
    # TODO: this might not be a valid dirname!
    my $dirname = $directors .'/'. $RES->{$id}->{director};
#    print LOG "Sort " .
#              $RES->{$id}->{director} . " - " .  $RES->{$id}->{title} . ":\n";
#    print LOG "`" . $old_filename . "' -> `" . $dirname . "'\n";

    &arrange ($old_file, $dirname);
}
    
# Disconnect
$dbh->disconnect();


################################################################################

# TODO: find the target from the database instead (option)
sub rename {
    my ($id, $old_filename, $new_filename) = @_;
    my $r = 0;
    
    print LOG "Updating database...    ";
    my $rv = $dbh->do ( "UPDATE $videodata SET filename = ? WHERE id = ?",
                        undef, $new_filename, $id
    );
    &ack (\$r, $rv);
   
    my $old_symlink = $video .'/'. $symlinks .'/'. $old_filename;
    my $new_symlink = $video .'/'. $symlinks .'/'. $new_filename;

    unless (-l $old_symlink) {
        print LOG "Warning: `$old_symlink' does not exist!\n";
        return 1;
    }

    chdir $video .'/'. $symlinks 
        or  die "Can't cd to `$video/$symlinks': $!";
    
    # Find the previous directory of the file TODO
    my $old_target = readlink $old_symlink;
    my $new_target = dirname($old_target) .'/'. $new_filename;
    
    print LOG "Renaming file...        ";
    &ack (\$r, rename $old_target, $new_target);

    print LOG "Creating new symlink... ";
    &ack (\$r, symlink $new_symlink, $new_target);
    
    print LOG "Deleting old symlink... ";
    &ack (\$r, unlink $old_symlink);
    
    return $r;
}


# TODO: if the second argument is a directory, don't update database but
# only symlinks (and mv the file in the dir)

sub arrange {
    my ($old_filename, $director) = @_;
    my $r;

    my $new_dirname = $video .'/'. $director;

    unless (-d $new_dirname) {
        print STDERR "Directory `$new_dirname' does not exist. ";
        until (-d $new_dirname) {
            print STDERR "Should I create it? (Y/n) ";
            my $a = lc <STDIN>;
            chomp $a;
            if ($a eq 'y' or $a eq '') {
                mkdir $new_dirname or die "Cannot mkdir `$new_dirname': $!";
            }
            elsif ($a eq 'n') {
                exit 0;
            }
        }
        
        # TODO
        print "\n";
    }

    print LOG "Moving file...      ";
    &ack (\$r, CORE::rename $old_filename, $new_dirname);

    print LOG "Creating symlink... ";
    &ack (\$r, symlink '../'. $director .'/'. basename($old_filename),
                       $video .'/'. $symlinks);

    return $r;
}



# Acknowledge the result of a test
sub ack {
    my ($r, $test) = @_;
    if ($test) {
        print LOG "OK\n";
    } else {
        print LOG "failed!: $!\n";
        $$r = 1;
    }
}