django-orchestra/orchestra/apps/systemusers/backends.py

124 lines
4.4 KiB
Python
Raw Normal View History

2014-07-25 15:17:50 +00:00
import textwrap
2014-07-11 14:48:46 +00:00
from django.utils import timezone
2014-05-08 16:59:35 +00:00
from django.utils.translation import ugettext_lazy as _
2014-07-09 16:17:43 +00:00
from orchestra.apps.orchestration import ServiceController
from orchestra.apps.resources import ServiceMonitor
2014-05-08 16:59:35 +00:00
from . import settings
2014-07-09 16:17:43 +00:00
class SystemUserBackend(ServiceController):
2014-05-08 16:59:35 +00:00
verbose_name = _("System User")
model = 'users.User'
ignore_fields = ['last_login']
2014-07-09 16:17:43 +00:00
2014-05-08 16:59:35 +00:00
def save(self, user):
context = self.get_context(user)
if user.is_main:
2014-07-25 15:17:50 +00:00
self.append(textwrap.dedent("""
if [[ $( id %(username)s ) ]]; then
usermod --password '%(password)s' %(username)s
else
useradd %(username)s --password '%(password)s' \\
2014-07-25 15:17:50 +00:00
--shell /bin/false
fi
mkdir -p %(home)s
chown %(username)s.%(username)s %(home)s""" % context
))
2014-05-08 16:59:35 +00:00
else:
self.delete(user)
def delete(self, user):
context = self.get_context(user)
self.append("{ sleep 2 && killall -u %(username)s -s KILL; } &" % context)
self.append("killall -u %(username)s" % context)
self.append("userdel %(username)s" % context)
def get_context(self, user):
context = {
'username': user.username,
'password': user.password if user.is_active else '*%s' % user.password,
}
context['home'] = settings.USERS_SYSTEMUSER_HOME % context
return context
2014-07-09 16:17:43 +00:00
class SystemUserDisk(ServiceMonitor):
model = 'users.User'
resource = ServiceMonitor.DISK
verbose_name = _('System user disk')
def monitor(self, user):
context = self.get_context(user)
2014-07-11 14:48:46 +00:00
self.append("du -s %(home)s | xargs echo %(object_id)s" % context)
def get_context(self, user):
context = SystemUserBackend().get_context(user)
context['object_id'] = user.pk
return context
class FTPTraffic(ServiceMonitor):
model = 'users.User'
resource = ServiceMonitor.TRAFFIC
verbose_name = _('FTP traffic')
2014-07-25 15:17:50 +00:00
def prepare(self):
current_date = timezone.localtime(self.current_date)
current_date = current_date.strftime("%Y%m%d%H%M%S")
self.append(textwrap.dedent("""
function monitor () {
OBJECT_ID=$1
INI_DATE=$2
USERNAME="$3"
LOG_FILE="$4"
grep "UPLOAD\|DOWNLOAD" "${LOG_FILE}" \\
| grep " \\[${USERNAME}\\] " \\
2014-07-25 15:17:50 +00:00
| awk -v ini="${INI_DATE}" '
BEGIN {
end = "%s"
sum = 0
months["Jan"] = "01"
months["Feb"] = "02"
months["Mar"] = "03"
months["Apr"] = "04"
months["May"] = "05"
months["Jun"] = "06"
months["Jul"] = "07"
months["Aug"] = "08"
months["Sep"] = "09"
months["Oct"] = "10"
months["Nov"] = "11"
months["Dec"] = "12"
} {
# log: Fri Jul 11 13:23:17 2014
split($4, t, ":")
# line_date = year month day hour minute second
line_date = $5 months[$2] $3 t[1] t[2] t[3]
if ( line_date > ini && line_date < end)
split($0, l, "\\", ")
split(l[3], b, " ")
sum += b[1]
} END {
print sum
}
' | xargs echo ${OBJECT_ID}
}""" % current_date))
2014-07-11 14:48:46 +00:00
def monitor(self, user):
context = self.get_context(user)
2014-07-25 15:17:50 +00:00
self.append(
'monitor %(object_id)i %(last_date)s "%(username)s" "%(log_file)s"' % context)
2014-07-11 14:48:46 +00:00
def get_context(self, user):
2014-07-14 14:56:48 +00:00
last_date = timezone.localtime(self.get_last_date(user.pk))
2014-07-11 14:48:46 +00:00
return {
'log_file': settings.USERS_FTP_LOG_PATH,
2014-07-14 14:56:48 +00:00
'last_date': last_date.strftime("%Y%m%d%H%M%S"),
2014-07-11 14:48:46 +00:00
'object_id': user.pk,
'username': user.username,
}