aliyun-oss-wordpress/aliyun-oss-wordpress.php

843 lines
32 KiB
PHP
Raw Normal View History

2020-03-31 01:15:25 +00:00
<?php
/*
Plugin Name: OSS Aliyun
Plugin URI: https://github.com/sy-records/aliyun-oss-wordpress
Description: 使用阿里云对象存储 OSS 作为附件存储空间。This is a plugin that uses Aliyun Object Storage Service for attachments remote saving.
Version: 1.4.6
2020-03-31 01:15:25 +00:00
Author: 沈唁
Author URI: https://qq52o.me
License: Apache2.0
2020-03-31 01:15:25 +00:00
*/
2022-02-12 03:22:24 +00:00
if (!defined('ABSPATH')) {
exit;
}
2020-03-31 01:15:25 +00:00
require_once 'sdk/vendor/autoload.php';
use OSS\OssClient;
use OSS\Core\OssException;
2023-07-25 04:54:38 +00:00
use OSS\Credentials\CredentialsProvider;
use AlibabaCloud\Credentials\Credential;
use OSS\Credentials\StaticCredentialsProvider;
2020-03-31 01:15:25 +00:00
define('OSS_VERSION', '1.4.6');
2020-03-31 01:15:25 +00:00
define('OSS_BASEFOLDER', plugin_basename(dirname(__FILE__)));
2021-03-19 05:21:56 +00:00
if (!function_exists('get_home_path')) {
require_once(ABSPATH . 'wp-admin/includes/file.php');
}
2023-07-25 04:54:38 +00:00
class OSSCredentialsWrapper implements CredentialsProvider
{
/**
* @var \OSS\Credentials\Credentials
*/
private $wrapper;
public function __construct($wrapper)
{
$this->wrapper = $wrapper;
}
public function getCredentials()
{
$ak = $this->wrapper->getAccessKeyId();
$sk = $this->wrapper->getAccessKeySecret();
$token = $this->wrapper->getSecurityToken();
return new StaticCredentialsProvider($ak, $sk, $token);
}
}
2020-03-31 01:15:25 +00:00
// 初始化选项
register_activation_hook(__FILE__, 'oss_set_options');
// 初始化选项
function oss_set_options()
{
$options = [
2020-09-13 05:45:11 +00:00
'bucket' => '',
'regional' => 'oss-cn-shanghai',
'accessKeyId' => '',
'accessKeySecret' => '',
'is_internal' => 'false',
'nothumb' => 'false', // 是否上传缩略图
'nolocalsaving' => 'false', // 是否保留本地备份
'upload_url_path' => '', // URL前缀
2020-08-29 01:45:06 +00:00
'style' => '', // 图片处理
2021-09-27 04:33:09 +00:00
'update_file_name' => 'false', // 是否重命名文件名
2023-07-25 04:54:38 +00:00
'role_name' => '' // 角色名称
];
2020-03-31 01:15:25 +00:00
add_option('oss_options', $options, '', 'yes');
}
function oss_get_client()
{
$oss_opt = get_option('oss_options', true);
2023-07-25 04:54:38 +00:00
$roleName = esc_attr($oss_opt['role_name'] ?? '');
$endpoint = oss_get_bucket_endpoint($oss_opt);
if (!empty($roleName)) {
$ecsRamRole = new Credential([
// 填写Credential类型固定值为ecs_ram_role。
'type' => 'ecs_ram_role',
// 填写角色名称。
'role_name' => $roleName,
]);
2023-08-16 00:24:14 +00:00
$providerWrapper = new OSSCredentialsWrapper($ecsRamRole);
$provider = $providerWrapper->getCredentials();
2023-07-25 04:54:38 +00:00
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? 'https://' : 'http://';
$config = ['provider' => $provider, 'endpoint'=> $protocol . $endpoint];
return new OssClient($config);
}
2020-03-31 01:15:25 +00:00
$accessKeyId = esc_attr($oss_opt['accessKeyId']);
$accessKeySecret = esc_attr($oss_opt['accessKeySecret']);
return new OssClient($accessKeyId, $accessKeySecret, $endpoint);
}
function oss_get_bucket_endpoint($oss_option)
{
$oss_regional = esc_attr($oss_option['regional']);
2020-09-13 05:45:11 +00:00
if ($oss_option['is_internal'] == 'true') {
2023-10-13 05:25:48 +00:00
return "{$oss_regional}-internal.aliyuncs.com";
2020-03-31 01:15:25 +00:00
}
2023-10-13 05:25:48 +00:00
return "{$oss_regional}.aliyuncs.com";
2020-03-31 01:15:25 +00:00
}
function oss_get_bucket_name()
{
$oss_opt = get_option('oss_options', true);
return $oss_opt['bucket'];
}
/**
* @param string $object
* @param string $file
* @param bool $no_local_file
2020-03-31 01:15:25 +00:00
*/
2020-04-03 00:24:01 +00:00
function oss_file_upload($object, $file, $no_local_file = false)
2020-03-31 01:15:25 +00:00
{
//如果文件不存在直接返回false
if (!@file_exists($file)) {
return false;
}
$bucket = oss_get_bucket_name();
$ossClient = oss_get_client();
try{
$ossClient->uploadFile($bucket, ltrim($object, '/'), $file);
2020-09-13 05:45:11 +00:00
} catch (OssException $e) {
2021-09-27 04:33:09 +00:00
if (WP_DEBUG) {
echo 'Error Message: ', $e->getMessage(), PHP_EOL, 'Error Code: ', $e->getCode();
}
2020-03-31 01:15:25 +00:00
}
2020-04-03 00:24:01 +00:00
if ($no_local_file) {
oss_delete_local_file($file);
}
2020-03-31 01:15:25 +00:00
}
/**
* 是否需要删除本地文件
*
* @return bool
*/
function oss_is_delete_local_file()
{
$oss_options = get_option('oss_options', true);
2023-08-16 00:24:14 +00:00
return esc_attr($oss_options['nolocalsaving']) == 'true';
2020-03-31 01:15:25 +00:00
}
/**
* 删除本地文件
*
* @param $file
* @return bool
*/
function oss_delete_local_file($file)
{
try {
//文件不存在
if (!@file_exists($file)) {
return true;
}
//删除文件
if (!@unlink($file)) {
return false;
}
return true;
2020-09-13 05:45:11 +00:00
} catch (\Exception $ex) {
2020-03-31 01:15:25 +00:00
return false;
}
}
/**
2020-04-10 23:58:49 +00:00
* 删除oss中的单个文件
2021-02-18 02:41:37 +00:00
*
* @param string $file
2020-03-31 01:15:25 +00:00
*/
function oss_delete_oss_file($file)
{
2021-07-31 12:19:08 +00:00
try {
$bucket = oss_get_bucket_name();
$ossClient = oss_get_client();
$ossClient->deleteObject($bucket, $file);
} catch (\Throwable $e) {
if (WP_DEBUG) {
2021-09-27 04:33:09 +00:00
echo 'Error Message: ', $e->getMessage(), PHP_EOL, 'Error Code: ', $e->getCode();
2021-07-31 12:19:08 +00:00
}
}
2020-03-31 01:15:25 +00:00
}
2020-04-10 23:58:49 +00:00
/**
* 批量删除文件
2021-02-18 02:41:37 +00:00
* @param array $files
2020-04-10 23:58:49 +00:00
*/
function oss_delete_oss_files(array $files)
{
2021-07-31 12:19:08 +00:00
try {
$bucket = oss_get_bucket_name();
$ossClient = oss_get_client();
$ossClient->deleteObjects($bucket, $files);
} catch (\Throwable $e) {
if (WP_DEBUG) {
2021-09-27 04:33:09 +00:00
echo 'Error Message: ', $e->getMessage(), PHP_EOL, 'Error Code: ', $e->getCode();
2021-07-31 12:19:08 +00:00
}
}
2020-04-10 23:58:49 +00:00
}
2020-03-31 01:15:25 +00:00
/**
* 上传附件(包括图片的原图)
*
* @param $metadata
2022-02-12 03:22:24 +00:00
* @return array
2020-03-31 01:15:25 +00:00
*/
function oss_upload_attachments($metadata)
{
2020-04-10 23:58:49 +00:00
$mime_types = get_allowed_mime_types();
$image_mime_types = [
2020-04-10 23:58:49 +00:00
$mime_types['jpg|jpeg|jpe'],
$mime_types['gif'],
$mime_types['png'],
$mime_types['bmp'],
$mime_types['tiff|tif'],
$mime_types['webp'],
2020-04-10 23:58:49 +00:00
$mime_types['ico'],
$mime_types['heic'],
];
2020-04-10 23:58:49 +00:00
// 例如mp4等格式 上传后根据配置选择是否删除 删除后媒体库会显示默认图片 点开内容是正常的
// 图片在缩略图处理
if (!in_array($metadata['type'], $image_mime_types)) {
//生成object在oss中的存储路径
2022-04-19 23:27:21 +00:00
if (oss_get_option('upload_path') == '.') {
2020-09-13 05:45:11 +00:00
$metadata['file'] = str_replace('./', '', $metadata['file']);
2020-04-10 23:58:49 +00:00
}
$object = str_replace("\\", '/', $metadata['file']);
2020-08-14 00:36:30 +00:00
$home_path = get_home_path();
$object = str_replace($home_path, '', $object);
2020-03-31 01:15:25 +00:00
2020-04-10 23:58:49 +00:00
//在本地的存储路径
2020-08-14 00:36:30 +00:00
$file = $home_path . $object; //向上兼容较早的WordPress版本上$metadata['file']存放的是相对路径
2020-03-31 01:15:25 +00:00
2020-04-10 23:58:49 +00:00
//执行上传操作
oss_file_upload('/' . $object, $file, oss_is_delete_local_file());
}
2020-03-31 01:15:25 +00:00
return $metadata;
}
/**
* 上传图片的缩略图
*/
function oss_upload_thumbs($metadata)
{
if (empty($metadata['file'])) {
return $metadata;
}
2020-04-10 23:58:49 +00:00
//获取上传路径
$wp_uploads = wp_upload_dir();
$basedir = $wp_uploads['basedir'];
2023-10-19 00:37:59 +00:00
$upload_path = oss_get_option('upload_path');
2020-04-16 01:22:50 +00:00
//获取oss插件的配置信息
$oss_options = get_option('oss_options', true);
$no_local_file = esc_attr($oss_options['nolocalsaving']) == 'true';
$no_thumb = esc_attr($oss_options['nothumb']) == 'true';
// Maybe there is a problem with the old version
$file = $basedir . '/' . $metadata['file'];
if ($upload_path != '.') {
$path_array = explode($upload_path, $file);
if (count($path_array) >= 2) {
$object = '/' . $upload_path . end($path_array);
2020-08-14 00:36:30 +00:00
}
} else {
$object = '/' . $metadata['file'];
$file = str_replace('./', '', $file);
2020-04-10 23:58:49 +00:00
}
2020-03-31 01:15:25 +00:00
oss_file_upload($object, $file, $no_local_file);
//得到本地文件夹和远端文件夹
$dirname = dirname($metadata['file']);
$file_path = $dirname != '.' ? "{$basedir}/{$dirname}/" : "{$basedir}/";
$file_path = str_replace("\\", '/', $file_path);
if ($upload_path == '.') {
$file_path = str_replace('./', '', $file_path);
}
$object_path = str_replace(get_home_path(), '', $file_path);
2020-03-31 01:15:25 +00:00
if (!empty($metadata['original_image'])) {
oss_file_upload("/{$object_path}{$metadata['original_image']}", "{$file_path}{$metadata['original_image']}", $no_local_file);
}
if ($no_thumb) {
return $metadata;
}
//上传所有缩略图
if (!empty($metadata['sizes'])) {
2020-03-31 01:15:25 +00:00
//there may be duplicated filenames,so ....
foreach ($metadata['sizes'] as $val) {
//生成object在oss中的存储路径
$object = '/' . $object_path . $val['file'];
//生成本地存储路径
$file = $file_path . $val['file'];
//执行上传操作
oss_file_upload($object, $file, $no_local_file);
2020-03-31 01:15:25 +00:00
}
}
return $metadata;
}
2023-08-16 00:24:14 +00:00
/**
* @param $override
* @return mixed
*/
function oss_save_image_editor_file($override)
{
add_filter('wp_update_attachment_metadata', 'oss_image_editor_file_do');
return $override;
}
/**
* @param $metadata
* @return mixed
*/
function oss_image_editor_file_do($metadata)
{
return oss_upload_thumbs($metadata);
}
2020-03-31 01:15:25 +00:00
//避免上传插件/主题时出现同步到oss的情况
if (substr_count($_SERVER['REQUEST_URI'], '/update.php') <= 0) {
2023-08-16 00:24:14 +00:00
add_filter('wp_handle_upload', 'oss_upload_attachments', 50);
2020-03-31 01:15:25 +00:00
add_filter('wp_generate_attachment_metadata', 'oss_upload_thumbs', 100);
2023-08-16 00:24:14 +00:00
add_filter('wp_save_image_editor_file', 'oss_save_image_editor_file', 101);
2020-03-31 01:15:25 +00:00
}
/**
* 删除远端文件,删除文件时触发
* @param $post_id
*/
2021-02-18 02:41:37 +00:00
function oss_delete_remote_attachment($post_id)
{
// 获取图片类附件的meta信息
$meta = wp_get_attachment_metadata($post_id);
2020-03-31 01:15:25 +00:00
2022-02-12 03:22:24 +00:00
if (!empty($meta['file'])) {
2020-04-10 23:58:49 +00:00
$deleteObjects = [];
2020-03-31 01:15:25 +00:00
// meta['file']的格式为 "2020/01/wp-bg.png"
2022-04-19 23:27:21 +00:00
$upload_path = oss_get_option('upload_path');
2020-03-31 01:15:25 +00:00
if ($upload_path == '') {
$upload_path = 'wp-content/uploads';
}
$file_path = $upload_path . '/' . $meta['file'];
2020-04-10 23:58:49 +00:00
$deleteObjects[] = str_replace("\\", '/', $file_path);
$dirname = dirname($file_path) . '/';
// 超大图原图
if (!empty($meta['original_image'])) {
$deleteObjects[] = ['Key' => str_replace("\\", '/', $dirname . $meta['original_image'])];
}
// 删除缩略图
if (!empty($meta['sizes'])) {
foreach ($meta['sizes'] as $val) {
$deleteObjects[] = str_replace("\\", '/', $dirname . $val['file']);
2020-03-31 01:15:25 +00:00
}
}
2020-04-10 23:58:49 +00:00
oss_delete_oss_files($deleteObjects);
2021-02-18 02:41:37 +00:00
} else {
// 获取链接删除
$link = wp_get_attachment_url($post_id);
if ($link) {
2022-04-19 23:27:21 +00:00
$upload_path = oss_get_option('upload_path');
2021-02-18 02:41:37 +00:00
if ($upload_path != '.') {
$file_info = explode($upload_path, $link);
2022-02-12 03:22:24 +00:00
if (count($file_info) >= 2) {
oss_delete_oss_file($upload_path . end($file_info));
2021-02-18 02:41:37 +00:00
}
} else {
$oss_options = get_option('oss_options', true);
$oss_upload_url = esc_attr($oss_options['upload_url_path']);
$file_info = explode($oss_upload_url, $link);
2022-02-12 03:22:24 +00:00
if (count($file_info) >= 2) {
oss_delete_oss_file(end($file_info));
2021-02-18 02:41:37 +00:00
}
}
}
2020-03-31 01:15:25 +00:00
}
}
add_action('delete_attachment', 'oss_delete_remote_attachment');
// 当upload_path为根目录时需要移除URL中出现的“绝对路径”
function oss_modefiy_img_url($url, $post_id)
{
2020-04-12 02:03:14 +00:00
// 移除 ./ 和 项目根路径
return str_replace(['./', get_home_path()], '', $url);
2020-03-31 01:15:25 +00:00
}
2022-04-19 23:27:21 +00:00
if (oss_get_option('upload_path') == '.') {
2020-03-31 01:15:25 +00:00
add_filter('wp_get_attachment_url', 'oss_modefiy_img_url', 30, 2);
}
2021-09-27 04:33:09 +00:00
function oss_sanitize_file_name($filename)
{
$oss_options = get_option('oss_options');
switch ($oss_options['update_file_name']) {
case 'md5':
2023-10-13 05:25:48 +00:00
return md5($filename) . '.' . pathinfo($filename, PATHINFO_EXTENSION);
2021-09-27 04:33:09 +00:00
case 'time':
return date('YmdHis', current_time('timestamp')) . mt_rand(100, 999) . '.' . pathinfo($filename, PATHINFO_EXTENSION);
default:
return $filename;
}
}
add_filter('sanitize_file_name', 'oss_sanitize_file_name', 10, 1);
2020-03-31 01:15:25 +00:00
2020-08-14 00:36:30 +00:00
/**
* @param $homePath
* @param $uploadPath
2020-08-14 00:36:30 +00:00
* @return array
*/
function oss_read_dir_queue($homePath, $uploadPath)
2020-03-31 01:15:25 +00:00
{
$dir = $homePath . $uploadPath;
$dirsToProcess = new SplQueue();
$dirsToProcess->enqueue([$dir, '']);
$foundFiles = [];
while (!$dirsToProcess->isEmpty()) {
2023-10-19 00:37:59 +00:00
list($currentDir, $relativeDir) = $dirsToProcess->dequeue();
foreach (new DirectoryIterator($currentDir) as $fileInfo) {
if ($fileInfo->isDot()) continue;
$filepath = $fileInfo->getRealPath();
// Compute the relative path of the file/directory with respect to upload path
$currentRelativeDir = "{$relativeDir}/{$fileInfo->getFilename()}";
if ($fileInfo->isDir()) {
$dirsToProcess->enqueue([$filepath, $currentRelativeDir]);
} else {
// Add file path and key to the result array
$foundFiles[] = [
'filepath' => $filepath,
'key' => '/' . $uploadPath . $currentRelativeDir
];
2020-03-31 01:15:25 +00:00
}
}
}
2020-08-14 00:36:30 +00:00
return $foundFiles;
2020-03-31 01:15:25 +00:00
}
// 在插件列表页添加设置按钮
function oss_plugin_action_links($links, $file)
{
if ($file == plugin_basename(dirname(__FILE__) . '/aliyun-oss-wordpress.php')) {
$links[] = '<a href="options-general.php?page=' . OSS_BASEFOLDER . '/aliyun-oss-wordpress.php">设置</a>';
$links[] = '<a href="https://qq52o.me/sponsor.html" target="_blank">赞赏</a>';
}
return $links;
}
add_filter('plugin_action_links', 'oss_plugin_action_links', 10, 2);
2020-08-29 01:45:06 +00:00
add_filter('the_content', 'oss_setting_content_style');
function oss_setting_content_style($content)
{
$option = get_option('oss_options');
if (!empty($option['style'])) {
preg_match_all('/<img.*?(?: |\\t|\\r|\\n)?src=[\'"]?(.+?)[\'"]?(?:(?: |\\t|\\r|\\n)+.*?)?>/sim', $content, $images);
if (!empty($images) && isset($images[1])) {
$images[1] = array_unique($images[1]);
2020-08-29 01:45:06 +00:00
foreach ($images[1] as $item) {
2022-04-19 23:27:21 +00:00
if((strpos($item, esc_attr($option['upload_url_path'])) !== false) && (strpos($item, esc_attr($option['style'])) === false)){
$content = str_replace($item, $item . esc_attr($option['style']), $content);
2020-08-29 01:45:06 +00:00
}
}
}
}
return $content;
}
add_filter('post_thumbnail_html', 'oss_setting_post_thumbnail_style', 10, 3);
function oss_setting_post_thumbnail_style($html, $post_id, $post_image_id)
2020-08-29 01:45:06 +00:00
{
$option = get_option('oss_options');
if (!empty($option['style']) && has_post_thumbnail()) {
preg_match_all('/<img.*?(?: |\\t|\\r|\\n)?src=[\'"]?(.+?)[\'"]?(?:(?: |\\t|\\r|\\n)+.*?)?>/sim', $html, $images);
if (!empty($images) && isset($images[1])) {
$images[1] = array_unique($images[1]);
2020-08-29 01:45:06 +00:00
foreach ($images[1] as $item) {
2022-04-19 23:27:21 +00:00
if((strpos($item, esc_attr($option['upload_url_path'])) !== false) && (strpos($item, esc_attr($option['style'])) === false)){
$html = str_replace($item, $item . esc_attr($option['style']), $html);
2020-08-29 01:45:06 +00:00
}
}
}
}
return $html;
}
function oss_get_regional($regional)
{
$options = [
'oss-accelerate' => '全球加速',
'oss-accelerate-overseas' => '非中国内地加速',
'oss-rg-china-mainland' => '无地域属性(中国内地)',
'oss-cn-hangzhou' => '华东 1杭州',
'oss-cn-shanghai' => '华东 2上海',
2023-10-13 05:25:48 +00:00
'oss-cn-nanjing' => '华东 5南京-本地地域)',
'oss-cn-fuzhou' => '华东 6福州-本地地域)',
'oss-cn-wuhan' => '华中 1武汉-本地地域)',
'oss-cn-qingdao' => '华北 1青岛',
'oss-cn-beijing' => '华北 2北京',
'oss-cn-zhangjiakou' => '华北 3张家口',
'oss-cn-huhehaote' => '华北 5呼和浩特',
'oss-cn-wulanchabu' => '华北 6乌兰察布',
'oss-cn-shenzhen' => '华南 1深圳',
'oss-cn-heyuan' => '华南 2河源',
'oss-cn-guangzhou' => '华南 3广州',
'oss-cn-chengdu' => '西南 1成都',
'oss-cn-hongkong' => '中国(香港)',
'oss-us-west-1' => '美国西部 1 (硅谷)',
'oss-us-east-1' => '美国东部 1 (弗吉尼亚)',
'oss-ap-southeast-1' => '新加坡',
'oss-ap-southeast-2' => '澳大利亚(悉尼)',
'oss-ap-southeast-3' => '马来西亚(吉隆坡)',
'oss-ap-southeast-5' => '印度尼西亚(雅加达)',
2023-10-13 05:25:48 +00:00
'oss-ap-southeast-6' => '菲律宾(马尼拉)',
'oss-ap-southeast-7' => '泰国(曼谷)',
'oss-ap-northeast-1' => '日本(东京)',
2023-10-13 05:25:48 +00:00
'oss-ap-northeast-2' => '韩国(首尔)',
'oss-ap-south-1' => '印度(孟买)',
'oss-eu-central-1' => '德国(法兰克福)',
'oss-eu-west-1' => '英国(伦敦)',
'oss-me-east-1' => '阿联酋(迪拜)',
'oss-cn-hzfinance' => '杭州金融云公网',
'oss-cn-shanghai-finance-1-pub' => '上海金融云公网',
'oss-cn-szfinance' => '深圳金融云公网',
'cn-beijing-finance-1' => '北京金融云公网',
];
foreach ($options as $value => $text) {
$selected = ($regional == $value) ? 'selected="selected"' : '';
echo "<option value=\"{$value}\" {$selected}>{$text}</option>";
}
}
2022-04-19 23:27:21 +00:00
function oss_get_option($key)
{
return esc_attr(get_option($key));
}
2020-03-31 01:15:25 +00:00
// 在导航栏“设置”中添加条目
function oss_add_setting_page()
{
add_options_page('阿里云 OSS', '阿里云 OSS', 'manage_options', __FILE__, 'oss_setting_page');
2020-03-31 01:15:25 +00:00
}
add_action('admin_menu', 'oss_add_setting_page');
// 插件设置页面
function oss_setting_page()
{
if (!current_user_can('manage_options')) {
wp_die('Insufficient privileges!');
}
$options = [];
2020-03-31 01:15:25 +00:00
if (!empty($_POST) and $_POST['type'] == 'oss_set') {
$options['bucket'] = isset($_POST['bucket']) ? sanitize_text_field($_POST['bucket']) : '';
$options['regional'] = isset($_POST['regional']) ? sanitize_text_field($_POST['regional']) : '';
2023-07-25 04:54:38 +00:00
$options['role_name'] = isset($_POST['role_name']) ? sanitize_text_field($_POST['role_name']) : '';
2020-03-31 01:15:25 +00:00
$options['accessKeyId'] = isset($_POST['accessKeyId']) ? sanitize_text_field($_POST['accessKeyId']) : '';
$options['accessKeySecret'] = isset($_POST['accessKeySecret']) ? sanitize_text_field($_POST['accessKeySecret']) : '';
$options['is_internal'] = isset($_POST['is_internal']) ? 'true' : 'false';
$options['nothumb'] = isset($_POST['nothumb']) ? 'true' : 'false';
$options['nolocalsaving'] = isset($_POST['nolocalsaving']) ? 'true' : 'false';
//仅用于插件卸载时比较使用
$options['upload_url_path'] = isset($_POST['upload_url_path']) ? sanitize_text_field(stripslashes($_POST['upload_url_path'])) : '';
2020-08-29 01:45:06 +00:00
$options['style'] = isset($_POST['style']) ? sanitize_text_field($_POST['style']) : '';
2021-09-27 04:33:09 +00:00
$options['update_file_name'] = isset($_POST['update_file_name']) ? sanitize_text_field($_POST['update_file_name']) : 'false';
2023-10-13 05:25:48 +00:00
if ($options['regional'] === 'oss-rg-china-mainland' && $options['is_internal'] === 'true') {
echo '<div class="error"><p><strong>无地域属性不支持内网,请重新填写配置!</strong></p></div>';
$options = [];
}
2020-03-31 01:15:25 +00:00
}
if (!empty($_POST) and $_POST['type'] == 'aliyun_oss_all') {
2023-10-13 05:25:48 +00:00
$files = oss_read_dir_queue(get_home_path(), oss_get_option('upload_path'));
foreach ($files as $file) {
oss_file_upload($file['key'], $file['filepath']);
2020-03-31 01:15:25 +00:00
}
echo '<div class="updated"><p><strong>本次操作成功同步' . count($files) . '个文件</strong></p></div>';
2020-03-31 01:15:25 +00:00
}
// 替换数据库链接
if(!empty($_POST) and $_POST['type'] == 'aliyun_oss_replace') {
2020-08-14 00:36:30 +00:00
$old_url = esc_url_raw($_POST['old_url']);
$new_url = esc_url_raw($_POST['new_url']);
2020-03-31 01:15:25 +00:00
global $wpdb;
$posts_name = $wpdb->prefix . 'posts';
2020-08-14 00:36:30 +00:00
// 文章内容
$posts_result = $wpdb->query("UPDATE $posts_name SET post_content = REPLACE(post_content, '$old_url', '$new_url')");
2020-08-14 00:36:30 +00:00
// 修改题图之类的
$postmeta_name = $wpdb->prefix . 'postmeta';
$postmeta_result = $wpdb->query("UPDATE $postmeta_name SET meta_value = REPLACE(meta_value, '$old_url', '$new_url')");
2020-03-31 01:15:25 +00:00
2020-08-14 00:36:30 +00:00
echo '<div class="updated"><p><strong>替换成功!共替换文章内链'.$posts_result.'条、题图链接'.$postmeta_result.'条!</strong></p></div>';
2020-03-31 01:15:25 +00:00
}
// 若$options不为空数组则更新数据
if ($options !== []) {
2020-03-31 01:15:25 +00:00
//更新数据库
update_option('oss_options', $options);
$upload_path = sanitize_text_field(trim(stripslashes($_POST['upload_path']), '/'));
2023-08-16 00:24:14 +00:00
$upload_path = $upload_path == '' ? 'wp-content/uploads' : $upload_path;
2020-03-31 01:15:25 +00:00
update_option('upload_path', $upload_path);
$upload_url_path = sanitize_text_field(trim(stripslashes($_POST['upload_url_path']), '/'));
update_option('upload_url_path', $upload_url_path);
echo '<div class="updated"><p><strong>设置已保存!</strong></p></div>';
}
$oss_options = get_option('oss_options', true);
$oss_regional = esc_attr($oss_options['regional']);
$oss_is_internal = esc_attr($oss_options['is_internal']);
2023-10-13 05:25:48 +00:00
$oss_is_internal = $oss_is_internal == 'true';
2020-03-31 01:15:25 +00:00
$oss_nothumb = esc_attr($oss_options['nothumb']);
2023-10-13 05:25:48 +00:00
$oss_nothumb = $oss_nothumb == 'true';
2020-03-31 01:15:25 +00:00
$oss_nolocalsaving = esc_attr($oss_options['nolocalsaving']);
2023-10-13 05:25:48 +00:00
$oss_nolocalsaving = $oss_nolocalsaving == 'true';
2021-09-27 04:33:09 +00:00
$oss_update_file_name = esc_attr($oss_options['update_file_name']);
2020-08-29 01:45:06 +00:00
2020-09-13 05:45:11 +00:00
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? 'https://' : 'http://';
?>
2020-03-31 01:15:25 +00:00
<div class="wrap" style="margin: 10px;">
<h1>阿里云 OSS <span style="font-size: 13px;">当前版本:<?php echo OSS_VERSION; ?></span></h1>
2023-08-11 19:34:56 +00:00
<p>如果觉得此插件对你有所帮助,不妨到 <a href="https://github.com/sy-records/aliyun-oss-wordpress" target="_blank">GitHub</a> 上点个<code>Star</code><code>Watch</code>关注更新;<a href="https://go.qq52o.me/qm/ccs" target="_blank">欢迎加入云存储插件交流群QQ群号887595381</a></p>
2020-03-31 01:15:25 +00:00
<hr/>
<form name="form1" method="post">
2020-03-31 01:15:25 +00:00
<table class="form-table">
<tr>
<th>
<legend>Bucket名称</legend>
</th>
<td>
2022-04-19 23:27:21 +00:00
<input type="text" name="bucket" value="<?php echo esc_attr($oss_options['bucket']); ?>" size="50" placeholder="请填写Bucket名称"/>
2020-03-31 01:15:25 +00:00
<p>请先访问 <a href="https://oss.console.aliyun.com/bucket" target="_blank">阿里云控制台</a> 创建<code>Bucket</code>,再填写以上内容。</p>
</td>
</tr>
<tr>
<th>
<legend>区域</legend>
</th>
2023-07-25 04:54:38 +00:00
<td>
<select name="regional">
<?php oss_get_regional($oss_regional); ?>
2020-03-31 01:15:25 +00:00
</select>
<p>请选择您创建的<code>Bucket</code>所在区域</p>
</td>
</tr>
2023-07-25 04:54:38 +00:00
<tr>
<th>
<legend>Role Name</legend>
</th>
<td>
<input type="text" name="role_name" value="<?php echo esc_attr($oss_options['role_name'] ?? ''); ?>" size="50" placeholder="RAM角色名称"/>
<p>在ECS上通过实例RAM角色的方式访问OSS非必填如需使用请填写不懂请保持为空。</p>
</td>
</tr>
2020-03-31 01:15:25 +00:00
<tr>
<th>
<legend>AccessKeyId</legend>
</th>
2022-04-19 23:27:21 +00:00
<td><input type="text" name="accessKeyId" value="<?php echo esc_attr($oss_options['accessKeyId']); ?>" size="50" placeholder="AccessKeyId"/></td>
2020-03-31 01:15:25 +00:00
</tr>
<tr>
<th>
<legend>AccessKeySecret</legend>
</th>
<td>
2022-04-19 23:27:21 +00:00
<input type="password" name="accessKeySecret" value="<?php echo esc_attr($oss_options['accessKeySecret']); ?>" size="50" placeholder="AccessKeySecret"/>
2020-03-31 01:15:25 +00:00
</td>
</tr>
<tr>
<th>
<legend>是否使用内网传输</legend>
</th>
<td>
<input type="checkbox" name="is_internal" <?php echo $oss_is_internal ? 'checked="checked"' : ''; ?> />
2020-03-31 01:15:25 +00:00
<p>如果你的服务器是在阿里云并且区域和<code>Bucket</code>所在区域一致,请勾选。</p>
</td>
</tr>
<tr>
<th>
<legend>不上传缩略图</legend>
</th>
<td>
<input type="checkbox" name="nothumb" <?php echo $oss_nothumb ? 'checked="checked"' : ''; ?> />
2020-03-31 01:15:25 +00:00
<p>建议不勾选</p>
</td>
</tr>
<tr>
<th>
<legend>不在本地保留备份</legend>
</th>
<td>
<input type="checkbox"
name="nolocalsaving" <?php echo $oss_nolocalsaving ? 'checked="checked"' : ''; ?> />
2020-03-31 01:15:25 +00:00
<p>建议不勾选</p>
</td>
</tr>
2021-09-27 04:33:09 +00:00
<tr>
<th>
<legend>自动重命名文件</legend>
</th>
<td>
<select name="update_file_name">
<option <?php echo $oss_update_file_name == 'false' ? 'selected="selected"' : ''; ?> value="false">不处理</option>
<option <?php echo $oss_update_file_name == 'md5' ? 'selected="selected"' : ''; ?> value="md5">MD5</option>
<option <?php echo $oss_update_file_name == 'time' ? 'selected="selected"' : ''; ?> value="time">时间戳+随机数</option>
2021-09-27 04:33:09 +00:00
</select>
</td>
</tr>
2020-03-31 01:15:25 +00:00
<tr>
<th>
<legend>本地文件夹</legend>
</th>
<td>
2022-04-19 23:27:21 +00:00
<input type="text" name="upload_path" value="<?php echo oss_get_option('upload_path'); ?>" size="50" placeholder="请输入上传文件夹"/>
2020-03-31 01:15:25 +00:00
<p>附件在服务器上的存储位置,例如: <code>wp-content/uploads</code> (注意不要以“/”开头和结尾),根目录请输入<code>.</code></p>
</td>
</tr>
<tr>
<th>
<legend>URL前缀</legend>
</th>
<td>
2022-04-19 23:27:21 +00:00
<input type="text" name="upload_url_path" value="<?php echo oss_get_option('upload_url_path'); ?>" size="50" placeholder="请输入URL前缀"/>
2020-03-31 01:15:25 +00:00
<p><b>注意:</b></p>
<p>1URL前缀的格式为 <code><?php echo $protocol;?>{OSS外网访问Bucket域名}/{本地文件夹}</code> ,“本地文件夹”务必与上面保持一致(结尾无 <code>/</code> ),或者“本地文件夹”为 <code>.</code> 时 <code><?php echo $protocol;?>{OSS外网访问域名}</code> 。</p>
<p>2OSS中的存放路径即“文件夹”与上述 <code>本地文件夹</code> 中定义的路径是相同的(出于方便切换考虑)。</p>
<p>3)如果需要使用 <code>用户域名</code> ,直接将 <code>{OSS外网访问Bucket域名}</code> 替换为 <code>用户域名</code> 即可。</p>
</td>
</tr>
2020-08-29 01:45:06 +00:00
<tr>
<th>
<legend>图片处理</legend>
</th>
<td>
2022-04-19 23:27:21 +00:00
<input type="text" name="style" value="<?php echo esc_attr($oss_options['style']); ?>" size="50" placeholder="请输入图片处理样式,留空表示不处理"/>
2020-08-29 01:45:06 +00:00
<p><b>获取样式:</b></p>
2020-08-29 01:51:09 +00:00
<p>1)在阿里云 <a href="https://oss.console.aliyun.com/bucket" target="_blank">OSS管理控制台</a> 对应的 Bucket 中数据处理 -> 图片处理 中新建样式。具体样式设置参考<a href="https://help.aliyun.com/document_detail/48884.html" target="_blank">阿里云文档</a></p>
2020-08-29 01:45:06 +00:00
2020-08-29 01:51:09 +00:00
<p>2)填写时需要将<code>默认规则</code><code>自定义分隔符</code>和对应的创建<code>规则名称</code>进行拼接,例如:</p>
2020-08-29 01:45:06 +00:00
2020-08-29 01:51:09 +00:00
<p> <code>默认规则</code><code>?x-oss-process=style/</code><code>规则名称</code><code>stylename</code></p>
2020-08-29 01:45:06 +00:00
<p>则填写为 <code>?x-oss-process=style/stylename</code></p>
2020-08-29 01:51:09 +00:00
<p> <code>分隔符</code><code>!</code>(感叹号)<code>规则名称</code><code>stylename</code></p>
2020-08-29 01:45:06 +00:00
<p>则填写为 <code>!stylename</code></p>
</td>
</tr>
2020-03-31 01:15:25 +00:00
<tr>
<th><legend>保存/更新选项</legend></th>
<td><input type="submit" class="button button-primary" value="保存更改"/></td>
2020-03-31 01:15:25 +00:00
</tr>
</table>
<input type="hidden" name="type" value="oss_set">
</form>
<form method="post">
2020-03-31 01:15:25 +00:00
<table class="form-table">
<tr>
<th>
<legend>同步历史附件</legend>
</th>
<input type="hidden" name="type" value="aliyun_oss_all">
<td>
<input type="submit" class="button button-secondary" value="开始同步"/>
2020-03-31 01:15:25 +00:00
<p><b>注意:如果是首次同步,执行时间将会十分十分长(根据你的历史附件数量),有可能会因执行时间过长,页面显示超时或者报错。<br> 所以,建议那些几千上万附件的大神们,考虑官方的 <a target="_blank" rel="nofollow" href="https://help.aliyun.com/knowledge_detail/39628.html">同步工具</a></b></p>
</td>
</tr>
</table>
</form>
<hr>
<form method="post">
2020-03-31 01:15:25 +00:00
<table class="form-table">
<tr>
<th>
<legend>数据库原链接替换</legend>
</th>
<td>
<input type="text" name="old_url" size="50" placeholder="请输入要替换的旧域名"/>
</td>
</tr>
<tr>
<th>
<legend></legend>
</th>
<td>
<input type="text" name="new_url" size="50" placeholder="请输入要替换的新域名"/>
</td>
</tr>
<tr>
<th>
<legend></legend>
</th>
<input type="hidden" name="type" value="aliyun_oss_replace">
<td>
<input type="submit" class="button button-secondary" value="开始替换"/>
2020-08-14 00:36:30 +00:00
<p><b>注意:如果是首次替换,请注意备份!此功能会替换文章以及设置的特色图片(题图)等使用的资源链接</b></p>
2020-03-31 01:15:25 +00:00
</td>
</tr>
</table>
</form>
</div>
<?php
}
?>