-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chg: [retro hunt + update] add ocr retro hunt + new update
- Loading branch information
Showing
6 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#!/usr/bin/env python3 | ||
# -*-coding:UTF-8 -* | ||
|
||
import os | ||
import sys | ||
|
||
sys.path.append(os.environ['AIL_HOME']) | ||
################################## | ||
# Import Project packages | ||
################################## | ||
from update.bin.ail_updater import AIL_Updater | ||
from lib import ail_users | ||
from lib import crawlers | ||
from lib import Investigations | ||
from lib import Tracker | ||
|
||
def _fix_user_lowercase(): | ||
r_tracking = Investigations.r_tracking | ||
r_tracker = Tracker.r_tracker | ||
r_crawler = crawlers.r_crawler | ||
|
||
for user_id in ail_users.get_users(): | ||
l_user_id = user_id.lower() | ||
if user_id != l_user_id: | ||
print(f'Updating {user_id} ...') | ||
ail_users.kill_session_user(user_id) | ||
|
||
# Investigations | ||
for investigation_uuid in Investigations.get_user_all_investigations(user_id): | ||
r_tracking.srem(f'investigations:user:{user_id}', investigation_uuid) | ||
r_tracking.sadd(f'investigations:user:{l_user_id}', investigation_uuid) | ||
r_tracking.hset(f'investigations:data:{investigation_uuid}', 'creator_user', l_user_id) | ||
|
||
# Trackers | ||
for tracker_uuid in Tracker.get_user_trackers(user_id): | ||
tracker = Tracker.Tracker(tracker_uuid) | ||
tracker_type = tracker.get_type() | ||
|
||
r_tracker.rename(f'user:tracker:{user_id}:{tracker_type}', f'user:tracker:{l_user_id}:{tracker_type}') | ||
r_tracker.rename(f'user:tracker:{user_id}', f'user:tracker:{l_user_id}') | ||
|
||
# creator | ||
r_tracker.hset(f'tracker:{tracker_uuid}', 'user_id', l_user_id) | ||
|
||
try: | ||
r_tracker.rename(f'trackers:user:{user_id}', f'trackers:user:{l_user_id}') | ||
except Exception: | ||
pass | ||
|
||
# Cookiejar | ||
for cookiejar_uuid in crawlers.get_cookiejars_user(user_id): | ||
cookiejar = crawlers.Cookiejar(cookiejar_uuid) | ||
# creator | ||
cookiejar._set_user(l_user_id) | ||
|
||
try: | ||
r_crawler.rename(f'cookiejars:user:{user_id}', f'cookiejars:user:{l_user_id}') | ||
except Exception: | ||
pass | ||
|
||
# ail_user | ||
ail_users._fix_user_lowercase(user_id) | ||
|
||
|
||
class Updater(AIL_Updater): | ||
"""default Updater.""" | ||
|
||
def __init__(self, version): | ||
super(Updater, self).__init__(version) | ||
|
||
|
||
if __name__ == '__main__': | ||
_fix_user_lowercase() | ||
# updater = Updater('v6.0.1') | ||
# updater.run_update() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/bash | ||
|
||
[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; | ||
[ -z "$AIL_REDIS" ] && echo "Needs the env var AIL_REDIS. Run the script from the virtual environment." && exit 1; | ||
[ -z "$AIL_BIN" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1; | ||
[ -z "$AIL_FLASK" ] && echo "Needs the env var AIL_FLASK. Run the script from the virtual environment." && exit 1; | ||
|
||
export PATH=$AIL_HOME:$PATH | ||
export PATH=$AIL_REDIS:$PATH | ||
export PATH=$AIL_BIN:$PATH | ||
export PATH=$AIL_FLASK:$PATH | ||
|
||
GREEN="\\033[1;32m" | ||
DEFAULT="\\033[0;39m" | ||
|
||
echo -e $GREEN"Shutting down AIL ..."$DEFAULT | ||
bash ${AIL_BIN}/LAUNCH.sh -ks | ||
wait | ||
|
||
echo -e $GREEN"Updating UI resources..."$DEFAULT | ||
bash ${AIL_BIN}/LAUNCH.sh -ut | ||
wait | ||
|
||
echo -e $GREEN"Updating python requirement..."$DEFAULT | ||
pip install -U flask-sock | ||
|
||
# SUBMODULES # | ||
git submodule update | ||
|
||
echo "" | ||
echo -e $GREEN"Updating AIL VERSION ..."$DEFAULT | ||
echo "" | ||
python ${AIL_HOME}/update/v6.0/Update.py | ||
wait | ||
echo "" | ||
echo "" | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters