mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:40:59 +08:00
112 lines
3.7 KiB
Bash
112 lines
3.7 KiB
Bash
#!/bin/bash
|
||
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH
|
||
|
||
: '
|
||
Copyright (C) 2022 - now HaoZi Technology Co., Ltd.
|
||
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU Affero General Public License as published
|
||
by the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU Affero General Public License for more details.
|
||
|
||
You should have received a copy of the GNU Affero General Public License
|
||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
'
|
||
|
||
HR="+----------------------------------------------------"
|
||
OS=$(source /etc/os-release && { [[ "$ID" == "debian" ]] && echo "debian"; } || { [[ "$ID" == "centos" ]] || [[ "$ID" == "rhel" ]] || [[ "$ID" == "rocky" ]] || [[ "$ID" == "almalinux" ]] && echo "centos"; } || echo "unknown")
|
||
|
||
downloadUrl="https://jihulab.com/haozi-team/download/-/raw/main/panel/php_extensions"
|
||
action="$1"
|
||
phpVersion="$2"
|
||
imagickVersion="3.7.0"
|
||
|
||
Install() {
|
||
# 检查是否已经安装
|
||
isInstall=$(cat /www/server/php/${phpVersion}/etc/php.ini | grep '^extension=imagick$')
|
||
if [ "${isInstall}" != "" ]; then
|
||
echo -e $HR
|
||
echo "PHP-${phpVersion} 已安装 imagick"
|
||
exit 1
|
||
fi
|
||
|
||
# 安装依赖
|
||
if [ "${OS}" == "centos" ]; then
|
||
dnf install ImageMagick ImageMagick-devel -y
|
||
elif [ "${OS}" == "debian" ]; then
|
||
apt-get install imagemagick libmagickwand-dev -y
|
||
else
|
||
echo -e $HR
|
||
echo "错误:耗子Linux面板不支持该系统"
|
||
exit 1
|
||
fi
|
||
|
||
cd /www/server/php/${phpVersion}/src/ext
|
||
rm -rf imagick
|
||
rm -rf imagick-${imagickVersion}.tar.gz
|
||
wget -T 60 -t 3 -O imagick-${imagickVersion}.tar.gz ${downloadUrl}/imagick-${imagickVersion}.tar.gz
|
||
wget -T 20 -t 3 -O imagick-${imagickVersion}.tar.gz.checksum.txt ${downloadUrl}/imagick-${imagickVersion}.tar.gz.checksum.txt
|
||
|
||
if ! sha256sum --status -c imagick-${imagickVersion}.tar.gz.checksum.txt; then
|
||
echo -e $HR
|
||
echo "错误:PHP-${phpVersion} imagick 源码 checksum 校验失败,文件可能被篡改或不完整,已终止操作"
|
||
exit 1
|
||
fi
|
||
|
||
tar -zxvf imagick-${imagickVersion}.tar.gz
|
||
rm -f imagick-${imagickVersion}.tar.gz
|
||
rm -f imagick-${imagickVersion}.tar.gz.checksum.txt
|
||
mv imagick-${imagickVersion} imagick
|
||
cd imagick
|
||
/www/server/php/${phpVersion}/bin/phpize
|
||
./configure --with-php-config=/www/server/php/${phpVersion}/bin/php-config
|
||
make
|
||
if [ "$?" != "0" ]; then
|
||
echo -e $HR
|
||
echo "PHP-${phpVersion} imagick 编译失败"
|
||
exit 1
|
||
fi
|
||
make install
|
||
if [ "$?" != "0" ]; then
|
||
echo -e $HR
|
||
echo "PHP-${phpVersion} imagick 安装失败"
|
||
exit 1
|
||
fi
|
||
|
||
sed -i '/;haozi/a\extension=imagick' /www/server/php/${phpVersion}/etc/php.ini
|
||
|
||
# 重载PHP
|
||
systemctl reload php-fpm-${phpVersion}.service
|
||
echo -e $HR
|
||
echo "PHP-${phpVersion} imagick 安装成功"
|
||
}
|
||
|
||
Uninstall() {
|
||
# 检查是否已经安装
|
||
isInstall=$(cat /www/server/php/${phpVersion}/etc/php.ini | grep '^extension=imagick$')
|
||
if [ "${isInstall}" == "" ]; then
|
||
echo -e $HR
|
||
echo "PHP-${phpVersion} 未安装 imagick"
|
||
exit 1
|
||
fi
|
||
|
||
sed -i '/extension=imagick/d' /www/server/php/${phpVersion}/etc/php.ini
|
||
|
||
# 重载PHP
|
||
systemctl reload php-fpm-${phpVersion}.service
|
||
echo -e $HR
|
||
echo "PHP-${phpVersion} imagick 卸载成功"
|
||
}
|
||
|
||
if [ "$action" == 'install' ]; then
|
||
Install
|
||
fi
|
||
if [ "$action" == 'uninstall' ]; then
|
||
Uninstall
|
||
fi
|