summaryrefslogtreecommitdiffstats
path: root/sorter.py
blob: 482e343a3b641510534964f27b8d9bd18445a5ed (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
######################################################################
# Copyright 2009, 2010 ryuslash
#
# This file is part of 4grab.
#
# 4grab 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
# (at your option) any later version.
#
# 4grab 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 4grab.  If not, see <http://www.gnu.org/licenses/>.
######################################################################

import config
import Image
import shutil
import os

def dummy_option_creator(value1, value2): pass
config._optioncreator = dummy_option_creator

class Sorter:

    def __init__(self):
        self.conf = config.Configuration()
        self.resolutions = self.conf.get_resolutions()
    
    def act(self, filename):
        download_base = self.conf.get_download_location()
        
        if self.check_filename(filename):
            image = None
            try:
                image = Image.open(os.path.join(download_base,
                                            filename))
            except IOError:
                print "Cannot read image file %s, might be broken" \
                    % filename

            if not image == None and self.archive_check(filename):
                for resolution in self.resolutions:
                    resolution = resolution.split('x')
                    foldername = "%s-%s" % (resolution[0],
                                            resolution[1])
                    folderpath = os.path.join(download_base,
                                              foldername)
                    
                    if str(image.size[0]) == resolution[0] and \
                            str(image.size[1]) == resolution[1]:
                        if not os.path.exists(folderpath):
                            os.makedirs(folderpath)
                            #print "creating", folderpath
                            
                        self.copy(filename, folderpath)
                        break

                    self.archive(filename)
            self.remove(filename)

    def copy(self, filename, destpath):
        download_base = self.conf.get_download_location()
        source = os.path.join(download_base,
                              os.path.basename(filename))
        dest = os.path.join(destpath,
                            os.path.basename(filename))
        if source != dest:
            shutil.copy(source, dest)
        else:
            print "\nHow can this even happen?! Copying", source, "to", dest
        #print "\nParameters are", filename, "and", destpath

    def archive(self, filename):
        download_base = self.conf.get_download_location()
        location = self.conf.get_archive_location()
        if not os.path.exists(location):
            os.makedirs(location)

        dest = os.path.join(location, filename)
        f = open(dest, "w")
        file.close(f)
            

    def archive_check(self, filename):
        archive_path = self.conf.get_archive_location()
        fullname = os.path.join(archive_path, filename)
        return os.path.exists(fullname)

    def check_filename(self, filename):
        ext = os.path.splitext(filename)[1]
        return ext == ".jpg" or \
            ext == ".png" or \
            ext == ".gif"

    def remove(self, filename):
        download_base = self.conf.get_download_location()
        source = os.path.join(download_base, filename)
        os.remove(source)
                                          
if __name__ == "__main__":
    conf = config.Configuration()
    download_base = conf.get_download_location()
    sorter = Sorter()
    for item in os.listdir(download_base):
        sorter.act(item)