update caddy installer with latest functions
[webi-installers/.git] / caddy / install.bash
1 # title: Caddy
2 # homepage: https://github.com/caddyserver/caddy
3 # tagline: Fast, multi-platform web server with automatic HTTPS
4 # description: |
5 # Caddy is an extensible server platform that uses TLS by default.
6 # examples: |
7 #   ```bash
8 #   caddy start
9 #   ```
10
11 set -e
12 set -u
13
14 pkg_cmd_name="caddy"
15 pkg_common_opt="$HOME/.local"
16
17 # just a junk file so that the version check always fails for non-current versions
18 pkg_new_opt="$HOME/.local/opt/caddy-doesntexist111"
19
20 pkg_get_current_version() {
21     # 'caddy version' has output in this format:
22     #       v2.1.0 h1:pQSaIJGFluFvu8KDGDODV8u4/QRED/OPyIR+MWYYse8=
23     # This trims it down to just the version number:
24     #       2.0.0
25     echo "$(caddy version 2>/dev/null | head -n 1 | cut -d ' ' -f1 | sed 's:^v::')"
26 }
27
28 pkg_format_cmd_version() {
29     # 'node v12.8.0' is the canonical version format for node
30     my_version="$1"
31     echo "$pkg_cmd_name v$my_version"
32 }
33
34 pkg_link_new_version() {
35     # caddy is just a single file, no directory linking to do
36 }
37
38 pkg_pre_install() {
39     # if selected version is installed, quit
40     webi_check
41     # will save to ~/Downloads/$WEBI_PKG_FILE by default
42     webi_download
43     # supported formats (.xz, .tar.*, .zip) will be extracted to $WEBI_TMP
44     webi_extract
45 }
46
47 pkg_install() {
48     pushd "$WEBI_TMP" 2>&1 >/dev/null
49
50         # rename the entire extracted folder to the new location
51         # (this will be "$HOME/.local/opt/node-v$WEBI_VERSION" by default)
52         mkdir -p "$pkg_common_bin"
53         mv ./"$pkg_cmd_name"* "$pkg_common_cmd"
54
55     popd 2>&1 >/dev/null
56 }
57
58 pkg_post_install() {
59     # just in case we add something in the future
60     pkg_link_new_version
61
62     # web_path_add is defined in webi/template.bash at https://github.com/webinstall/packages
63     # Adds "$HOME/.local/opt/node" to PATH
64     webi_path_add "$pkg_common_bin"
65 }