2019-08-06 03:10:21 +00:00
|
|
|
'''
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
Create required Onionr directories
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
'''
|
2019-07-20 06:02:30 +00:00
|
|
|
import os
|
2019-07-18 17:40:48 +00:00
|
|
|
from . import identifyhome
|
2019-09-23 19:48:35 +00:00
|
|
|
from onionrsetup import dbcreator
|
|
|
|
import filepaths
|
2019-07-18 17:40:48 +00:00
|
|
|
home = identifyhome.identify_home()
|
|
|
|
|
2019-07-20 06:02:30 +00:00
|
|
|
def create_dirs():
|
2019-09-14 06:29:31 +00:00
|
|
|
"""Creates onionr data-related directories in order of the hardcoded list below,
|
|
|
|
then trigger creation of DBs"""
|
2019-07-27 02:42:55 +00:00
|
|
|
gen_dirs = [home, filepaths.block_data_location, filepaths.contacts_location, filepaths.export_location]
|
|
|
|
for path in gen_dirs:
|
|
|
|
if not os.path.exists(path):
|
|
|
|
os.mkdir(path)
|
2019-07-18 17:40:48 +00:00
|
|
|
|
2019-07-20 06:02:30 +00:00
|
|
|
for db in dbcreator.create_funcs:
|
|
|
|
try:
|
|
|
|
db()
|
|
|
|
except FileExistsError:
|
|
|
|
pass
|