75c8169d2e7b8f7de8914643a0e94c74de53ce0b
[rarslave2.git] / PAR2Set / ZIP.py
1 #!/usr/bin/env python
2 # vim: set ts=4 sts=4 sw=4 textwidth=80:
3
4 """
5 Holds the ZIP class.
6
7 This module works with regular zip file sets.
8
9 It will detect sets like the following:
10 X.par2
11 X.vol0+1.par2
12 ...
13
14 Y.zip
15 ...
16
17 Where the PAR2 files protect the Y.zip file(s). Note that Y can be equal to
18 X, but is not required to be.
19 """
20
21 __author__    = "Ira W. Snyder (devel@irasnyder.com)"
22 __copyright__ = "Copyright (c) 2006-2008 Ira W. Snyder (devel@irasnyder.com)"
23 __license__   = "GNU GPL v2 (or, at your option, any later version)"
24
25 #    ZIP.py -- detect and work with zip sets
26 #
27 #    Copyright (C) 2006,2007  Ira W. Snyder (devel@irasnyder.com)
28 #
29 #    This program is free software; you can redistribute it and/or modify
30 #    it under the terms of the GNU General Public License as published by
31 #    the Free Software Foundation; either version 2 of the License, or
32 #    (at your option) any later version.
33 #
34 #    This program is distributed in the hope that it will be useful,
35 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
36 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37 #    GNU General Public License for more details.
38 #
39 #    You should have received a copy of the GNU General Public License
40 #    along with this program; if not, write to the Free Software
41 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
42
43 from PAR2Set import Base, utils
44
45 class ZIP(Base):
46
47     ############################################################################
48
49     def detect(self):
50
51         regex = r'^.*\.zip$'
52
53         if utils.hasAMatch(regex, self.allFiles):
54             return
55
56         raise TypeError
57
58     ############################################################################
59
60     def extract(self):
61
62         regex = r'^.*\.zip$'
63         files = utils.findMatches(regex, self.allFiles)
64
65         for f in files:
66             utils.runCommand(['unzip', f], todir)
67
68     ############################################################################
69