2020-07-23 05:47:11 +05:30
|
|
|
# Function to install blackfire extension.
|
|
|
|
add_blackfire() {
|
|
|
|
extension=$1
|
|
|
|
version=${version:?}
|
|
|
|
no_dot_version=${version/./}
|
|
|
|
platform=$(uname -s | tr '[:upper:]' '[:lower:]')
|
|
|
|
extension_version=$(echo "$extension" | cut -d '-' -f 2)
|
|
|
|
blackfire_ini_file="${scan_dir:?}/50-blackfire.ini"
|
|
|
|
if [ ! -e "${ext_dir:?}/blackfire.so" ]; then
|
|
|
|
if [ "$extension_version" = "blackfire" ]; then
|
|
|
|
extension_version=$(curl "${curl_opts[@]:?}" https://blackfire.io/docs/up-and-running/update | grep 'class="version"' | sed -e "s/ //g" | sed -n '3,3p' | cut -d '>' -f 2 | cut -d '<' -f 1)
|
|
|
|
fi
|
|
|
|
sudo curl -o "${ext_dir:?}/blackfire.so" "${curl_opts[@]:?}" https://packages.blackfire.io/binaries/blackfire-php/"$extension_version"/blackfire-php-"$platform"_amd64-php-"$no_dot_version".so >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
echo "extension=blackfire.so" | sudo tee -a "$blackfire_ini_file" >/dev/null 2>&1
|
|
|
|
add_extension_log "$extension-$extension_version" "Installed and enabled"
|
|
|
|
}
|