install 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. ynh_clean_setup () {
  13. ### Remove this function if there's nothing to clean before calling the remove script.
  14. true
  15. }
  16. # Exit if an error occurs during the execution of the script
  17. ynh_abort_if_errors
  18. #=================================================
  19. # RETRIEVE ARGUMENTS FROM THE MANIFEST
  20. #=================================================
  21. domain=$YNH_APP_ARG_DOMAIN
  22. path_url=$YNH_APP_ARG_PATH
  23. admin=$YNH_APP_ARG_ADMIN
  24. is_public=$YNH_APP_ARG_IS_PUBLIC
  25. language=$YNH_APP_ARG_LANGUAGE
  26. password=$YNH_APP_ARG_PASSWORD
  27. ### If it's a multi-instance app, meaning it can be installed several times independently
  28. ### The id of the app as stated in the manifest is available as $YNH_APP_ID
  29. ### The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
  30. ### The app instance name is available as $YNH_APP_INSTANCE_NAME
  31. ### - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
  32. ### - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
  33. ### - ynhexample__{N} for the subsequent installations, with N=3,4, ...
  34. ### The app instance name is probably what interests you most, since this is
  35. ### guaranteed to be unique. This is a good unique identifier to define installation path,
  36. ### db names, ...
  37. app=$YNH_APP_INSTANCE_NAME
  38. #=================================================
  39. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  40. #=================================================
  41. ### In case of an app wich use directly nginx as webserver wich is written in html, php the final path is "/var/www/$app"
  42. ### For the app which has an internal webserver or which use uwsgi wich is written in python, java, go, ...
  43. ### the final path is "/opt/yunohost/$app"
  44. final_path=/var/www/$app
  45. test ! -e "$final_path" || ynh_die "This path already contains a folder"
  46. # Normalize the url path syntax
  47. path_url=$(ynh_normalize_url_path $path_url)
  48. # Check web path availability
  49. ynh_webpath_available $domain $path_url
  50. # Register (book) web path
  51. ynh_webpath_register $app $domain $path_url
  52. #=================================================
  53. # STORE SETTINGS FROM MANIFEST
  54. #=================================================
  55. ynh_app_setting_set $app domain $domain
  56. ynh_app_setting_set $app path $path_url
  57. ynh_app_setting_set $app admin $admin
  58. ynh_app_setting_set $app is_public $is_public
  59. ynh_app_setting_set $app language $language
  60. #=================================================
  61. # STANDARD MODIFICATIONS
  62. #=================================================
  63. # FIND AND OPEN A PORT
  64. #=================================================
  65. ### Use these lines if you have to open a port for the application
  66. ### `ynh_find_port` will find the first available port starting from the given port.
  67. ### If you're not using these lines:
  68. ### - Remove the section "CLOSE A PORT" in the remove script
  69. # Find a free port
  70. port=$(ynh_find_port 8095)
  71. # Open this port
  72. yunohost firewall allow --no-upnp TCP $port 2>&1
  73. ynh_app_setting_set $app port $port
  74. #=================================================
  75. # INSTALL DEPENDENCIES
  76. #=================================================
  77. ### `ynh_install_app_dependencies` allows you to add any "apt" dependencies to the package.
  78. ### Those deb packages will be installed as dependencies of this package.
  79. ### If you're not using this helper:
  80. ### - Remove the section "REMOVE DEPENDENCIES" in the remove script
  81. ### - As well as the section "REINSTALL DEPENDENCIES" in the restore script
  82. ### - And the section "UPGRADE DEPENDENCIES" in the upgrade script
  83. ynh_install_app_dependencies deb1 deb2
  84. #=================================================
  85. # CREATE A MYSQL DATABASE
  86. #=================================================
  87. ### Use these lines if you need a database for the application.
  88. ### `ynh_mysql_setup_db` will create a database, an associated user and a ramdom password.
  89. ### The password will be stored as 'mysqlpwd' into the app settings,
  90. ### and will be available as $db_pwd
  91. ### If you're not using these lines:
  92. ### - Remove the section "BACKUP THE MYSQL DATABASE" in the backup script
  93. ### - Remove also the section "REMOVE THE MYSQL DATABASE" in the remove script
  94. ### - As well as the section "RESTORE THE MYSQL DATABASE" in the restore script
  95. db_name=$(ynh_sanitize_dbid $app)
  96. ynh_app_setting_set $app db_name $db_name
  97. ynh_mysql_setup_db $db_name $db_name
  98. #=================================================
  99. # DOWNLOAD, CHECK AND UNPACK SOURCE
  100. #=================================================
  101. ### `ynh_setup_source` is used to install an app from a zip or tar.gz file,
  102. ### downloaded from an upstream source, like a git repository.
  103. ### `ynh_setup_source` use the file conf/app.src
  104. ynh_app_setting_set $app final_path $final_path
  105. # Download, check integrity, uncompress and patch the source from app.src
  106. ynh_setup_source "$final_path"
  107. #=================================================
  108. # NGINX CONFIGURATION
  109. #=================================================
  110. ### `ynh_add_nginx_config` will use the file conf/nginx.conf
  111. # Create a dedicated nginx config
  112. ynh_add_nginx_config
  113. if [ "$path_url" != "/" ]
  114. then
  115. ynh_replace_string "^#sub_path_only" "" "/etc/nginx/conf.d/$domain.d/$app.conf"
  116. fi
  117. ynh_store_file_checksum "/etc/nginx/conf.d/$domain.d/$app.conf"
  118. #=================================================
  119. # CREATE DEDICATED USER
  120. #=================================================
  121. # Create a system user
  122. ynh_system_user_create $app
  123. #=================================================
  124. # PHP-FPM CONFIGURATION
  125. #=================================================
  126. ### `ynh_add_fpm_config` is used to set up a PHP config.
  127. ### You can remove it if your app doesn't use PHP.
  128. ### `ynh_add_fpm_config` will use the files conf/php-fpm.conf and conf/php-fpm.ini
  129. ### If you're not using these lines:
  130. ### - You can remove these files in conf/.
  131. ### - Remove the section "BACKUP THE PHP-FPM CONFIGURATION" in the backup script
  132. ### - Remove also the section "REMOVE PHP-FPM CONFIGURATION" in the remove script
  133. ### - As well as the section "RESTORE THE PHP-FPM CONFIGURATION" in the restore script
  134. ### With the reload at the end of the script.
  135. ### - And the section "PHP-FPM CONFIGURATION" in the upgrade script
  136. # Create a dedicated php-fpm config
  137. ynh_add_fpm_config
  138. #=================================================
  139. # SPECIFIC SETUP
  140. #=================================================
  141. # ...
  142. #=================================================
  143. #=================================================
  144. # SETUP SYSTEMD
  145. #=================================================
  146. ### `ynh_systemd_config` is used to configure a systemd script for an app.
  147. ### It can be used for apps that use sysvinit (with adaptation) or systemd.
  148. ### Have a look at the app to be sure this app needs a systemd script.
  149. ### `ynh_systemd_config` will use the file conf/systemd.service
  150. ### If you're not using these lines:
  151. ### - You can remove those files in conf/.
  152. ### - Remove the section "BACKUP SYSTEMD" in the backup script
  153. ### - Remove also the section "STOP AND REMOVE SERVICE" in the remove script
  154. ### - As well as the section "RESTORE SYSTEMD" in the restore script
  155. ### - And the section "SETUP SYSTEMD" in the upgrade script
  156. # Create a dedicated systemd config
  157. ynh_add_systemd_config
  158. #=================================================
  159. # SETUP APPLICATION WITH CURL
  160. #=================================================
  161. ### Use these lines only if the app installation needs to be finalized through
  162. ### web forms. We generally don't want to ask the final user,
  163. ### so we're going to use curl to automatically fill the fields and submit the
  164. ### forms.
  165. # Set right permissions for curl install
  166. chown -R $app: $final_path
  167. # Set the app as temporarily public for curl call
  168. ynh_app_setting_set $app skipped_uris "/"
  169. # Reload SSOwat config
  170. yunohost app ssowatconf
  171. # Reload Nginx
  172. systemctl reload nginx
  173. # Installation with curl
  174. ynh_local_curl "/INSTALL_PATH" "key1=value1" "key2=value2" "key3=value3"
  175. # Remove the public access
  176. if [ $is_public -eq 0 ]
  177. then
  178. ynh_app_setting_delete $app skipped_uris
  179. fi
  180. #=================================================
  181. # MODIFY A CONFIG FILE
  182. #=================================================
  183. ### `ynh_replace_string` is used to replace a string in a file.
  184. ### (It's compatible with sed regular expressions syntax)
  185. ynh_replace_string "match_string" "replace_string" "$final_path/CONFIG_FILE"
  186. #=================================================
  187. # STORE THE CONFIG FILE CHECKSUM
  188. #=================================================
  189. ### `ynh_store_file_checksum` is used to store the checksum of a file.
  190. ### That way, during the upgrade script, by using `ynh_backup_if_checksum_is_different`,
  191. ### you can make a backup of this file before modifying it again if the admin had modified it.
  192. # Calculate and store the config file checksum into the app settings
  193. ynh_store_file_checksum "$final_path/CONFIG_FILE"
  194. #=================================================
  195. # GENERIC FINALIZATION
  196. #=================================================
  197. # SECURE FILES AND DIRECTORIES
  198. #=================================================
  199. ### For security reason, any app should set the permissions to root: before anything else.
  200. ### Then, if write authorization is needed, any access should be given only to directories
  201. ### that really need such authorization.
  202. # Set permissions to app files
  203. chown -R root: $final_path
  204. #=================================================
  205. # SETUP LOGROTATE
  206. #=================================================
  207. ### `ynh_use_logrotate` is used to configure a logrotate configuration for the logs of this app.
  208. ### Use this helper only if there is effectively a log file for this app.
  209. ### If you're not using this helper:
  210. ### - Remove the section "BACKUP LOGROTATE" in the backup script
  211. ### - Remove also the section "REMOVE LOGROTATE CONFIGURATION" in the remove script
  212. ### - As well as the section "RESTORE THE LOGROTATE CONFIGURATION" in the restore script
  213. ### - And the section "SETUP LOGROTATE" in the upgrade script
  214. # Use logrotate to manage application logfile(s)
  215. ynh_use_logrotate
  216. #=================================================
  217. # ADVERTISE SERVICE IN ADMIN PANEL
  218. #=================================================
  219. ### `yunohost service add` is a CLI yunohost command to add a service in the admin panel.
  220. ### You'll find the service in the 'services' section of YunoHost admin panel.
  221. ### This CLI command would be useless if the app does not have any services (systemd or sysvinit)
  222. ### If you're not using these lines:
  223. ### - You can remove these files in conf/.
  224. ### - Remove the section "REMOVE SERVICE FROM ADMIN PANEL" in the remove script
  225. ### - As well as the section ADVERTISE SERVICE IN ADMIN PANEL" in the restore script
  226. yunohost service add NAME_INIT.D --log "/var/log/FILE.log"
  227. #=================================================
  228. # SETUP SSOWAT
  229. #=================================================
  230. # Make app public if necessary
  231. if [ $is_public -eq 1 ]
  232. then
  233. # unprotected_uris allows SSO credentials to be passed anyway.
  234. ynh_app_setting_set $app unprotected_uris "/"
  235. fi
  236. #=================================================
  237. # RELOAD NGINX
  238. #=================================================
  239. systemctl reload nginx