update sdnc-web image
[sdnc/oam.git] / installation / sdnc-web / src / main / scripts / configure.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # ONAP : ccsdk distribution web
6 # ================================================================================
7 # Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
8 # All rights reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #      http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 ###
23
24 # Comment listening on 8080 in nginx.conf as we don't want nginx to listen on any port other than SDNR
25 sed -i 's/listen/\#listen/g' /opt/bitnami/nginx/conf/nginx.conf
26
27 update_index_html() {
28  
29     # Backup the index.html file
30     cp /opt/bitnami/nginx/html/odlux/index.html /opt/bitnami/nginx/html/odlux/index.html.backup
31     sed -z 's/<script>[^<]*<\/script>/<script>\n    \/\/ run the application \n  require\(\[\"connectApp\",\"faultApp\",\"maintenanceApp\",\"configurationApp\",\"performanceHistoryApp\",\"inventoryApp\",\"eventLogApp\",\"mediatorApp\",\"networkMapApp\",\"linkCalculationApp\",\"helpApp\",\"run\"\], function \(connectApp,faultApp,maintenanceApp,configurationApp,performanceHistoryApp,inventoryApp,eventLogApp,mediatorApp,networkMapApp,linkCalculationApp,helpApp,run\) \{ \n    connectApp.register\(\); \n  faultApp.register\(\);\n    maintenanceApp.register\(\); \n     configurationApp.register\(\);\n    performanceHistoryApp.register\(\); \n    inventoryApp.register\(\);\n    eventLogApp.register\(\);\n   mediatorApp.register\(\);\n   networkMapApp.register\(\);\n   linkCalculationApp.register\(\);\n     helpApp.register\(\);\n      run.runApplication();\n    \}\);\n  <\/script>/' -i /opt/bitnami/nginx/html/odlux/index.html 
32
33 }
34
35 update_nginx_site_conf() {
36
37     if [ "$WEBPROTOCOL" == "HTTPS" ]
38     then
39         FN=/opt/bitnami/nginx/conf/server_blocks/https_site.conf
40         rm /opt/bitnami/nginx/conf/server_blocks/http_site.conf
41         
42         sed -i 's|SSL_CERT_DIR|'$SSL_CERT_DIR'|g' $FN
43         sed -i 's|\bSSL_CERTIFICATE\b|'$SSL_CERTIFICATE'|g' $FN
44         sed -i 's|\bSSL_CERTIFICATE_KEY\b|'$SSL_CERTIFICATE_KEY'|g' $FN
45
46     elif [ "$WEBPROTOCOL" == "HTTP" ]
47     then
48         FN=/opt/bitnami/nginx/conf/server_blocks/http_site.conf
49         rm /opt/bitnami/nginx/conf/server_blocks/https_site.conf
50         fi
51
52     if [ -z "$FN" ]; then
53         echo "unknown env WEBPROTOCOL: $WEBPROTOCOL"
54         exit 1
55     fi
56
57     # replace needed parameters
58     sed -i 's|WEBPORT|'$WEBPORT'|g' $FN
59     sed -i 's|SDNRPROTOCOL|'$SDNRPROTOCOL'|g' $FN
60     sed -i 's|SDNRHOST|'$SDNRHOST'|g' $FN
61     sed -i 's|SDNRPORT|'$SDNRPORT'|g' $FN
62
63     # handle optional parameters
64     if [ -z "$TRPCEURL" ]; then
65         echo "transportPCE forwarding disabled"
66         sed -i 's|proxy_pass TRPCEURL/$1;|return 404;|g' $FN
67     
68     else
69         sed -i 's|TRPCEURL|'$TRPCEURL'|g' $FN
70     fi
71     if [ -z "$TOPOURL" ]; then
72         echo "topology api forwarding disabled"
73         sed -i 's|proxy_pass TOPOURL/$1;|return 404;|g' $FN
74     else
75         sed -i 's|TOPOURL|'$TOPOURL'|g' $FN
76     fi
77     if [ -z "$TILEURL" ]; then
78         echo "tile server forwarding disabled"
79         sed -i 's|proxy_pass TILEURL/$1;|return 404;|g' $FN
80     else
81         sed -i 's|TILEURL|'$TILEURL'|g' $FN
82     fi
83
84 }
85
86 update_index_html
87
88 update_nginx_site_conf