-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcompile.sh
executable file
·89 lines (76 loc) · 2.65 KB
/
compile.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
77
78
79
80
81
82
83
84
85
86
87
88
89
if [ $# -lt 1 ]
then
echo 'usage: ./compile.sh languagecode [design]'
exit 1
fi
LANGUAGES_DIR="adminer/adminer/lang"
TRANSLATIONS_FILE="warning-translations.csv"
CSS_FILE="adminer/adminer/static/default.css"
DESIGNS_DIR="adminer/designs"
COMPILE_CMD="php adminer/compile.php sqlite"
COMMIT_VERSION="v4.17.1"
step=1
if [ ! -d "adminer" ]
then
echo -e "\n$step. Load adminer's sources:\n"
((step+=1))
git clone --recurse-submodules https://github.com/vrana/adminer.git adminer
cd adminer
git reset --hard $COMMIT_VERSION
cd ..
echo -e "\n$step. Load plugin code:\n"
((step+=1))
# wget -P adminer/plugins/ https://raw.githubusercontent.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/master/fc-sqlite-connection-without-credentials.php
curl -o adminer/plugins/fc-sqlite-connection-without-credentials.php https://raw.githubusercontent.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/master/fc-sqlite-connection-without-credentials.php
echo -e "\n$step. Adding the plugin to the sources\n"
((step+=1))
cp adminer/adminer/include/bootstrap.inc.php adminer/adminer/include/vrana-bootstrap.inc.php
cat << "EOPHP" >> adminer/adminer/include/fc-bootstrap.inc.php
<?php
$_GET['sqlite']=''; // needed for 4.8.1
include "../plugins/plugin.php";
include "../plugins/fc-sqlite-connection-without-credentials.php";
function adminer_object() {
$plugins = array(new FCSqliteConnectionWithoutCredentials());
return new AdminerPlugin($plugins);
}
EOPHP
cat adminer/adminer/include/fc-bootstrap.inc.php adminer/adminer/include/vrana-bootstrap.inc.php > adminer/adminer/include/bootstrap.inc.php
sed -i '2,$s/<?php$//' adminer/adminer/include/bootstrap.inc.php
fi
echo -e "\n$step. Search warning translation\n"
((step+=1))
language=$1
translation=$(grep ^$language, $TRANSLATIONS_FILE | cut -d',' -f2 | tr -d '\n')
if [ "$translation" != "" ]
then
echo $translation
cp $LANGUAGES_DIR/$language.inc.php $LANGUAGES_DIR/$language.inc.php.backup
sed -i 's/);//' $LANGUAGES_DIR/$language.inc.php
cat << EOPHP >> $LANGUAGES_DIR/$language.inc.php
'Warning: don\'t use it in a production environment!' => '$translation',
);
EOPHP
fi
if [ $# -eq 2 ]
then
design=$2
echo -e "\n$step. Set the design: $design\n"
((step+=1))
cp $CSS_FILE $CSS_FILE.backup
cat $CSS_FILE.backup $DESIGNS_DIR/$design/adminer.css > $CSS_FILE
fi
echo -e "\n$step. Compile in language: $language\n"
((step+=1))
$COMPILE_CMD $language 2> /dev/null
echo -e "\n$step. Clean the sources\n"
((step+=1))
if [ "$translation" != "" ]
then
cp $LANGUAGES_DIR/$language.inc.php.backup $LANGUAGES_DIR/$language.inc.php
fi
if [ $# -eq 2 ]
then
cp $CSS_FILE.backup $CSS_FILE
fi
echo -e "\n$step. Voilà!\n"