mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
Moved our useful scripts to the tools directory
This commit is contained in:
42
tools/extract-emails.py
Executable file
42
tools/extract-emails.py
Executable file
@@ -0,0 +1,42 @@
|
||||
#!/usr/bin/env python
|
||||
"""Executes a Django cronjob"""
|
||||
|
||||
import os
|
||||
|
||||
# Set niceness
|
||||
os.nice(20)
|
||||
|
||||
# Activate the virtualenv
|
||||
path = os.path.dirname(os.path.realpath( __file__ ))
|
||||
activate_this = os.path.join(path, 'env/bin/activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import sys
|
||||
import logging
|
||||
from django.core.management import setup_environ
|
||||
import settings
|
||||
|
||||
setup_environ(settings)
|
||||
|
||||
from eve_api.models import EVEPlayerCharacter
|
||||
import unicodedata
|
||||
import re
|
||||
|
||||
chars = set(EVEPlayerCharacter.objects.filter(corporation__alliance__name='Test Alliance Please Ignore'))
|
||||
|
||||
#f =open('/home/dreddit/email.txt', 'w')
|
||||
|
||||
out = {}
|
||||
|
||||
for char in chars:
|
||||
if len(char.eveaccount_set.all()) > 0:
|
||||
name = unicodedata.normalize('NFKD', char.name).encode('ASCII', 'ignore')
|
||||
charname = re.sub('[^a-zA-Z0-9_-]+', '', name)
|
||||
email = char.eveaccount_set.all()[0].user.email
|
||||
out[charname] = email
|
||||
|
||||
|
||||
for key in out:
|
||||
print("%s\t%s" % (key, out[key]))
|
||||
|
||||
#f.close()
|
||||
96
tools/munin.py
Executable file
96
tools/munin.py
Executable file
@@ -0,0 +1,96 @@
|
||||
#!/usr/bin/env python
|
||||
import os
|
||||
|
||||
# Set niceness
|
||||
os.nice(20)
|
||||
|
||||
# Activate the virtualenv
|
||||
path = os.path.dirname(os.path.realpath(__file__))
|
||||
activate_this = os.path.join(path, 'env/bin/activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
import sys
|
||||
import logging
|
||||
from django.core.management import setup_environ
|
||||
import settings
|
||||
|
||||
setup_environ(settings)
|
||||
|
||||
import getopt
|
||||
from eve_api.app_defines import *
|
||||
from eve_api.models import EVEAccount
|
||||
|
||||
from hr.app_defines import *
|
||||
from hr.models import Application
|
||||
|
||||
from eve_proxy.models import CachedDocument
|
||||
|
||||
accepted_names = ['munin.py', 'auth_apikeys', 'auth_hrapplications',
|
||||
'auth_eveapicache']
|
||||
|
||||
|
||||
class Usage(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def main(argv=None):
|
||||
if argv is None:
|
||||
argv = sys.argv
|
||||
|
||||
if os.path.basename(argv[0]) in accepted_names:
|
||||
execname = os.path.basename(argv[0])
|
||||
else:
|
||||
print argv[0]
|
||||
print >> sys.stderr, "Invalid symlink name, check the source"
|
||||
return 2
|
||||
try:
|
||||
try:
|
||||
opts, args = getopt.getopt(argv[1:], "", ["config"])
|
||||
except getopt.error, msg:
|
||||
raise Usage(msg)
|
||||
# more code, unchanged
|
||||
except Usage, err:
|
||||
print >> sys.stderr, "Invalid usage"
|
||||
return 2
|
||||
|
||||
for arg in args:
|
||||
if arg == 'config':
|
||||
if execname == 'auth_apikeys':
|
||||
print "graph_title Auth Active EVE API Keys"
|
||||
print "graph_vlabel Keys"
|
||||
print "graph_category auth"
|
||||
print "keys.label Keys"
|
||||
print "graph_args --base 1000"
|
||||
return 0
|
||||
if execname == 'auth_hrapplications':
|
||||
print "graph_title Auth - Open Applications"
|
||||
print "graph_vlabel Applications"
|
||||
print "graph_category auth"
|
||||
print "apps.label Applications"
|
||||
print "apps.warning 10"
|
||||
print "apps.critical 20"
|
||||
print "graph_args --base 1000"
|
||||
return 0
|
||||
if execname == 'auth_eveapicache':
|
||||
print "graph_title Auth - Cached EVE API Requests"
|
||||
print "graph_vlabel Cached Requests"
|
||||
print "graph_category auth"
|
||||
print "requests.label Cached Requests"
|
||||
print "graph_args --base 1000"
|
||||
return 0
|
||||
|
||||
|
||||
if execname == 'auth_apikeys':
|
||||
key_count = EVEAccount.objects.filter(api_status=API_STATUS_OK).count()
|
||||
print "keys.value %s" % key_count
|
||||
elif execname == 'auth_hrapplications':
|
||||
view_status = [APPLICATION_STATUS_AWAITINGREVIEW,
|
||||
APPLICATION_STATUS_ACCEPTED, APPLICATION_STATUS_QUERY]
|
||||
apps = Application.objects.filter(status__in=view_status)
|
||||
print "apps.value %s" % apps.count()
|
||||
elif execname == 'auth_eveapicache':
|
||||
print "requests.value %s" % CachedDocument.objects.count()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
1160
tools/pep8.py
Executable file
1160
tools/pep8.py
Executable file
File diff suppressed because it is too large
Load Diff
34
tools/update-directors.py
Executable file
34
tools/update-directors.py
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/usr/bin/env python
|
||||
"""Executes a Django cronjob"""
|
||||
|
||||
import os
|
||||
|
||||
# Set niceness
|
||||
os.nice(20)
|
||||
|
||||
# Activate the virtualenv
|
||||
path = os.path.dirname(os.path.realpath( __file__ ))
|
||||
activate_this = os.path.join(path, 'env/bin/activate_this.py')
|
||||
execfile(activate_this, dict(__file__=activate_this))
|
||||
|
||||
from django.core.management import setup_environ
|
||||
import settings
|
||||
setup_environ(settings)
|
||||
|
||||
from eve_api.models import EVEPlayerCharacter
|
||||
from django.contrib.auth.models import Group, User
|
||||
|
||||
g = Group.objects.get(name="Alliance Directors")
|
||||
|
||||
users = []
|
||||
for char in EVEPlayerCharacter.objects.filter(corporation__alliance__name="Test Alliance Please Ignore",director=True):
|
||||
users.append(char.eveaccount_set.all()[0].user)
|
||||
|
||||
add = set(users) - set(g.user_set.all())
|
||||
rem = set(g.user_set.all()) - set(users)
|
||||
|
||||
for m in rem:
|
||||
m.groups.remove(g)
|
||||
|
||||
for m in add:
|
||||
m.groups.add(g)
|
||||
Reference in New Issue
Block a user