-
Notifications
You must be signed in to change notification settings - Fork 4
/
buildnpush2iris.sh
76 lines (65 loc) · 2.32 KB
/
buildnpush2iris.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
# Help
Help()
{
# Display Help
echo "This script builds the DFIR-IRIS module of the current directory and installs it to DFIR-IRIS. If you run it for the first time or change something in the module configuration template make sure to run the -a switch."
echo
echo "Syntax: ./buildnpush2iris [-a|h]"
echo "options:"
echo "a Also install the module to the iris-web_app_1 container. Only required on initial install or when changes to config template were made."
echo "h Print this Help."
echo
}
Run()
{
echo "[BUILDnPUSH2IRIS] Starting the build and push process.."
SEARCH_DIR='./dist'
get_recent_file () {
FILE=$(ls -Art1 ${SEARCH_DIR} | tail -n 1)
if [ ! -f ${FILE} ]; then
SEARCH_DIR="${SEARCH_DIR}/${FILE}"
get_recent_file
fi
echo $FILE
exit
}
python3.9 setup.py bdist_wheel
latest=$(get_recent_file)
module=${latest#"./dist/"}
echo "[BUILDnPUSH2IRIS] Found latest module file: $latest"
echo "[BUILDnPUSH2IRIS] Copy module file to worker container.."
docker cp $latest iriswebapp_worker:/iriswebapp/dependencies/$module
echo "[BUILDnPUSH2IRIS] Installing module in worker container.."
docker exec -it iriswebapp_worker /bin/sh -c "pip3 install dependencies/$module --force-reinstall"
echo "[BUILDnPUSH2IRIS] Restarting worker container.."
docker restart iriswebapp_worker
if [ "$a_Flag" = true ] ; then
echo "[BUILDnPUSH2IRIS] Copy module file to app container.."
docker cp $latest iriswebapp_app:/iriswebapp/dependencies/$module
echo "[BUILDnPUSH2IRIS] Installing module in app container.."
docker exec -it iriswebapp_app /bin/sh -c "pip3 install dependencies/$module --force-reinstall"
echo "[BUILDnPUSH2IRIS] Restarting app container.."
docker restart iriswebapp_app
fi
echo "[BUILDnPUSH2IRIS] Completed!"
}
a_Flag=false
while getopts ":ha" option; do
case $option in
h) # display Help
Help
exit;;
a) # Enter a name
echo "[BUILDnPUSH2IRIS] Pushing to Worker and App container!"
a_Flag=true
Run
exit;;
\?) # Invalid option
echo "ERROR: Invalid option"
exit;;
esac
done
echo "[BUILDnPUSH2IRIS] Pushing to Worker container only!"
Run
exit