forked from domogik/domogik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup.py
executable file
·160 lines (129 loc) · 4.8 KB
/
backup.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
""" This file is part of B{Domogik} project (U{http://www.domogik.org}).
License
=======
B{Domogik} 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.
B{Domogik} 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 Domogik. If not, see U{http://www.gnu.org/licenses}.
Plugin purpose
==============
Backup script called from crontab
History
=======
Implements
==========
@author: Fritz <[email protected]>
@copyright: (C) 2007-2015 Domogik project
@license: GPL(v3)
@organization: Domogik
"""
import os
import traceback
import time
import tempfile
import errno
from domogik.common import sql_schema
from domogik.common import database
from domogik.common.configloader import Loader, CONFIG_FILE
from domogik.common.plugin import PACKAGES_DIR
from domogik.butler.brain import LEARN_FILE, STAR_FILE
from sqlalchemy import create_engine, MetaData, Table
from alembic.config import Config
from alembic import command
def title(msg):
""" Display a title to improve output reading
"""
print(u"=========================================================")
print(u"{0}".format(msg))
print(u"=========================================================")
def get_backup_dir():
### Read the configuration file
try:
cfg = Loader('backup')
config = cfg.load()
conf = dict(config[1])
return conf['folder']
except:
print(u"Error while reading the configuration file '{0}' : {1}".format(CONFIG_FILE, traceback.format_exc()))
return None
def get_packages_dir():
### Read the configuration file
try:
cfg = Loader('domogik')
config = cfg.load()
conf = dict(config[1])
return os.path.join(conf['libraries_path'], PACKAGES_DIR)
except:
print(u"Error while reading the configuration file '{0}' : {1}".format(CONFIG_FILE, traceback.format_exc()))
return None
def backup_some_files(files):
for fic in files:
src = fic['src']
dst = fic['dst']
cmd = "tar cvzfh {0}/{1} {2}".format(folder, dst, src)
print(cmd)
os.system(cmd)
def backup_database(folder):
title(u"Backup of the database")
now = time.strftime("%Y%m%d-%H%M")
db_backup_file = "{0}/domogik-database-{1}.sql.gz".format(folder, now)
_db = database.DbHelper(use_cache=False)
if not _db.is_db_type_mysql():
print("Can't backup your database, only mysql is supported (you have : {0})".format(_db.get_db_type()))
return
print("Backing up your database to {0}".format(db_backup_file))
mysqldump_cmd = ['mysqldump', '-u', _db.get_db_user()]
if _db.get_db_password():
mysqldump_cmd.extend(('-p{0}'.format(_db.get_db_password()), _db.get_db_name()))
else:
mysqldump_cmd.append(_db.get_db_name())
mysqldump_cmd.append("| gzip ")
mysqldump_cmd.append(">")
mysqldump_cmd.append(db_backup_file)
print(" ".join(mysqldump_cmd))
os.system(" ".join(mysqldump_cmd))
def backup_config(folder):
title(u"Backup of the configuration")
now = time.strftime("%Y%m%d-%H%M")
files = [{ 'src' : '/etc/domogik/',
'dst' : 'domogik-etc-{0}.tgz'.format(now)},
{ 'src' : '/etc/default/domogik*',
'dst' : 'domogik-default-{0}.tgz'.format(now)}]
backup_some_files(files)
def backup_butler_file(folder):
title(u"Backup of the butler generated files")
now = time.strftime("%Y%m%d-%H%M")
files = [{ 'src' : LEARN_FILE,
'dst' : 'domogik-butler-learn-file-{0}.tgz'.format(now)},
{ 'src' : STAR_FILE,
'dst' : 'domogik-butler-unknown_queries-file-{0}.tgz'.format(now)}]
backup_some_files(files)
def backup_packages(folder):
title(u"Backup of all the packages")
now = time.strftime("%Y%m%d-%H%M")
files = [{ 'src' : get_packages_dir(),
'dst' : 'domogik-all-packages-{0}.tgz'.format(now)}]
backup_some_files(files)
if __name__ == "__main__":
folder = get_backup_dir()
if folder != None:
try:
try:
os.mkdir(folder, 0755)
except OSError, e:
if e.errno != errno.EEXIST:
raise e
backup_database(folder)
backup_config(folder)
backup_butler_file(folder)
backup_packages(folder)
except:
print("Error while doing the backup : {0}".format(traceback.format_exc()))