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
|
#!/usr/bin/perl -w
#
#
# rhimport
#
# Copyright (C) 2009 Christian Pointner <equinox@helsinki.at>
#
# This file is part of rhimport.
#
# rhimport is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# rhimport is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with rhimport. If not, see <http://www.gnu.org/licenses/>.
#
use strict;
use Getopt::Long;
use lib '/usr/local/share/rhimport/';
use rhimport;
my $HELP = 0;
my $FILE = "";
my $DROPBOX = "";
my $LISTALLOWED = 0;
binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
binmode(STDERR, ":utf8");
GetOptions ("help!" => \$HELP,
"file=s" => \$FILE,
"dropbox=s" => \$DROPBOX,
"list-allowed!" => \$LISTALLOWED,
) or die();
if($HELP) {
print << "EOF";
usage: $0 --file <audio or playlist file> --dropbox <path to dropbox> --list-allowed
options:
-f | --file the media file or playlist to import
-d | --dropbox the path to the dropbox to use
-l | --list-allowed list allowed dropboxes and exit
EOF
exit 0;
}
my $user = `/usr/bin/id -un`;
$user =~ s/\n//;
my ($dbh, $errorstring) = rhimport::opendb();
if(!defined $dbh) {
print "$errorstring\n";
exit 1;
}
my @allowed_dbs = rhimport::get_dropboxes($dbh, $user);
if($LISTALLOWED) {
for my $href ( @allowed_dbs ) {
print "$href->{'NAME'} \t-> $href->{'PATH'}\n" unless $href->{'NAME'} =~ /^autoimport/;
}
rhimport::closedb($dbh);
exit 0;
}
my $cl_error_cb = sub {
my ($text) = @_;
print "\n$text .. cancel operation [Y/n]? ";
my $x = scalar(<STDIN>);
$x =~ /^n/i;
};
(-e "$FILE") or die "file '$FILE' not found\n";
print "will import $FILE, with user $user\n\n";
my $group = '';
my $to_cart = 0;
for my $href (@allowed_dbs) {
if($href->{'PATH'} eq $DROPBOX) {
$group = $href->{'GROUP'};
$to_cart = $href->{'TO_CART'};
last;
}
}
if($group eq '') {
print "Dropbox not found or not allowed\n";
exit 1
}
my $ret;
my $log;
$log = rhimport::clear_carts($dbh, $group, $to_cart);
my $import_log;
($ret, $import_log) = rhimport::import_single($FILE, $DROPBOX, $user, 0, $cl_error_cb);
$log .= $import_log;
rhimport::closedb($dbh);
if(!$ret) {
exit 1;
}
exit 0;
|