mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
87 lines
3.3 KiB
Python
87 lines
3.3 KiB
Python
from datetime import datetime, timedelta
|
|
from xml.dom import minidom
|
|
|
|
from celery.decorators import task
|
|
from eve_proxy.models import CachedDocument
|
|
from eve_api.models import EVEPlayerCorporation, EVEPlayerCharacter, EVEPlayerAlliance
|
|
from eve_api.utils import basic_xml_parse_doc
|
|
from eve_api.tasks.character import import_eve_character
|
|
|
|
@task(ignore_result=True)
|
|
def import_corp_details(corp_id):
|
|
import_corp_details_func(corp_id)
|
|
|
|
@task()
|
|
def import_corp_details_result(corp_id):
|
|
return import_corp_details_func(corp_id)
|
|
|
|
|
|
def import_corp_details_func(corp_id):
|
|
|
|
corpobj, created = EVEPlayerCorporation.objects.get_or_create(id=corp_id)
|
|
if created or not corpobj.api_last_updated or corpobj.api_last_updated < (datetime.utcnow() - timedelta(hours=12)):
|
|
|
|
doc = CachedDocument.objects.api_query('/corp/CorporationSheet.xml.aspx', {'corporationID': corp_id})
|
|
d = basic_xml_parse_doc(doc)['eveapi']['result']
|
|
|
|
tag_mappings = (
|
|
('corporationName', 'name'),
|
|
('ticker', 'ticker'),
|
|
('url', 'url'),
|
|
('description', 'description'),
|
|
('memberCount', 'member_count'),
|
|
)
|
|
|
|
for tag_map in tag_mappings:
|
|
setattr(corpobj, tag_map[1], d[tag_map[0]])
|
|
|
|
logo_mappings = (
|
|
('graphicID', 'logo_graphic_id'),
|
|
('shape1', 'logo_shape1'),
|
|
('shape2', 'logo_shape2'),
|
|
('shape3', 'logo_shape3'),
|
|
('color1', 'logo_color1'),
|
|
('color2', 'logo_color2'),
|
|
('color3', 'logo_color3'),
|
|
)
|
|
|
|
for logo_map in logo_mappings:
|
|
setattr(corpobj, logo_map[1], d['logo'][logo_map[0]])
|
|
|
|
if int(d['alliance']):
|
|
corpobj.alliance, created = EVEPlayerAlliance.objects.get_or_create(id=d['allianceID'])
|
|
corpobj.api_last_updated = datetime.utcnow()
|
|
corpobj.save()
|
|
|
|
import_eve_character.delay(d['ceoID'], callback=link_ceo.subtask(corporation=corpobj.id))
|
|
|
|
return EVEPlayerCorporation.objects.get(pk=corpobj.pk)
|
|
|
|
|
|
@task(ignore_result=True)
|
|
def link_ceo(corporation, character):
|
|
""" Links a character to the CEO position of a corporation """
|
|
corpobj = EVEPlayerCorporation.objects.get(id=corporation).update(ceo_character=EVEPlayerCharacter.objects.get(id=character))
|
|
|
|
|
|
@task(ignore_result=True)
|
|
def import_corp_members(api_userid, api_key, character_id):
|
|
"""
|
|
This function pulls all corporation members from the EVE API using a director's
|
|
API key. It'll add as much information as it can about the character.
|
|
"""
|
|
|
|
# grab and decode /corp/MemberTracking.xml.aspx
|
|
auth_params = {'userID': api_userid, 'apiKey': api_key, 'characterID': character_id }
|
|
char_doc = CachedDocument.objects.api_query('/corp/MemberTracking.xml.aspx',
|
|
params=auth_params,
|
|
no_cache=False)
|
|
|
|
set = basic_xml_parse_doc(char_doc)['eveapi']['result']['members']
|
|
corp = EVEPlayerCharacter.objects.get(id=character_id).corporation
|
|
|
|
for character in set:
|
|
charobj = EVEPlayerCharacter.objects.filter(id=character['characterID'])
|
|
charobj.update(last_login=character['logonDateTime'], last_logoff=character['logoffDateTime'], current_location_id=int(character['locationID']))
|
|
|