forked from mmmaly/chcemvediet
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
654 lines (574 loc) · 29.2 KB
/
setup.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
# vim: expandtab
# -*- coding: utf-8 -*-
import os
import re
import sys
import subprocess
import string
import random
import json
import getpass
import textwrap
import unicodedata
INFO = u'\033[93m'
SHELL = u'\033[92m'
ERROR = u'\033[91m'
PROMPT = u'\033[96m'
RESET = u'\033[0m'
def squeeze(s):
return u' '.join(s.split())
def slugify(s):
if type(s) is str:
s = unicode(s, u'utf-8')
s = unicodedata.normalize('NFKD', s).encode('ascii', 'ignore')
s = re.sub(r'\W+', '-', s)
s = s.lower().strip('-')
return s
def call(msg, args, cwd=None):
if cwd:
msg += u' (in {})'.format(cwd)
cwd = os.path.abspath(os.path.join(os.path.dirname(__file__), cwd))
print(u'{}\n{}\n{}'.format(INFO, msg, RESET))
print(u'{}$ {}\n{}'.format(SHELL, u' '.join(args), RESET))
return subprocess.check_call(args, cwd=cwd)
class JsonFile(object):
def __init__(self, inputfile, outputfile=None):
self.inputfile = inputfile
self.outputfile = outputfile or inputfile
with open(inputfile) as json_file:
self.data = json.load(json_file)
def __enter__(self):
return self.data
def __exit__(self, type, value, traceback):
if type is None:
with open(self.outputfile, u'w') as json_file:
json.dump(self.data, json_file, indent=2)
class Configure(object):
def __init__(self, filename=u'setup.json'):
self.filename = filename
self.configured = {}
try:
with open(filename) as json_file:
self.data = json.load(json_file)
except IOError:
self.data = {}
def __enter__(self):
return self
def __exit__(self, type, value, traceback):
if type is None:
with open(self.filename, u'w') as json_file:
json.dump(self.data, json_file, indent=2, sort_keys=True)
def get(self, key):
assert self.configured[key] == True
return self.data[key]
def auto(self, key, default):
self.configured[key] = True
return self.data.setdefault(key, default)
def increment(self, key, default=1):
self.configured[key] = True
try:
self.data[key] += 1
except KeyError:
self.data[key] = default
return self.data[key]
def input(self, key, prompt, default=u'', required=False):
configured = self.data.get(key, default)
prompt = u'\n{} [{}]: '.format(prompt, configured)
while True:
inputed = unicode(raw_input(PROMPT + prompt + RESET)) or configured
if required and not inputed:
print(ERROR + u'\nError: The value is required.' + RESET)
continue
break
self.configured[key] = True
self.data[key] = inputed
return inputed
def input_password(self, key, prompt, hasher=None, required=False):
configured = self.data.get(key, u'')
prompt = u'\n{} [{}]: '.format(prompt, u'*****' if configured else u'')
while True:
inputed = getpass.getpass(PROMPT + prompt + RESET)
if required and not inputed and not configured:
print(ERROR + u'\nError: The value is required.' + RESET)
continue
break
if not hasher:
hasher = lambda s: s
hashed = hasher(inputed) if inputed else configured
self.configured[key] = True
self.data[key] = hashed
return hashed
def input_yes_no(self, key, prompt, default=u''):
configured = self.data.get(key, default)
prompt = u'\n{} Y/N [{}]: '.format(prompt, configured)
while True:
inputed = unicode(raw_input(PROMPT + prompt + RESET)) or configured
if not inputed:
print(ERROR + u'\nError: The value is required.' + RESET)
continue
value = inputed.upper()
if value not in [u'Y', u'N']:
print(ERROR + u'\nError: Enter Y or N.' + RESET)
continue
break
self.configured[key] = True
self.data[key] = value
return value
def input_choice(self, key, prompt, choices, default=u''):
configured = self.data.get(key, default)
configured_choice = u''
print(INFO + u'\n{}:'.format(prompt) + RESET)
for idx, (value, label) in enumerate(choices):
print(INFO + u' {}) {}'.format(idx+1, label) + RESET)
if value == configured:
configured_choice = format(idx+1)
prompt = u'\n{} [{}]: '.format(prompt, configured_choice)
while True:
inputed = unicode(raw_input(PROMPT + prompt + RESET)) or configured_choice
if not inputed:
print(ERROR + u'\nError: The value is required.' + RESET)
continue
try:
value, label = choices[int(inputed)-1]
except (ValueError, IndexError):
print(ERROR + u'\nError: Invalid choice.' + RESET)
continue
break
self.configured[key] = True
self.data[key] = value
return value
class Settings(object):
def __init__(self, filename=u'chcemvediet/settings/configured.py'):
self.filename = filename
self.lines = []
self.comment(u'This file was autogenerated by `setup.py`. Do NOT edit it.')
def __enter__(self):
return self
def __exit__(self, type, value, traceback):
if type is None:
with open(self.filename, u'w') as settings_file:
settings_file.write(u'\n'.join(self.lines) + u'\n')
def comment(self, text):
for line in text.split(u'\n'):
self.lines.append(u'# {}'.format(line))
def include(self, filaname):
self.lines.append(u'execfile(os.path.join(SETTINGS_PATH, {}))'.format(
unicode(repr(filaname), u'utf-8')))
def setting(self, name, value):
self.lines.append(u'{} = {}'.format(name, unicode(repr(value), u'utf-8')))
def generate_secret_key(length, chars):
sysrandom = random.SystemRandom()
return u''.join(sysrandom.choice(chars) for i in range(length))
def configure_server_mode(configure, settings):
print(INFO + textwrap.dedent(u"""
Select server mode. Local development mode with no email infrastructure and
online development mode with no email infrastructure do not send any emails at
all. They just store them in the database. You can use admin interface to see
emails sent from the application and to manually mock replies to them. Local
development mode with dummy email infrastructure does not send real emails, it
mocks local SMPT/IMAP servers, so you can use any local SMTP/IMAP client to read
emails sent by the application and send your replies back to the application.
Online development mode with working email infrastructure and dummy obligee
email addresses sends real emails using Mandrill service, however, obligee email
addresses are replaced with dummies, so you won't send any unsolicited emails to
them.""") + RESET)
server_mode = configure.input_choice(u'server_mode', u'Server mode', choices=(
(u'local_with_no_mail',
u'Local development mode with no email infrastructure.'),
(u'local_with_local_mail',
u'Local development mode with dummy email infrastructure.'),
(u'dev_with_no_mail',
u'Online development mode with no email infrastructure.'),
(u'dev_with_dummy_obligee_mail', squeeze(u"""
Online development mode with working email infrastructure and dummy obligee email
addresses.""")),
(u'dev_without_debug', squeeze(u"""
Online development mode with debug mode disabled and no email infrastructure.
Enabling email infrastructure with debug mode disabled would require secure
connection.""")),
(u'production_with_no_mail', squeeze(u"""
Production mode with no email infrastructure. Usefull for testing on production
server just before deploying. WARNING: This mode uses real obligee email
addresses.""")),
(u'production',
u'Production mode.'),
))
includes = {
u'local_with_no_mail': [u'server_local.py', u'mail_nomail.py'],
u'local_with_local_mail': [u'server_local.py', u'mail_dummymail.py'],
u'dev_with_no_mail': [u'server_dev.py', u'mail_nomail.py'],
u'dev_with_dummy_obligee_mail': [u'server_dev.py', u'mail_mandrill.py'],
u'dev_without_debug': [u'server_dev_no_debug.py', u'mail_nomail.py'],
u'production_with_no_mail': [u'server_prod.py', u'mail_nomail.py'],
u'production': [u'server_prod.py', u'mail_mandrill.py'],
}[server_mode]
for include in includes:
settings.include(include)
def configure_mock(configure, settings, package, config_key, setting_name):
print(INFO + textwrap.dedent(u"""
The application uses {} package. You can install it by yourself or use
included mocked version.""".format(package)) + RESET)
mock = configure.input_yes_no(config_key, u'Mock {}?'.format(package), default=u'N')
mock = True if mock == u'Y' else False
settings.setting(setting_name, mock)
def configure_mocks(configure, settings):
configure_mock(configure, settings, u'libreoffice', u'mock_libreoffice', u'MOCK_LIBREOFFICE')
configure_mock(configure, settings, u'imagemagic', u'mock_imagemagic', u'MOCK_IMAGEMAGIC')
configure_mock(configure, settings, u'abbyyocr11', u'mock_ocr', u'MOCK_OCR')
def install_requirements(configure):
server_mode = configure.get(u'server_mode')
enable_unittests = configure.input_yes_no(u'enable_unittests',
u'Install requirements for unittesting?', default=u'N')
requirements = {
u'local_with_no_mail': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/local.txt',
],
u'local_with_local_mail': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/local.txt',
u'-r', u'requirements/local_mail.txt',
],
u'dev_with_no_mail': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/online.txt',
],
u'dev_with_dummy_obligee_mail': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/online.txt',
],
u'dev_without_debug': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/online.txt',
],
u'production_with_no_mail': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/online.txt',
],
u'production': [
u'-r', u'requirements/base.txt',
u'-r', u'requirements/online.txt',
],
}[server_mode]
requirements += {
u'Y': [u'-r', u'requirements/tests.txt'],
u'N': [],
}[enable_unittests]
call(u'Installing requirements for the selected server mode:',
[u'env/bin/pip', u'install'] + requirements);
def download_fontello(configure):
call(u'Downloading Fontello:', [u'env/bin/python', u'fontello/fontello.py'])
def configure_secret_key(configure, settings):
secret_key = configure.auto(u'secret_key',
generate_secret_key(100, string.digits + string.letters + string.punctuation))
settings.setting(u'SECRET_KEY', secret_key)
def configure_domain_and_emails(configure, settings):
server_domain = configure.input(u'server_domain',
u'Server domain (with www and/or port number if used, eg. localhost:8000)',
default=u'www.chcemvediet.sk', required=True)
base_domain = re.sub(r'^(?:www[.])?([^:]*)(?:[:]\d+)?$', r'\1', server_domain)
settings.setting(u'ALLOWED_HOSTS', [u'.' + base_domain])
print(INFO + textwrap.dedent(u"""
Set admin e-mail. It will be used for lowlevel error reporting and
administration e-mails.""") + RESET)
admin_email = configure.input(u'admin_email', u'Admin e-mail',
default=u'admin@{}'.format(base_domain), required=True)
settings.setting(u'SERVER_EMAIL', admin_email)
settings.setting(u'ADMINS[len(ADMINS):]', [(u'Admin', admin_email)])
print(INFO + textwrap.dedent(u"""
Set support e-mail. It will be used for user support requests.""") + RESET)
support_email = configure.input(u'support_email', u'Support e-mail',
default=u'info@{}'.format(base_domain), required=True)
settings.setting(u'SUPPORT_EMAIL', support_email)
print(INFO + textwrap.dedent(u"""
Set inforequest unique e-mail template. It will be used to generate unique from
e-mail addresses used by inforequests. The unique e-mail template must contain
'{token}' as a placeholder to distinguish individual inforequests. For instance
'{token}@mail.example.com' may be expanded to 'lama@mail.example.com'.""") + RESET)
inforequest_unique_email = configure.input(u'inforequest_unique_email',
u'Inforequest unique e-mail', default=u'{{token}}@mail.{}'.format(base_domain),
required=True)
settings.setting(u'INFOREQUEST_UNIQUE_EMAIL', inforequest_unique_email)
print(INFO + textwrap.dedent(u"""
Set default from address. It will be used as the from e-mail addresses for all
other e-mails.""") + RESET)
default_from_email = configure.input(u'default_from_email', u'Default from e-mail',
default=support_email, required=True)
settings.setting(u'DEFAULT_FROM_EMAIL', default_from_email)
# Production mode uses real obligee emails.
server_mode = configure.get(u'server_mode')
if server_mode not in [u'production_with_no_mail', u'production']:
print(INFO + textwrap.dedent(u"""
To prevent unsolicited emails to obligees while testing we replace their
addresses with dummies. Use '{name}' as a placeholder to distinguish individual
obligees. For instance 'mail@{name}.example.com' may be expanded to
'mail@martika-hnusta.example.com'."""))
obligee_dummy_mail = configure.input(u'obligee_dummy_mail', u'Obligee dummy e-mail',
required=True)
settings.setting(u'OBLIGEE_DUMMY_MAIL', obligee_dummy_mail)
def configure_devbar(configure, settings):
server_mode = configure.get(u'server_mode')
if server_mode in [u'dev_with_no_mail', u'dev_without_debug']:
devbar_message = squeeze(u"""
<strong>Warning:</strong> This is a development server. No emails are sent
anywhere. To view what would be sent, use <a href="/admin/mail/message/">admin
interface</a>.
""")
elif server_mode in [u'dev_with_dummy_obligee_mail']:
obligee_dummy_mail = configure.get(u'obligee_dummy_mail')
devbar_message = squeeze(u"""
<strong>Warning:</strong> This is a development server. All obligee email addresses
are replaced with dummies: {}.
""").format(obligee_dummy_mail)
elif server_mode in [u'production_with_no_mail']:
devbar_message = squeeze(u"""
<strong>Warning:</strong> This is a testing server. No emails are sent anywhere,
however, real obligee email addresses are used.
""")
else:
devbar_message = u''
settings.setting(u'DEVBAR_MESSAGE', devbar_message)
def configure_database(configure, settings):
server_mode = configure.get(u'server_mode')
if server_mode in [u'dev_with_no_mail', u'dev_with_dummy_obligee_mail', u'dev_without_debug',
u'production_with_no_mail', u'production']:
print(INFO + textwrap.dedent(u"""
Set MySQL database name, user and password.""") + RESET)
db_name = configure.input(u'db_name', u'Database name', required=True)
db_user = configure.input(u'db_user', u'Database user name', required=True)
db_password = configure.input_password(u'db_password', u'Database user password',
required=True)
settings.setting(u'DATABASES[u"default"][u"NAME"]', db_name)
settings.setting(u'DATABASES[u"default"][u"USER"]', db_user)
settings.setting(u'DATABASES[u"default"][u"PASSWORD"]', db_password)
def configure_cache(configure, settings):
default_prefix = slugify(configure.get(u'server_domain'))
cache_prefix = configure.input(u'cache_prefix', u'Unique cache key prefix',
default=default_prefix, required=True)
cache_version = configure.increment(u'cache_version')
settings.setting(u'CACHES[u"default"][u"KEY_PREFIX"]', cache_prefix)
settings.setting(u'CACHES[u"default"][u"VERSION"]', cache_version)
def configure_mandrill(configure, settings):
server_mode = configure.get(u'server_mode')
server_domain = configure.get(u'server_domain')
if server_mode in [u'dev_with_dummy_obligee_mail', u'production']:
print(INFO + textwrap.dedent(u"""
Madrill is a transactional mail service we use to send emails. To setup it, you
need to have a webhook URL Mandrill server can access. If you are running your
server behing a firewall or NAT, you need to setup a tunelling reverse proxy to
your localhost. See https://ngrok.com/ for instance. Please enter your webhook
URL prefix. If using ngrok, your prefix should look like
"https://<yoursubdomain>.ngrok.com/". If using a public server, the prefix
should be "https://<yourdomain>/".""") + RESET)
mandrill_webhook_https = configure.input_yes_no(u'mandrill_webhook_https',
u'Use "https" for Mandrill Webhooks?', default=u'Y')
mandrill_webhook_prefix = configure.input(u'mandrill_webhook_prefix',
u'Mandrill Webhook Prefix', default=u'{}://{}/'.format(
u'https' if mandrill_webhook_https == u'Y' else u'http', server_domain),
required=True)
mandrill_webhook_secret = configure.auto(u'mandrill_webhook_secret',
generate_secret_key(32, string.digits + string.letters))
mandrill_webhook_url = u'{}/mandrill/webhook/?secret={}'.format(
mandrill_webhook_prefix.rstrip(u'/'), mandrill_webhook_secret)
mandrill_api_key = configure.input(u'mandrill_api_key', u'Mandrill API key', required=True)
print(INFO + textwrap.dedent(u"""
After you finish this configuration and run your server, you can open Mandrill
webhook settings and create a webhook with the following URL:
{}
It is not possible to create the webhook before you run your server, because
Mandrill checks if the given URL works. After you create your webhooks, run this
configuration once again and enter all their keys as given by Mandrill. If you
are entering multiple webhook keys, separate them with space. Leave the key
empty if you have not created the webhook yet."""
.format(mandrill_webhook_url)) + RESET)
mandrill_webhook_keys = configure.input(u'mandrill_webhook_keys', u'Mandrill webhook keys')
settings.setting(u'MANDRILL_WEBHOOK_SECRET', mandrill_webhook_secret)
settings.setting(u'MANDRILL_WEBHOOK_URL', mandrill_webhook_url)
settings.setting(u'MANDRILL_API_KEY', mandrill_api_key)
settings.setting(u'MANDRILL_WEBHOOK_KEYS', mandrill_webhook_keys.split())
def configure_search(configure, settings):
print(INFO + textwrap.dedent(u"""
Google Custom Search is a platform we use to feature information about published
Inforequests, Obligees and other content in www.chcemvediet.sk searches.""") + RESET)
search_api_key = configure.input(u'search_api_key', u'Google Custom Search API key')
settings.setting(u'SEARCH_API_KEY', search_api_key)
def configure_recaptcha(configure, settings):
print(INFO + textwrap.dedent(u"""
ReCaptcha is a free service from Google that we use to protect sign up and login forms
from spam and abuse.""") + RESET)
recaptcha_public_key = configure.input(u'recaptcha_public_key', u'reCaptcha public key')
settings.setting(u'RECAPTCHA_PUBLIC_KEY', recaptcha_public_key)
recaptcha_private_key = configure.input(u'recaptcha_private_key', u'reCaptcha private key')
settings.setting(u'RECAPTCHA_PRIVATE_KEY', recaptcha_private_key)
def load_fixtures(configure):
res = []
res.append(u'fixtures/sites_site.json')
res.append(u'fixtures/auth_user.json')
res.append(u'fixtures/socialaccount_socialapp.json')
return res
def create_or_sync_database(configure):
from django.db.utils import DatabaseError
from django.contrib.auth.models import User
# Create/synchronize DB. We assume that DB is already created iff it contains User model.
try:
User.objects.count()
except DatabaseError:
call(u'Create DB:', [u'env/bin/python', u'manage.py', u'migrate'])
call(u'Load DB fixtures:',
[u'env/bin/python', u'manage.py', u'loaddata'] + load_fixtures(configure))
call(u'Load datasheets:',
[u'env/bin/python', u'manage.py', u'loadsheets', u'fixtures/datasheets.xlsx'])
else:
call(u'Migrate DB:', [u'env/bin/python', u'manage.py', u'migrate'])
def load_redirects(configure):
from django.contrib.redirects.models import Redirect
from django.contrib.sites.models import Site
Redirect.objects.all().delete()
site = Site.objects.get(name=u'chcemvediet')
with open(u'fixtures/redirects_redirect.sk.json') as json_file:
data = json.load(json_file)
for old_path, new_path in data.items():
redirect = Redirect(site=site, old_path=old_path, new_path=new_path)
redirect.save()
def configure_site_domain(configure):
from django.contrib.sites.models import Site
server_domain = configure.get(u'server_domain')
site = Site.objects.get(name=u'chcemvediet')
if server_domain != site.domain:
site.domain = server_domain
site.save()
def configure_admin_password(configure):
from django.contrib.auth.models import User
from django.contrib.auth.hashers import make_password
print(INFO + textwrap.dedent(u"""
Enter site admin password.""") + RESET)
admin_password = configure.input_password(u'admin_password', u'Admin password',
make_password, required=True)
admin_email = configure.get(u'admin_email')
admin = User.objects.get(username=u'admin')
if admin_password != admin.password or admin_email != admin.email:
admin.password = admin_password
admin.email = admin_email
admin.save()
def configure_social_accounts(configure):
from allauth.socialaccount.models import SocialApp
print(INFO + textwrap.dedent(u"""
Enter your OAuth Client IDs and Secrets for social account providers. If you
don't want to use some providers, just skip them by entering empty strings.
Don't share the keys with anybody and never push them to git."""))
for social_app in SocialApp.objects.all():
client_id = configure.input(u'{}_client_id'.format(social_app.provider),
u'{} Client ID'.format(social_app.name))
secret = configure.input(u'{}_secret'.format(social_app.provider),
u'{} Secret'.format(social_app.name))
if client_id != social_app.client_id or secret != social_app.secret:
social_app.client_id = client_id
social_app.secret = secret
social_app.save()
def configure_dummy_obligee_emails(configure):
from chcemvediet.apps.obligees.models import Obligee, HistoricalObligee
# Production mode uses real obligee emails.
server_mode = configure.get(u'server_mode')
if server_mode in [u'production_with_no_mail', u'production']:
return
mail_tpl = configure.get(u'obligee_dummy_mail')
for model in [Obligee, HistoricalObligee]:
for obligee in model.objects.all():
mail = Obligee.dummy_email(obligee.name, mail_tpl)
if mail != obligee.emails:
obligee.emails = mail
obligee.save()
def compile_locales(configure):
for cwd in [u'poleno/attachments/', u'poleno/invitations/', u'poleno/mail/',
u'poleno/pages/', u'poleno/utils/', u'chcemvediet/']:
rel = os.path.relpath(u'.', cwd)
call(u'Compiling locales:', [os.path.join(rel, u'env/bin/python'),
os.path.join(rel, u'manage.py'), u'compilemessages'], cwd=cwd)
def run_datachecks(configure):
call(u'Running data checks:', [u'env/bin/python', u'manage.py', u'datacheck', u'--autofix'])
def touch_wsgi_and_help_run_server(configure):
server_mode = configure.get(u'server_mode')
if server_mode in [u'local_with_no_mail', u'local_with_local_mail']:
print(INFO + textwrap.dedent(u"""
Your local testing server is configured and ready. Run it with:
$ env/bin/python manage.py runserver
In another shell, run testing cronserver:
$ env/bin/python manage.py cronserver
""") + RESET)
if server_mode in [u'local_with_local_mail']:
print(INFO + textwrap.dedent(u"""
In yet another shell, run dummy email infrastructure:
$ env/bin/python manage.py dummymail
""") + RESET)
else:
assert server_mode in [u'dev_with_no_mail', u'dev_with_dummy_obligee_mail',
u'dev_without_debug', u'production_with_no_mail', u'production']
call(u'Reloading server:', [u'touch', u'chcemvediet/wsgi.py'])
print(INFO + textwrap.dedent(u"""
Make sure ``mod_wsgi`` Apache module is installed and enabled and add the
following directives to your virtualhost configuration:
ServerName {domain}
...
WSGIScriptAlias / {path}/chcemvediet/chcemvediet/wsgi.py
WSGIDaemonProcess {domain} user={user} group={group} python-path={path}/chcemvediet:{path}/chcemvediet/env/lib/python2.7/site-packages
WSGIProcessGroup {domain}
<Directory {path}/chcemvediet/chcemvediet>
<Files wsgi.py>
Order allow,deny
Allow from all
</Files>
</Directory>
Where {path} is an absolute path to the repository, {domain} is your web domain
and {user} and {group} are unix user and group names the server will run under.
Finally add a cron job running the following command every minute:
cd {path} && env/bin/python manage.py runcrons
""") + RESET)
def main():
# Make sure we are in the project root directory
os.chdir(os.path.abspath(os.path.dirname(__file__)))
# Create a virtual environment
if not os.path.isdir(u'env'):
call(u'Creating a virtual Python environment: env/', [u'virtualenv', u'env']);
# Make sure we are running within the virtual environment
if sys.executable != os.path.abspath(u'env/bin/python'):
try:
call(u'Rerunning with: env/bin/python', [u'env/bin/python', u'setup.py']);
except KeyboardInterrupt:
pass
sys.exit()
with Configure() as configure:
# Configure project settings
with Settings() as settings:
configure_server_mode(configure, settings)
configure_mocks(configure, settings)
install_requirements(configure)
download_fontello(configure)
configure_secret_key(configure, settings)
configure_domain_and_emails(configure, settings)
configure_devbar(configure, settings)
configure_database(configure, settings)
configure_cache(configure, settings)
configure_mandrill(configure, settings)
configure_search(configure, settings)
configure_recaptcha(configure, settings)
# Settings module is configured, so we may use Django now.
os.environ.setdefault(u'DJANGO_SETTINGS_MODULE', u'chcemvediet.settings')
import django
from django.db.transaction import atomic
django.setup()
# Configure database
create_or_sync_database(configure)
with atomic():
load_redirects(configure)
configure_site_domain(configure)
configure_admin_password(configure)
configure_social_accounts(configure)
configure_dummy_obligee_emails(configure)
compile_locales(configure)
run_datachecks(configure)
touch_wsgi_and_help_run_server(configure)
if __name__ == u'__main__':
try:
main()
except KeyboardInterrupt:
print(ERROR + u'\nError: Keyboard Interrupt' + RESET)