Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: [username] jabber support #139

Merged
merged 2 commits into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions bin/import/ail_json_importer/Ail_feeder_jabber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/usr/bin/env python3
# -*-coding:UTF-8 -*
"""
The JSON Receiver Module
================

Receiver Jabber Json Items

"""
import os
import json
import sys
import time
import datetime

sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib'))
import item_basic
import Username

sys.path.append(os.path.join(os.environ['AIL_BIN'], 'import', 'ail_json_importer'))
from Default_json import Default_json

class Ail_feeder_jabber(Default_json):
"""Jabber Feeder functions"""

def __init__(self, name, json_item):
super().__init__(name, json_item)

def get_feeder_name(self):
return 'jabber'

# define item id
def get_item_id(self):
item_date = time.strptime(self.json_item['meta']['jabber:ts'], "%Y-%m-%dT%H:%M:%S.%f")
item_date_str = time.strftime("%Y/%m/%d", item_date)
item_id = str(self.json_item['meta']['jabber:id'])
return os.path.join('jabber', item_date_str, item_id) + '.gz'

def process_json_meta(self, process, item_id):
'''
Process JSON meta filed.
'''
jabber_id = str(self.json_item['meta']['jabber:id'])
item_basic.add_map_obj_id_item_id(jabber_id, item_id, 'jabber_id')
to = str(self.json_item['meta']['jabber:to'])
fr = str(self.json_item['meta']['jabber:from'])
item_date = item_basic.get_item_date(item_id)
Username.save_item_correlation('jabber', to, item_id, item_date)
Username.save_item_correlation('jabber', fr, item_id, item_date)
return None
4 changes: 4 additions & 0 deletions bin/lib/Correlate_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@ def get_correlation_node_icon(correlation_name, correlation_type=None, value=Non
elif correlation_type == 'twitter':
icon_class = 'fab'
icon_text = '\uf099'
elif correlation_type == 'jabber':
icon_class = 'fa'
icon_text = '\uf007'
else:
icon_class = 'fa'
icon_text = '\uf007'

elif correlation_name == 'decoded':
Expand Down
2 changes: 1 addition & 1 deletion bin/lib/Username.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
r_serv_crawler = config_loader.get_redis_conn("ARDB_Onion")
config_loader = None

correlation = Correlation.Correlation('username', ['telegram', 'twitter'])
correlation = Correlation.Correlation('username', ['telegram', 'twitter', 'jabber'])

def save_item_correlation(subtype, username, item_id, item_date):
correlation.save_item_correlation(subtype, username, item_id, item_date)
6 changes: 4 additions & 2 deletions bin/lib/item_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,17 @@ def add_item_parent(parent_item_id, item_id):
#### UNKNOW SECTION ####

def get_obj_id_item_id(parent_type, parent_id):
all_parents_type = ['twitter_id']
all_parents_type = ['twitter_id', 'jabber_id']
if parent_type in all_parents_type:
return r_serv_metadata.hget('map:twitter_id:item_id', parent_id)
return r_serv_metadata.hget('map:{}:item_id'.format(parent_type), parent_id)
else:
return None

def add_map_obj_id_item_id(obj_id, item_id, obj_type):
if obj_type == 'twitter_id':
r_serv_metadata.hset('map:twitter_id:item_id', obj_id, item_id)
if obj_type == 'jabber_id':
r_serv_metadata.hset('map:jabber_id:item_id', obj_id, item_id)

# delete twitter id

Expand Down
6 changes: 5 additions & 1 deletion var/www/modules/hashDecoded/Flask_hashDecoded.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
## TODO: put me in option
all_cryptocurrency = ['bitcoin', 'ethereum', 'bitcoin-cash', 'litecoin', 'monero', 'zcash', 'dash']
all_pgpdump = ['key', 'name', 'mail']
all_username = ['telegram', 'twitter']
all_username = ['telegram', 'twitter', 'jabber']

# ============ FUNCTIONS ============

Expand Down Expand Up @@ -130,6 +130,8 @@ def get_icon(correlation_type, type_id):
icon_text = 'fab fa-telegram-plane'
elif type_id == 'twitter':
icon_text = 'fab fa-twitter'
elif type_id == 'jabber':
icon_text = 'fas fa-user'
return icon_text

def get_icon_text(correlation_type, type_id):
Expand Down Expand Up @@ -157,6 +159,8 @@ def get_icon_text(correlation_type, type_id):
icon_text = '\uf2c6'
elif type_id == 'twitter':
icon_text = '\uf099'
elif type_id == 'jabber':
icon_text = '\uf007'
return icon_text

def get_all_types_id(correlation_type):
Expand Down
Loading