!
也想出现在这里? 联系我们
广告位

WordPress 自动将文章里复制粘贴的外链图片本地化到媒体库

我们在通过 wp 发布文章时经常会复制别处的文章,文章里通常也带有图片,那么如何把图片粘贴过来的时候自动本地化上传到媒体库呢?

因为最近在给一个客户开发一个自动本地化+自动水印+自动 FTP 上传到另一台服务器的功能,所以在这里给大家说明一下。

  1. /**
  2. * 钩子函数:将post_content中本站服务器域名外的img上传至服务器并替换url
  3. *
  4. * @param Int $post_id
  5. * @param Object $post
  6. *
  7. */
  8. function ecp_save_post($post_id, $post) {
  9. // WordPress 全局变量 wpdb类
  10. global $wpdb;
  11. // 只有在点击发布/更新时才执行以下动作
  12. if($post->post_status == 'publish') {
  13. // 匹配<img>、src,存入$matches数组,
  14. $p = '/<img.*[\s]src=[\"|\'](.*)[\"|\'].*>/iU';
  15. $num = preg_match_all($p, $post->post_content, $matches);
  16. if ($num) {
  17. // 本地上传路径信息(数组),用来构造url
  18. $wp_upload_dir = wp_upload_dir();
  19. // 脚本执行不限制时间
  20. set_time_limit(0);
  21. // 构造curl,配置参数
  22. $ch = curl_init();
  23. curl_setopt($ch, CURLOPT_HEADER, false);
  24. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  25. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  26. // 抓取时如果发生301,302跳转,则进行跳转抓取
  27. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  28. // 最多跳转20次
  29. curl_setopt($ch, CURLOPT_MAXREDIRS,20);
  30. // 发起连接前最长等待时间
  31. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
  32. $ecp_options = $_SERVER['HTTP_HOST'];
  33. foreach ($matches[1] as $src) {
  34. if (isset($src) && strpos($src, $ecp_options) === false) {
  35. // 如果图片域名不是本站域名
  36. // 检查src中的url有无扩展名,没有则重新给定文件名
  37. // 注意:如果url中有扩展名但格式为webp,那么返回的file_info数组为 ['ext' =>'','type' =>'']
  38. $file_info = wp_check_filetype(basename($src), null);
  39. if ($file_info['ext'] == false) {
  40. // 无扩展名和webp格式的图片会被作为无扩展名文件处理
  41. date_default_timezone_set('PRC');
  42. $file_name = date('YmdHis-').dechex(mt_rand(100000, 999999)).'.tmp';
  43. } else {
  44. // 有扩展名的图片重新给定文件名防止与本地文件名冲突
  45. $file_name = dechex(mt_rand(100000, 999999)) . '-' . basename($src);
  46. }
  47. // 抓取图片, 将图片写入本地文件
  48. curl_setopt($ch, CURLOPT_URL, $src);
  49. $file_path = $wp_upload_dir['path'] . '/' . $file_name;
  50. $img = fopen($file_path, 'wb');
  51. // curl写入$img
  52. curl_setopt($ch, CURLOPT_FILE, $img);
  53. $img_data = curl_exec($ch);
  54. fclose($img);
  55. if (file_exists($file_path) && filesize($file_path) > 0) {
  56. // 将扩展名为tmp和webp的图片转换为jpeg文件并重命名
  57. $t = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
  58. $arr = explode('/', $t);
  59. // 对url地址中没有扩展名或扩展名为webp的图片进行处理
  60. if (pathinfo($file_path, PATHINFO_EXTENSION) == 'tmp') {
  61. $file_path = ecp_handle_ext($file_path, $arr[1], $wp_upload_dir['path'], $file_name, 'tmp');
  62. } elseif (pathinfo($file_path, PATHINFO_EXTENSION) == 'webp') {
  63. $file_path = ecp_handle_ext($file_path, $arr[1], $wp_upload_dir['path'], $file_name, 'webp');
  64. }
  65. // 替换文章内容中的src
  66. $post->post_content = str_replace($src, $wp_upload_dir['url'] . '/' . basename($file_path), $post->post_content);
  67. // 构造附件post参数并插入媒体库(作为一个post插入到数据库)
  68. $attachment = ecp_get_attachment_post(basename($file_path), $wp_upload_dir['url'] . '/' . basename($file_path));
  69. // 生成并更新图片的metadata信息
  70. $attach_id = wp_insert_attachment($attachment, ltrim($wp_upload_dir['subdir'] . '/' . basename($file_path), '/'), 0);
  71. $attach_data = wp_generate_attachment_metadata($attach_id, $file_path);
  72. // 直接调用wordpress函数,将metadata信息写入数据库
  73. $ss = wp_update_attachment_metadata($attach_id, $attach_data);
  74. }
  75. }
  76. }
  77. curl_close($ch);
  78. // 更新posts数据表的post_content字段
  79. $wpdb->update( $wpdb->posts, array('post_content' => $post->post_content), array('ID' => $post->ID));
  80. }
  81. }
  82. }
  83. /**
  84. * 处理没有扩展名的图片:转换格式或更改扩展名
  85. * @param string $file 图片本地绝对路径
  86. * @param string $type 图片mimetype
  87. * @param string $file_dir 图片在本地的文件夹
  88. * @param string $file_name 图片名称
  89. * @param string $ext 图片扩展名
  90. * @return string 处理后的本地图片绝对路径
  91. */
  92. function ecp_handle_ext($file, $type, $file_dir, $file_name, $ext) {
  93. switch ($ext) {
  94. case 'tmp':
  95. if (rename($file, str_replace('tmp', $type, $file))) {
  96. if ('webp' == $type) {
  97. // 将webp格式的图片转换为jpeg格式
  98. return ecp_image_convert('webp', 'jpeg', $file_dir . '/' . str_replace('tmp', $type, $file_name));
  99. }
  100. return $file_dir . '/' . str_replace('tmp', $type, $file_name);
  101. }
  102. case 'webp':
  103. if ('webp' == $type) {
  104. // 将webp格式的图片转换为jpeg格式
  105. return ecp_image_convert('webp', 'jpeg', $file);
  106. } else {
  107. if (rename($file, str_replace('webp', $type, $file))) {
  108. return $file_dir . '/' . str_replace('webp', $type, $file_name);
  109. }
  110. }
  111. default:
  112. return $file;
  113. }
  114. }
  115. /**
  116. * 图片格式转换,暂只能从webp转换为jpeg
  117. *
  118. * @param string $from
  119. * @param string $to
  120. * @param string $image 图片本地绝对路径
  121. * @return string 转换后的图片绝对路径
  122. */
  123. function ecp_image_convert($from='webp', $to='jpeg', $image) {
  124. // 加载 WebP 文件
  125. $im = imagecreatefromwebp($image);
  126. // 以 100% 的质量转换成 jpeg 格式并将原webp格式文件删除
  127. if (imagejpeg($im, str_replace('webp', 'jpeg', $image), 100)) {
  128. try {
  129. unlink($image);
  130. } catch (Exception $e) {
  131. $error_msg = sprintf('Error removing local file %s: %s', $image,
  132. $e->getMessage());
  133. error_log($error_msg);
  134. }
  135. }
  136. imagedestroy($im);
  137. return str_replace('webp', 'jpeg', $image);
  138. }
  139. /**
  140. * 构造图片post参数
  141. *
  142. * @param string $filename
  143. * @param string $url
  144. * @return array 图片post参数数组
  145. */
  146. function ecp_get_attachment_post($filename, $url) {
  147. $file_info = wp_check_filetype($filename, null);
  148. return array(
  149. 'guid' => $url,
  150. 'post_type' => 'attachement',
  151. 'post_mime_type' => $file_info['type'],
  152. 'post_title' => preg_replace('/\.[^.]+$/', '', $filename),
  153. 'post_content' => '',
  154. 'post_status' => 'inherit'
  155. );
  156. }
  157. // 钩子, 发布/草稿/预览时触发
  158. add_action('save_post', 'ecp_save_post', 120, 2);

只要将以上代码添加到你主题的 functions.php 文件里即可,或者可以直接安装插件 Easy copy paste。

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

WordPress 几种批量替换文章正文内容图文教程

2023-3-18 15:32:38

WordPress教程

通过Polylang插件制作人工翻译WordPress多语言网站

2023-3-20 3:33:11

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索