mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Fixes the cron jobs and account validation, enables account deletion
This commit is contained in:
@@ -28,6 +28,17 @@ def import_eve_account(api_key, user_id):
|
|||||||
#print account_doc.body
|
#print account_doc.body
|
||||||
|
|
||||||
dom = minidom.parseString(account_doc.body)
|
dom = minidom.parseString(account_doc.body)
|
||||||
|
|
||||||
|
if dom.getElementsByTagName('error'):
|
||||||
|
try:
|
||||||
|
account = EVEAccount.objects.get(id=user_id)
|
||||||
|
except EVEAccount.DoesNotExist:
|
||||||
|
return
|
||||||
|
|
||||||
|
account.api_status = API_STATUS_OTHER_ERROR
|
||||||
|
account.save()
|
||||||
|
return
|
||||||
|
|
||||||
characters_node_children = dom.getElementsByTagName('rowset')[0].childNodes
|
characters_node_children = dom.getElementsByTagName('rowset')[0].childNodes
|
||||||
|
|
||||||
# Create or retrieve the account last to make sure everything
|
# Create or retrieve the account last to make sure everything
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import logging
|
|||||||
from django_cron import cronScheduler, Job
|
from django_cron import cronScheduler, Job
|
||||||
from eve_api.models.api_player import EVEAccount, EVEPlayerCorporation
|
from eve_api.models.api_player import EVEAccount, EVEPlayerCorporation
|
||||||
import eve_api.api_puller.accounts
|
import eve_api.api_puller.accounts
|
||||||
|
from eve_api.api_exceptions import APIAuthException, APINoUserIDException
|
||||||
|
|
||||||
class UpdateAPIs(Job):
|
class UpdateAPIs(Job):
|
||||||
"""
|
"""
|
||||||
|
|||||||
13
sso/cron.py
13
sso/cron.py
@@ -26,23 +26,16 @@ class RemoveInvalidUsers(Job):
|
|||||||
|
|
||||||
# Check each service account and delete access if they're not allowed
|
# Check each service account and delete access if they're not allowed
|
||||||
for servacc in ServiceAccount.objects.filter(user=user):
|
for servacc in ServiceAccount.objects.filter(user=user):
|
||||||
|
if not (set(user.groups.all()) & set(servacc.service.groups.all())):
|
||||||
print servacc.service.groups.all()
|
|
||||||
print user.groups.all()
|
|
||||||
allowedgroups = servacc.service.groups.all()
|
|
||||||
|
|
||||||
print set(servacc.service.groups.all()) & set(servacc.service.groups.all())
|
|
||||||
|
|
||||||
if not (set(servacc.service.groups.all()) & set(servacc.service.groups.all())):
|
|
||||||
print "User %s is not in allowed group for %s, deleting account" % (user.username, servacc.service)
|
print "User %s is not in allowed group for %s, deleting account" % (user.username, servacc.service)
|
||||||
#servacc.delete()
|
servacc.delete()
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# For users set to not active, delete all accounts
|
# For users set to not active, delete all accounts
|
||||||
if not user.is_active:
|
if not user.is_active:
|
||||||
print "User %s is inactive, deleting related service accounts" % user.username
|
print "User %s is inactive, deleting related service accounts" % user.username
|
||||||
for servacc in ServiceAccount.objects.filter(user=user):
|
for servacc in ServiceAccount.objects.filter(user=user):
|
||||||
#servacc.delete()
|
servacc.delete()
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -42,22 +42,23 @@ class SSOUser(models.Model):
|
|||||||
# Create a list of Char groups
|
# Create a list of Char groups
|
||||||
chargroups = []
|
chargroups = []
|
||||||
for eacc in EVEAccount.objects.filter(user=self.user):
|
for eacc in EVEAccount.objects.filter(user=self.user):
|
||||||
for char in eacc.characters.all():
|
if eacc.api_status == 1:
|
||||||
if char.corporation.group:
|
for char in eacc.characters.all():
|
||||||
chargroups.append(char.corporation.group)
|
if char.corporation.group:
|
||||||
|
chargroups.append(char.corporation.group)
|
||||||
|
|
||||||
# Generate the list of groups to add/remove
|
# Generate the list of groups to add/remove
|
||||||
delgroups = set(set(self.user.groups.all()) & set(corpgroups)) - set(chargroups)
|
delgroups = set(set(self.user.groups.all()) & set(corpgroups)) - set(chargroups)
|
||||||
addgroups = set(chargroups) - set(set(self.user.groups.all()) & set(corpgroups))
|
addgroups = set(chargroups) - set(set(self.user.groups.all()) & set(corpgroups))
|
||||||
|
|
||||||
print "Del:", delgroups
|
|
||||||
for g in delgroups:
|
for g in delgroups:
|
||||||
self.user.groups.remove(g)
|
self.user.groups.remove(g)
|
||||||
|
|
||||||
print "Add:", addgroups
|
|
||||||
for g in addgroups:
|
for g in addgroups:
|
||||||
self.user.groups.add(g)
|
self.user.groups.add(g)
|
||||||
|
|
||||||
|
print "%s, Add: %s, Del: %s, Current: %s" % (self.user, addgroups, delgroups, self.user.groups.all())
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.user.__str__()
|
return self.user.__str__()
|
||||||
|
|
||||||
|
|||||||
11
test.py
11
test.py
@@ -1,9 +1,12 @@
|
|||||||
import os
|
import os
|
||||||
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
||||||
|
|
||||||
from sso.models import Service
|
from eve_api.cron import UpdateAPIs
|
||||||
from sso.services.jabber import JabberService
|
|
||||||
|
|
||||||
b = JabberService()
|
b = UpdateAPIs()
|
||||||
|
b.job()
|
||||||
|
|
||||||
print b.check_user('matalok')
|
from sso.cron import RemoveInvalidUsers
|
||||||
|
|
||||||
|
b = RemoveInvalidUsers()
|
||||||
|
b.job()
|
||||||
|
|||||||
Reference in New Issue
Block a user