Browse Source

Merge pull request #327 from tracim/fix/273/radicale_default_config

Damien Accorsi 7 years ago
parent
commit
bb4143a456
2 changed files with 13 additions and 7 deletions
  1. 1 1
      tracim/development.ini.base
  2. 12 6
      tracim/tracim/config/app_cfg.py

+ 1 - 1
tracim/development.ini.base View File

215
 # radicale.server.host = 0.0.0.0
215
 # radicale.server.host = 0.0.0.0
216
 # radicale.server.port = 5232
216
 # radicale.server.port = 5232
217
 # radicale.server.ssl = false
217
 # radicale.server.ssl = false
218
-# radicale.server.filesystem.folder = ./radicale/collections
218
+radicale.server.filesystem.folder = %(here)s/radicale/collections/
219
 # radicale.server.allow_origin = *
219
 # radicale.server.allow_origin = *
220
 # radicale.server.realm_message = Tracim Calendar - Password Required
220
 # radicale.server.realm_message = Tracim Calendar - Password Required
221
 ## url can be extended like http://127.0.0.1:5232/calendar
221
 ## url can be extended like http://127.0.0.1:5232/calendar

+ 12 - 6
tracim/tracim/config/app_cfg.py View File

211
 
211
 
212
     def __init__(self):
212
     def __init__(self):
213
         """Parse configuration file."""
213
         """Parse configuration file."""
214
+        mandatory_msg = \
215
+            'ERROR: {} configuration is mandatory. Set it before continuing.'
214
         self.DEPOT_STORAGE_DIR = tg.config.get(
216
         self.DEPOT_STORAGE_DIR = tg.config.get(
215
             'depot_storage_dir',
217
             'depot_storage_dir',
216
         )
218
         )
217
         if not self.DEPOT_STORAGE_DIR:
219
         if not self.DEPOT_STORAGE_DIR:
218
             raise Exception(
220
             raise Exception(
219
-                'ERROR: depot_storage_dir configuration is mandatory. '
220
-                'Set it before continuing.'
221
+                mandatory_msg.format('depot_storage_dir')
221
             )
222
             )
222
         self.DEPOT_STORAGE_NAME = tg.config.get(
223
         self.DEPOT_STORAGE_NAME = tg.config.get(
223
             'depot_storage_name',
224
             'depot_storage_name',
224
         )
225
         )
225
         if not self.DEPOT_STORAGE_NAME:
226
         if not self.DEPOT_STORAGE_NAME:
226
             raise Exception(
227
             raise Exception(
227
-                'ERROR: depot_storage_name configuration is mandatory. '
228
-                'Set it before continuing.'
228
+                mandatory_msg.format('depot_storage_name')
229
             )
229
             )
230
         self.PREVIEW_CACHE_DIR = tg.config.get(
230
         self.PREVIEW_CACHE_DIR = tg.config.get(
231
             'preview_cache_dir',
231
             'preview_cache_dir',
382
         ))
382
         ))
383
         self.RADICALE_SERVER_FILE_SYSTEM_FOLDER = tg.config.get(
383
         self.RADICALE_SERVER_FILE_SYSTEM_FOLDER = tg.config.get(
384
             'radicale.server.filesystem.folder',
384
             'radicale.server.filesystem.folder',
385
-            './radicale/collections',
386
         )
385
         )
386
+        if not self.RADICALE_SERVER_FILE_SYSTEM_FOLDER:
387
+            raise Exception(
388
+                mandatory_msg.format('radicale.server.filesystem.folder')
389
+            )
387
         self.RADICALE_SERVER_ALLOW_ORIGIN = tg.config.get(
390
         self.RADICALE_SERVER_ALLOW_ORIGIN = tg.config.get(
388
             'radicale.server.allow_origin',
391
             'radicale.server.allow_origin',
389
             None,
392
             None,
404
 
407
 
405
         self.RADICALE_CLIENT_BASE_URL_HOST = tg.config.get(
408
         self.RADICALE_CLIENT_BASE_URL_HOST = tg.config.get(
406
             'radicale.client.base_url.host',
409
             'radicale.client.base_url.host',
407
-            None,
410
+            'http://{}:{}'.format(
411
+                self.RADICALE_SERVER_HOST,
412
+                self.RADICALE_SERVER_PORT,
413
+            ),
408
         )
414
         )
409
 
415
 
410
         self.RADICALE_CLIENT_BASE_URL_PREFIX = tg.config.get(
416
         self.RADICALE_CLIENT_BASE_URL_PREFIX = tg.config.get(