summaryrefslogtreecommitdiffstats
path: root/config.py
blob: 519a0b3de762854dd6618bab31fb95e578a70253 (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
import os
import ConfigParser

class _Configuration(object):
    def __init__(self):
        self.filename = os.path.join(os.path.join(os.getenv("HOME"), ".4grab"), "config.cfg")
        self.configparser = ConfigParser.RawConfigParser()
        if not os.path.exists(self.filename):
            self.create_new()
        else:
            self.configparser.read(self.filename)

    def create_new(self):
        self.configparser.add_section("settings")
        self.set_category(self.raw_input_with_default("w", "Please enter which category you would like to download from: "))
        
        self.configparser.add_section("locations")
        self.configparser.set("locations", "download", self.raw_input_with_default(os.path.join(os.getenv("HOME"), "Pictures"), "Please enter where you would like the downloads to go: "))

        self.save()

    def raw_input_with_default(self, default, prompt):
        inp = raw_input("%s (default=%s): " % (prompt, default))
        if inp == "":
            return default
        return inp

    def get_download_location(self):
        return self.configparser.get("locations", "download")

    def get_category(self):
        return self.configparser.get("settings", "category")

    def set_category(self, value):
        self.configparser.set("settings", "category", value)

    def option_exists(self, option):
        for section in self.configparser.sections():
            if self.configparser.has_option(section, option):
                return True
        return False

    def save(self):
        dirname = os.path.dirname(self.filename)
        if not os.path.exists(dirname):
            os.mkdir(dirname)
        configfile = open(self.filename, "w")
        self.configparser.write(configfile)

_configuration = _Configuration()
def Configuration(): return _configuration