2020-02-05 00:07:03 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
2019-08-06 03:10:21 +00:00
|
|
|
|
2020-02-05 00:07:03 +00:00
|
|
|
Create required Onionr directories
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
import stat
|
|
|
|
|
|
|
|
from . import identifyhome
|
|
|
|
import filepaths
|
|
|
|
"""
|
2019-08-06 03:10:21 +00:00
|
|
|
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/>.
|
2020-02-05 00:07:03 +00:00
|
|
|
"""
|
2019-07-18 17:40:48 +00:00
|
|
|
home = identifyhome.identify_home()
|
|
|
|
|
2020-02-01 00:23:48 +00:00
|
|
|
|
2019-07-20 06:02:30 +00:00
|
|
|
def create_dirs():
|
2020-02-01 00:23:48 +00:00
|
|
|
"""Create onionr data-related directories in
|
|
|
|
order of the hardcoded list below,
|
2019-09-14 06:29:31 +00:00
|
|
|
then trigger creation of DBs"""
|
2020-02-01 00:23:48 +00:00
|
|
|
gen_dirs = [home, filepaths.block_data_location,
|
2020-02-02 09:23:59 +00:00
|
|
|
filepaths.contacts_location, filepaths.export_location]
|
2019-07-27 02:42:55 +00:00
|
|
|
for path in gen_dirs:
|
|
|
|
if not os.path.exists(path):
|
2020-10-22 14:52:49 +00:00
|
|
|
os.makedirs(path)
|
2019-07-18 17:40:48 +00:00
|
|
|
|
2020-02-04 22:58:24 +00:00
|
|
|
os.chmod(home, stat.S_IRWXU)
|
|
|
|
|
2020-01-07 11:44:53 +00:00
|
|
|
from onionrsetup import dbcreator
|
|
|
|
|
2019-07-20 06:02:30 +00:00
|
|
|
for db in dbcreator.create_funcs:
|
|
|
|
try:
|
|
|
|
db()
|
|
|
|
except FileExistsError:
|
|
|
|
pass
|