2018-08-07 14:43:09 -04:00
|
|
|
import requests
|
|
|
|
import time
|
|
|
|
import json
|
|
|
|
import collections
|
2018-08-22 21:25:34 -04:00
|
|
|
import os
|
2018-08-07 14:43:09 -04:00
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# the following classes model the discord webhook api parameters
|
2018-08-07 14:43:09 -04:00
|
|
|
class WebhookAuthor():
|
|
|
|
def __init__(self, name=None, url=None, icon_url=None):
|
|
|
|
if name:
|
|
|
|
self.name = name
|
|
|
|
if url:
|
|
|
|
self.url = url
|
|
|
|
if icon_url:
|
|
|
|
self.icon_url = icon_url
|
|
|
|
|
|
|
|
class WebhookField():
|
|
|
|
def __init__(self, name=None, value=None, inline=False):
|
|
|
|
if name:
|
|
|
|
self.name = name
|
|
|
|
if value:
|
|
|
|
self.value = value
|
|
|
|
if inline:
|
|
|
|
self.inline = inline
|
|
|
|
|
|
|
|
class WebhookEmbed():
|
|
|
|
def __init__(self):
|
|
|
|
self.author = ''
|
|
|
|
self.title = ''
|
|
|
|
self.url = ''
|
|
|
|
self.description = ''
|
|
|
|
self.color = 0
|
|
|
|
self.fields = []
|
|
|
|
self.thumbnail = {}
|
|
|
|
|
|
|
|
class WebhookParams():
|
|
|
|
def __init__(self, username=None, avatar_url=None, content=None):
|
|
|
|
self.username = ''
|
|
|
|
self.avatar_url = ''
|
|
|
|
self.content = ''
|
|
|
|
self.embeds = []
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# quick way to convert all the objects to a nice json object
|
2018-08-07 14:43:09 -04:00
|
|
|
def to_json(self):
|
|
|
|
return json.dumps(self, default=lambda o: o.__dict__, sort_keys=True)
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# gets the relative link to a user's profile
|
2018-08-07 14:43:09 -04:00
|
|
|
def get_client_profile(profile_id):
|
2018-08-22 21:25:34 -04:00
|
|
|
return u'{}/Client/ProfileAsync/{}'.format(base_url, profile_id)
|
2018-08-07 14:43:09 -04:00
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
def get_client_profile_markdown(client_name, profile_id):
|
2018-08-22 21:25:34 -04:00
|
|
|
return u'[{}]({})'.format(client_name, get_client_profile(profile_id))
|
2018-08-08 16:36:42 -04:00
|
|
|
|
|
|
|
#todo: exception handling for opening the file
|
2018-08-22 21:25:34 -04:00
|
|
|
if os.getenv("DEBUG"):
|
|
|
|
config_file_name = 'config.dev.json'
|
|
|
|
else:
|
|
|
|
config_file_name = 'config.json'
|
|
|
|
|
|
|
|
with open(config_file_name) as json_config_file:
|
2018-08-07 14:43:09 -04:00
|
|
|
json_config = json.load(json_config_file)
|
|
|
|
|
|
|
|
# this should be an URL to an IP or FQN to an IW4MAdmin instance
|
|
|
|
# ie http://127.0.0.1 or http://IW4MAdmin.com
|
|
|
|
base_url = json_config['IW4MAdminUrl']
|
|
|
|
end_point = '/api/event'
|
|
|
|
request_url = base_url + end_point
|
|
|
|
# this should be the full discord webhook url
|
|
|
|
# ie https://discordapp.com/api/webhooks/<id>/<token>
|
2018-08-08 16:36:42 -04:00
|
|
|
discord_webhook_notification_url = json_config['DiscordWebhookNotificationUrl']
|
|
|
|
discord_webhook_information_url = json_config['DiscordWebhookInformationUrl']
|
2018-08-07 14:43:09 -04:00
|
|
|
# this should be the numerical id of the discord group
|
|
|
|
# 12345678912345678
|
|
|
|
notify_role_ids = json_config['NotifyRoleIds']
|
|
|
|
|
|
|
|
def get_new_events():
|
|
|
|
events = []
|
|
|
|
response = requests.get(request_url)
|
|
|
|
data = response.json()
|
2018-08-08 16:36:42 -04:00
|
|
|
should_notify = False
|
2018-08-07 14:43:09 -04:00
|
|
|
|
|
|
|
for event in data:
|
|
|
|
# commonly used event info items
|
|
|
|
event_type = event['eventType']['name']
|
|
|
|
server_name = event['ownerEntity']['name']
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
if event['originEntity']:
|
2018-08-22 21:25:34 -04:00
|
|
|
origin_client_name = event['originEntity']['name']
|
2018-08-08 16:36:42 -04:00
|
|
|
origin_client_id = int(event['originEntity']['id'])
|
|
|
|
|
|
|
|
if event['targetEntity']:
|
2018-08-22 21:25:34 -04:00
|
|
|
target_client_name = event['targetEntity']['name'] or ''
|
2018-08-08 16:36:42 -04:00
|
|
|
target_client_id = int(event['targetEntity']['id']) or 0
|
|
|
|
|
2018-08-07 14:43:09 -04:00
|
|
|
webhook_item = WebhookParams()
|
|
|
|
webhook_item_embed = WebhookEmbed()
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
#todo: the following don't need to be generated every time, as it says the same
|
2018-08-07 14:43:09 -04:00
|
|
|
webhook_item.username = 'IW4MAdmin'
|
|
|
|
webhook_item.avatar_url = 'https://raidmax.org/IW4MAdmin/img/iw4adminicon-3.png'
|
|
|
|
webhook_item_embed.color = 31436
|
|
|
|
webhook_item_embed.url = base_url
|
|
|
|
webhook_item_embed.thumbnail = { 'url' : 'https://raidmax.org/IW4MAdmin/img/iw4adminicon-3.png' }
|
|
|
|
webhook_item.embeds.append(webhook_item_embed)
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# the server should be visible on all event types
|
|
|
|
server_field = WebhookField('Server', server_name)
|
|
|
|
webhook_item_embed.fields.append(server_field)
|
|
|
|
|
2018-08-07 14:43:09 -04:00
|
|
|
role_ids_string = ''
|
|
|
|
for id in notify_role_ids:
|
|
|
|
role_ids_string += '\r\n<@&{}>\r\n'.format(id)
|
|
|
|
|
|
|
|
if event_type == 'Report':
|
|
|
|
report_reason = event['extraInfo']
|
|
|
|
|
|
|
|
report_reason_field = WebhookField('Reason', report_reason)
|
2018-08-08 16:36:42 -04:00
|
|
|
reported_by_field = WebhookField('By', get_client_profile_markdown(origin_client_name, origin_client_id))
|
|
|
|
reported_field = WebhookField('Reported Player',get_client_profile_markdown(target_client_name, target_client_id))
|
2018-08-07 14:43:09 -04:00
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# add each fields to the embed
|
2018-08-07 14:43:09 -04:00
|
|
|
webhook_item_embed.title = 'Player Reported'
|
|
|
|
webhook_item_embed.fields.append(reported_field)
|
|
|
|
webhook_item_embed.fields.append(reported_by_field)
|
|
|
|
webhook_item_embed.fields.append(report_reason_field)
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
should_notify = True
|
|
|
|
|
|
|
|
elif event_type == 'Ban':
|
|
|
|
ban_reason = event['extraInfo']
|
|
|
|
ban_reason_field = WebhookField('Reason', ban_reason)
|
|
|
|
banned_by_field = WebhookField('By', get_client_profile_markdown(origin_client_name, origin_client_id))
|
|
|
|
banned_field = WebhookField('Banned Player', get_client_profile_markdown(target_client_name, target_client_id))
|
|
|
|
|
|
|
|
# add each fields to the embed
|
|
|
|
webhook_item_embed.title = 'Player Banned'
|
|
|
|
webhook_item_embed.fields.append(banned_field)
|
|
|
|
webhook_item_embed.fields.append(banned_by_field)
|
|
|
|
webhook_item_embed.fields.append(ban_reason_field)
|
|
|
|
|
|
|
|
should_notify = True
|
|
|
|
|
|
|
|
elif event_type == 'Connect':
|
|
|
|
connected_field = WebhookField('Connected Player', get_client_profile_markdown(origin_client_name, origin_client_id))
|
|
|
|
webhook_item_embed.title = 'Player Connected'
|
|
|
|
webhook_item_embed.fields.append(connected_field)
|
|
|
|
|
|
|
|
elif event_type == 'Disconnect':
|
|
|
|
disconnected_field = WebhookField('Disconnected Player', get_client_profile_markdown(origin_client_name, origin_client_id))
|
|
|
|
webhook_item_embed.title = 'Player Disconnected'
|
|
|
|
webhook_item_embed.fields.append(disconnected_field)
|
|
|
|
|
|
|
|
elif event_type == 'Say':
|
|
|
|
say_client_field = WebhookField('Player', get_client_profile_markdown(origin_client_name, origin_client_id))
|
2018-08-22 21:25:34 -04:00
|
|
|
message_field = WebhookField('Message', event['extraInfo'])
|
2018-08-08 16:36:42 -04:00
|
|
|
|
|
|
|
webhook_item_embed.title = 'Message From Player'
|
|
|
|
webhook_item_embed.fields.append(say_client_field)
|
|
|
|
webhook_item_embed.fields.append(message_field)
|
|
|
|
|
|
|
|
#if event_type == 'ScriptKill' or event_type == 'Kill':
|
|
|
|
# kill_str = '{} killed {}'.format(get_client_profile_markdown(origin_client_name, origin_client_id),
|
|
|
|
# get_client_profile_markdown(target_client_name, target_client_id))
|
|
|
|
# killed_field = WebhookField('Kill Information', kill_str)
|
|
|
|
# webhook_item_embed.title = 'Player Killed'
|
|
|
|
# webhook_item_embed.fields.append(killed_field)
|
|
|
|
|
|
|
|
#todo: handle other events
|
2018-08-07 14:43:09 -04:00
|
|
|
else:
|
|
|
|
continue
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
#make sure there's at least one group to notify
|
|
|
|
if len(notify_role_ids) > 0:
|
|
|
|
# unfortunately only the content can be used to to notify members in groups
|
|
|
|
#embed content shows the role but doesn't notify
|
|
|
|
webhook_item.content = role_ids_string
|
|
|
|
|
|
|
|
events.append({'item' : webhook_item, 'notify' : should_notify})
|
2018-08-07 14:43:09 -04:00
|
|
|
|
|
|
|
return events
|
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# sends the data to the webhook location
|
2018-08-07 14:43:09 -04:00
|
|
|
def execute_webhook(data):
|
|
|
|
for event in data:
|
2018-08-08 16:36:42 -04:00
|
|
|
event_json = event['item'].to_json()
|
|
|
|
url = None
|
|
|
|
|
|
|
|
if event['notify']:
|
|
|
|
url = discord_webhook_notification_url
|
2018-08-22 21:25:34 -04:00
|
|
|
else:
|
|
|
|
if len(discord_webhook_information_url) > 0:
|
|
|
|
url = discord_webhook_information_url
|
2018-08-08 16:36:42 -04:00
|
|
|
|
|
|
|
if url :
|
|
|
|
response = requests.post(url,
|
|
|
|
data=event_json,
|
|
|
|
headers={'Content-type' : 'application/json'})
|
2018-08-07 14:43:09 -04:00
|
|
|
|
2018-08-08 16:36:42 -04:00
|
|
|
# grabs new events and executes the webhook fo each valid event
|
2018-08-07 14:43:09 -04:00
|
|
|
def run():
|
2018-08-08 16:36:42 -04:00
|
|
|
failed_count = 1
|
|
|
|
print('starting polling for events')
|
2018-08-07 14:43:09 -04:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
new_events = get_new_events()
|
|
|
|
execute_webhook(new_events)
|
2018-08-22 21:25:34 -04:00
|
|
|
except Exception as e:
|
2018-08-08 16:36:42 -04:00
|
|
|
print('failed to get new events ({})'.format(failed_count))
|
2018-08-22 21:25:34 -04:00
|
|
|
print(e)
|
2018-08-08 16:36:42 -04:00
|
|
|
failed_count += 1
|
|
|
|
time.sleep(5)
|
2018-08-07 14:43:09 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
run()
|