forked from microsoft/azure-redcap-paas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postbuild.sh
54 lines (44 loc) · 1.56 KB
/
postbuild.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
#!/bin/bash
# Copyright (c) Microsoft Corporation
# All rights reserved.
#
# MIT License
echo "hello from postbuild.sh"
####################################################################################
#
# Install some utilities for REDCap to work properly
#
####################################################################################
apt-get install -y python3 python3-pip
####################################################################################
#
# Install Python3 modules used to scrape REDCap installation SQL script
#
####################################################################################
python3 -m pip install beautifulsoup4
python3 -m pip install requests
####################################################################################
#
# Scrape the install.php page for SQL commands to execute
#
####################################################################################
cat << EOF > scraper.py
import requests
from bs4 import BeautifulSoup
page = requests.post("https://$WEBSITE_HOSTNAME/install.php")
soup = BeautifulSoup(page.content, "html.parser")
data = soup.find('textarea').text
with open("/home/install.sql", "w") as out:
for i in range(0, len(data)):
try:
out.write(data[i])
except Exception:
1+1
EOF
python3 scraper.py
####################################################################################
#
# Copy the install.sh file to the /home directory
#
####################################################################################
cp /home/site/repository/install.sh /home/install.sh