-
Notifications
You must be signed in to change notification settings - Fork 335
/
setup.py
743 lines (677 loc) · 24.3 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
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
#!/usr/bin/python2
# -*- coding: utf-8 -*-
# We can't use future unicode_litteral in setup.py because versions of
# setuptools <= 41.1.0 do not manage unicode values in package_data.
# See https://github.com/pypa/setuptools/pull/1769 for details.
# from __future__ import absolute_import, division, print_function, unicode_literals
try:
import pwd
import grp
except ImportError:
# don't expect to have this on windows :)
pwd = grp = None
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
from distutils.core import Command
from itertools import chain
from glob import glob
import sys
import os
import re
try:
from setuptools import setup
from setuptools import find_packages
except:
sys.exit("Error: missing setuptools library")
try:
python_version = sys.version_info
except:
python_version = None
if not python_version or python_version < (2, 7):
sys.exit("Shinken requires Python >= 2.7.x, sorry")
###############################################################################
#
# Utility functions
#
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def update_file_with_string(infilename, outfilename, matches, new_strings):
"""
Replaces strings by regex from infilename to outfilename
:param str infilename: The input file to read and replace strings in
:param str outfilename: The output file to write to
:param list matches: The regex matches to replace
:param list new_strings: String replacement per regex
"""
with open(infilename, "rb") as f:
buf = []
for r in f:
r = r.decode("utf-8").strip()
for match, new_string in zip(matches, new_strings):
r = (re.sub(match, new_string, r))
buf.append(r)
with open(outfilename, "wb") as f:
f.write("\n".join(buf).encode("utf-8"))
def get_uid(username):
"""
Returns the username's uid, or None if it does not exist
:param str username: The username to look for
"""
try:
return pwd.getpwnam(username)[2]
except KeyError as exp:
return None
def get_gid(groupname):
"""
Returns the group's gid, or None if it does not exist
:param str groupname: The username to look for
"""
try:
return grp.getgrnam(groupname)[2]
except KeyError as exp:
return None
def get_init_system():
"""
Return the init system name
"""
if os.name == 'nt':
return None
if not os.path.isfile("/proc/1/comm"):
return "sysv"
with open("/proc/1/comm", "r") as f:
init = f.read().strip()
if init == "systemd":
return init
else:
return "sysv"
def get_requirements():
"""
Reads requirements file
"""
req_path = os.path.join(
os.path.dirname(__file__),
"requirements.txt"
)
with open(req_path, "r") as f:
requirements = [r.strip() for r in f if r.strip()]
return requirements
def get_shinken_version():
"""
Reads the shinken version
"""
version_path = os.path.join(
os.path.dirname(__file__),
"shinken",
"bin",
"__init__.py"
)
with open(version_path, "r") as f:
version = None
for r in f:
if "VERSION" in r:
version = r.split("=")[1].strip().strip('"')
break
if version is None:
raise Exception("Failed to read shinken version")
return version
###############################################################################
#
# Distribution files
#
###############################################################################
# Packages definition
package_data = ['*.py', 'modules/*.py', 'modules/*/*.py']
# Compute scripts
scripts = [s for s in glob('bin/shinken*') if not s.endswith('.py')]
###############################################################################
#
# Default paths
#
###############################################################################
shinken_services = [
'arbiter',
'broker',
'poller',
'reactionner',
'receiver',
'scheduler'
]
# Installation files processing
if os.path.isfile('/etc/redhat-release'):
default_paths = {
'sysv': "/etc/init.d",
'default': "/etc/sysconfig",
'libexec': "/usr/local/libexec/shinken/plugins",
'modules': "/usr/local/lib/shinken/modules",
'share': "/usr/local/share/shinken",
'examples': "/usr/local/share/doc/shinken/examples",
'doc': "/usr/local/share/doc/shinken",
'etc': "/etc/shinken",
'var': "/var/lib/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
}
elif os.path.isfile('/etc/debian_version'):
default_paths = {
'sysv': "/etc/init.d",
'default': "/etc/default",
'libexec': "/usr/local/libexec/shinken/plugins",
'modules': "/usr/local/lib/shinken/modules",
'share': "/usr/local/share/shinken",
'examples': "/usr/local/share/doc/shinken/examples",
'doc': "/usr/local/share/doc/shinken",
'etc': "/etc/shinken",
'var': "/var/lib/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
}
elif 'linux' in sys.platform or 'sunos5' in sys.platform:
default_paths = {
'sysv': "/etc/init.d",
'default': "/etc/default",
'libexec': "/usr/local/libexec/shinken/plugins",
'modules': "/usr/local/lib/shinken/modules",
'share': "/usr/local/share/shinken",
'examples': "/usr/local/share/doc/shinken/examples",
'doc': "/usr/local/share/doc/shinken",
'etc': "/etc/shinken",
'var': "/var/lib/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
}
elif 'openbsd':
default_paths = {
'sysv': "/etc/rc.d",
'default': "/etc/default",
'libexec': "/usr/local/libexec/shinken/plugins",
'modules': "/usr/local/lib/shinken/modules",
'share': "/usr/local/share/shinken",
'examples': "/usr/local/share/examples/shinken",
'doc': "/usr/local/share/doc/shinken",
'etc': "/etc/shinken",
'var': "/var/lib/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
}
elif 'bsd' in sys.platform or 'dragonfly' in sys.platform:
default_paths = {
'sysv': "/usr/local/etc/rc.d",
'default': "/etc/default",
'libexec': "/usr/local/libexec/shinken/plugins",
'modules': "/usr/local/lib/shinken/modules",
'share': "/usr/local/share/shinken",
'examples': "/usr/local/share/examples/shinken",
'doc': "/usr/local/share/doc/shinken",
'etc': "/etc/shinken",
'var': "/var/lib/shinken",
'run': "/var/run/shinken",
'log': "/var/log/shinken",
}
elif sys.platform.startswith('win'):
default_paths = {
'libexec': "c:\\shinken\\libexec",
'modules': "c:\\shinken\\var\\modules",
'var': "c:\\shinken\\var",
'share': "c:\\shinken\\var\\share",
'examples': "c:\\shinken\\var\\share\\examples",
'doc': "c:\\shinken\\var\\share\\doc",
'etc': "c:\\shinken\\etc",
'log': "c:\\shinken\\var",
'run': "c:\\shinken\\var",
}
else:
raise Exception("Unsupported platform, sorry")
if os.getenv("VIRTUAL_ENV"):
root = os.getenv("VIRTUAL_ENV")
default_paths.update({
'default': os.path.join(root, "etc", "default"),
'libexec': os.path.join(root, "libexec", "shinken", "plugins"),
'modules': os.path.join(root, "lib", "shinken", "modules"),
'share': os.path.join(root, "share", "shinken"),
'examples': os.path.join(root, "share", "doc", "shinken", "examples"),
'doc': os.path.join(root, "share", "doc", "shinken"),
'etc': os.path.join(root, "etc", "shinken"),
'var': os.path.join(root, "var", "lib", "shinken"),
'run': os.path.join(root, "var", "run", "shinken"),
'log': os.path.join(root, "var", "log", "shinken"),
})
###############################################################################
#
# Init related files
#
###############################################################################
if get_init_system() == "systemd":
init_files = [
'bin/systemd/shinken-%s.service.in' % service
for service in shinken_services
]
data_files = [(
os.path.join(default_paths['examples'], 'systemd'),
init_files
)]
default_files = [
'bin/default/shinken-%s.in' % service
for service in shinken_services
]
data_files.append((
os.path.join(default_paths['examples'], 'default'),
default_files
))
elif get_init_system() == "sysv":
init_files = ['bin/init.d/shinken.in']
init_files.extend([
'bin/init.d/shinken-%s' % service for service in shinken_services
])
data_files = [(
os.path.join(default_paths['examples'], 'init.d'),
init_files
)]
# warning: The default file will be generated a bit later
default_files = ['bin/default/shinken.in']
data_files.append((
os.path.join(default_paths['examples'], 'default'),
default_files
))
else:
data_files = []
###############################################################################
#
# Daemon and and shinken configuration files processing
#
###############################################################################
## get all files + under-files in etc/ except daemons folder
for path, subdirs, files in os.walk('etc'):
dirname = os.path.join(default_paths['examples'], path)
if not files:
data_files.append((dirname, []))
continue
for name in files:
data_files.append((dirname, [os.path.join(path, name)]))
###############################################################################
#
# Modules, inventory, doc, ...
#
###############################################################################
# Modules, doc, inventory and cli are always installed
paths = ('inventory', 'cli')
dist = {}
for path, subdirs, files in chain.from_iterable(os.walk(patho) for patho in paths):
for name in files:
dirname = os.path.join(default_paths['var'], path)
data_files.append((
dirname, [os.path.join(path, name)]
))
for path, subdirs, files in os.walk('share'):
for name in files:
dirname = os.path.dirname(os.path.join(
default_paths['share'],
re.sub(r"^(share\/|share$)", "", path)
))
data_files.append((
dirname, [os.path.join(path, name)]
))
for path, subdirs, files in os.walk('doc'):
for name in files:
dirname = os.path.dirname(os.path.join(
default_paths['doc'],
re.sub(r"^(doc\/|doc$)", "", path)
))
data_files.append((
dirname, [os.path.join(path, name)]
))
for path, subdirs, files in os.walk('modules'):
for name in files:
dirname = os.path.dirname(os.path.join(
default_paths['modules'],
re.sub(r"^(modules\/|modules$)", "", path)
))
data_files.append((
dirname, [os.path.join(path, name)]
))
for path, subdirs, files in os.walk('libexec'):
for name in files:
dirname = os.path.dirname(os.path.join(
default_paths['libexec'],
re.sub(r"^(libexec\/|libexec$)", "", path)
))
data_files.append((
dirname, [os.path.join(path, name)]
))
###############################################################################
#
# Run related files
#
###############################################################################
data_files.append((default_paths['run'], []))
data_files.append((default_paths['log'], []))
###############################################################################
#
# Post install command and actions
#
###############################################################################
class post_install(Command):
"""
A custom command to execute post-install actions
"""
description = 'Run shinken post-install actions, such as templates ' \
'processing and permissions enforcement'
user_options = [
# The format is (long option, short option, description).
('install-conf', None, 'Install shinken configuration from examples'),
('install-default', None, 'Install shinken default files from examples'),
('install-init', None, 'Install shinken init files from examples'),
(
'confdir=',
'c',
'The configuration directory to alter (defaults to %s)' %
default_paths['etc']
),
(
'defaultdir=',
'f',
'The environment files director for init system (defaults to %s)' %
default_paths['default']
),
('user=', 'u', 'User to run Shinken under (defaults to shinken)'),
('group=', 'g', 'User to run Shinken under (defaults to shinken)'),
(
'modules=',
'm',
'Path the modules should be placed into (defaults to %s)' %
default_paths['modules']
),
(
'workdir=',
'w',
'The shinken work directory (defaults to %s)' %
default_paths['var']
),
(
'lockdir=',
'x',
'The shinken service lock directory (defaults to %s)' %
default_paths['run']
),
(
'logdir=',
'l',
'The shinken log directory (defaults to %s)' %
default_paths['log']
),
]
boolean_options = ['install-conf', 'install-default', 'install-init']
def initialize_options(self):
"""
Set default values for options.
"""
# Each user option must be listed here with their default value.
self.install_dir = None
self.install_conf = None
self.install_default = None
self.install_init = None
self.user = 'shinken'
self.group = 'shinken'
self.confdir = default_paths['etc']
self.defaultdir = default_paths['default']
self.modules = default_paths['modules']
self.workdir = default_paths['var']
self.lockdir = default_paths['run']
self.logdir = default_paths['log']
def finalize_options(self):
"""
Post-process options.
"""
assert get_uid(self.user) is not None, ('Unknown user %s.' % self.user)
assert get_gid(self.group) is not None, ('Unknown group %s.' % self.group)
self.set_undefined_options(
'install', ('install_scripts', 'install_dir'),
)
def generate_default_files(self):
"""
Generate default/environment files sourced by init scripts or
systemd unit files from templates
"""
# The default file must have good values for the directories:
# etc, var and where to push scripts that launch the app.
# The `default_files` variable has been set above while genetating the
# `data_files` list.
default_templates = [
os.path.join(default_paths['examples'], re.sub(r'^bin/', '', d))
for d in default_files
]
for default_template in default_templates:
# Read the template file
# There can be unicode characters in files
# As setuptools does not support unicode in python2, for 2/3
# compatibility, read files in binary and decode them in unicode
# Do the contrary to write them.
with open(default_template, "rb") as f:
buf = f.read().decode("utf-8")
# substitute
buf = buf.replace("$ETC$", self.confdir)
buf = buf.replace("$VAR$", self.workdir)
buf = buf.replace("$RUN$", self.lockdir)
buf = buf.replace("$LOG$", self.logdir)
buf = buf.replace("$SCRIPTS_BIN$", self.install_dir.rstrip("/"))
# write out the new file
target = re.sub(r'\.in$', '', default_template)
with open(target, "wb") as f:
f.write(buf.encode("utf-8"))
def install_default_files(self):
"""
Install default/environment files sourced by init scripts or
systemd unit files previously generated
"""
for filename in [os.path.basename(i) for i in default_files]:
default_src = re.sub(r'\.in$', '', os.path.join(
default_paths['examples'],
'default',
filename))
default_dir = self.defaultdir
self.mkpath(default_dir)
self.copy_file(default_src, default_dir)
def generate_init_files(self):
"""
Generates the initscripts or systemd unit files from templates
"""
init_templates = [
os.path.join(default_paths['examples'], re.sub(r'^bin/', '', i))
for i in init_files
]
for init_template in init_templates:
# Read the template file
# There can be unicode characters in files
# As setuptools does not support unicode in python2, for 2/3
# compatibility, read files in binary and decode them in unicode
# Do the contrary to write them.
with open(init_template, "rb") as f:
buf = f.read().decode("utf-8")
# substitute
buf = buf.replace("$BIN$", self.install_dir.rstrip("/"))
buf = buf.replace("$DEFAULT$", default_paths["default"])
# write out the new file
target = re.sub(r'\.in$', '', init_template)
with open(target, "wb") as f:
f.write(buf.encode("utf-8"))
def install_init_files(self):
"""
Installs the init scripts or systemd unit files. When unit files
get modified, takes care to reload daemon files.
"""
systemd_reload = False
for filename in [os.path.basename(i) for i in init_files]:
if get_init_system() == "systemd":
systemd_reload = True
init_src = re.sub(r'\.in$', '', os.path.join(
default_paths['examples'],
'systemd',
filename))
init_dir = '/etc/systemd/system'
self.mkpath(init_dir)
self.copy_file(init_src, init_dir)
elif get_init_system() == "sysv":
init_src = re.sub(r'\.in$', '', os.path.join(
default_paths['examples'],
'init.d',
filename))
init_dir = default_paths['sysv']
self.mkpath(init_dir)
init_file = re.sub(r'\.in$', '', os.path.join(
init_dir,
filename))
self.copy_file(init_src, init_dir)
os.chmod(init_file, 0o0755)
if systemd_reload:
self.spawn(["systemctl", "daemon-reload"])
def generate_conf_files(self):
"""
Generates shinken configuration files from templates
"""
conf_templates = []
conf_base = os.path.join(default_paths['examples'], 'etc')
for path, subdirs, files in os.walk(conf_base):
for name in files:
if name.endswith(".in"):
conf_template = os.path.join(path, name)
conf_templates.append(conf_template)
# Processes template files expansion
for conf_template in conf_templates:
target = re.sub(r'\.in$', '', conf_template)
update_file_with_string(
conf_template,
target,
[
r'^modules_dir=.*',
r'^#user=.*',
r'^#group=.*',
r'^shinken_user=\w+',
r'^shinken_group=\w+',
r'^workdir=.+',
r'^lock_file=.+/([^/]+.pid)',
r'^local_log=.+/([^/]+.log)',
],
[
r'modules_dir=%s' % self.modules,
r'user=%s' % self.user,
r'group=%s' % self.group,
r'shinken_user=%s' % self.user,
r'shinken_group=%s' % self.group,
r'workdir=%s' % self.workdir,
r'lock_file=%s/\1' % self.lockdir,
r'local_log=%s/\1' % self.logdir,
]
)
def install_conf_files(self):
"""
Installs shinken configuration files previously generated
Template files are ignored.
"""
conf_files = []
conf_base = os.path.join(default_paths['examples'], 'etc')
for path, subdirs, files in os.walk(conf_base):
for name in files:
if name.endswith(".in"):
continue
conf_file = os.path.join(path, name)
conf_files.append(conf_file)
for filename in conf_files:
conf_file = filename.replace(conf_base, self.confdir)
conf_dir = os.path.dirname(conf_file)
self.mkpath(conf_dir)
self.copy_file(filename, conf_file)
def run(self):
"""
Run command.
"""
self.generate_conf_files()
if os.name == 'nt':
return
self.generate_default_files()
self.generate_init_files()
if self.install_conf:
self.install_conf_files()
if self.install_default:
self.install_default_files()
if self.install_init:
self.install_init_files()
# Enforces files and directories ownership
for c in ['run', 'log', 'var']:
p = default_paths[c]
self.spawn(["chown", "-R", "%s:%s" % (self.user, self.group), p])
for c in ['libexec']:
p = default_paths[c]
self.spawn(["chmod", "-R", "+X", p])
###############################################################################
#
# Debug output
#
###############################################################################
if os.getenv("DEBUG") == "1":
from pprint import pprint
print("Version")
pprint(get_shinken_version())
print("Packages")
pprint(find_packages(
exclude=[
"shinken.webui",
"shinken.webui.bottlecole",
"shinken.webui.bottlewebui"
]
))
print("Requirements")
pprint(get_requirements())
print("Default paths")
pprint(default_paths)
print("Data files")
pprint(data_files)
print("Default files")
pprint(default_files)
print("Init files")
pprint(init_files)
###############################################################################
#
# Setup
#
###############################################################################
setup(
name="Shinken",
version=get_shinken_version(),
packages=find_packages(
exclude=[
"shinken.webui",
"shinken.webui.bottlecole",
"shinken.webui.bottlewebui"
]
),
scripts=scripts,
package_data={'': package_data},
description="Shinken is a monitoring framework compatible with Nagios configuration and plugins",
long_description=read('README.rst'),
author="Gabes Jean",
author_email="[email protected]",
license="GNU Affero General Public License",
url="http://www.shinken-monitoring.org",
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
],
install_requires=get_requirements(),
extras_require={
'setproctitle': ['setproctitle']
},
data_files=data_files,
cmdclass={
'post_install': post_install,
},
)