DealImageService.php
13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<?php
namespace App\Http\Services;
//后台用户相关信息服务
use App\Model\RedisModel;
use App\Model\SupplierBlacklistModel;
use App\Model\SupplierChannelModel;
use http\Exception\InvalidArgumentException;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Str;
//处理多个系统的图片替换问题
class DealImageService
{
public static function getAllImage($text)
{
$pattern = '/<img [^>]*src\s*=\s*["\']?([^"\'>]*img\.ichunt\.com[^"\'>]*)/i';
preg_match_all($pattern, $text, $matches);
$imageUrls = $matches[1];
$pattern = '/<img [^>]*src\s*=\s*["\']?([^"\'>]*file\.liexindev\.net[^"\'>]*)/i';
preg_match_all($pattern, $text, $matches);
$imageUrls = array_merge($imageUrls, $matches[1]);
$pattern = '/<img [^>]*src\s*=\s*["\']?([^"\'>]*file\.ichunt\.net[^"\'>]*)/i';
preg_match_all($pattern, $text, $matches);
$imageUrls = array_merge($imageUrls, $matches[1]);
return $imageUrls;
}
public static function checkImage($link)
{
if (strpos($link, 'img.ichunt.com') !== false || strpos($link, 'file.ichunt.net') !== false || strpos($link, 'file.liexindev.net') !== false) {
return $link;
} else {
return '';
}
}
//先去处理芯媒体的图片链接
public static function dealNewsImage()
{
$newsList = DB::connection('liexin')->table('article')->orderBy('art_id', 'desc')->limit(1000)->get();
$redis = new RedisModel();
foreach ($newsList as $news) {
$addon = DB::connection('liexin')->table('article_addon')->where('art_id', $news['art_id'])->first();
if (empty($addon)) {
continue;
}
$news = array_merge($news, $addon);
if (!DB::connection('liexin')->table('article')->where('art_id', $news['art_id'])->exists()) {
dump("不存在的文章");
continue;
}
$imageUrls = self::getAllImage($news['body']);
if (empty($imageUrls)) {
continue;
}
if (!$redis->hget('image_news_backup_xian', $news['art_id'])) {
$redis->hset('image_news_backup_xian', $news['art_id'], $news['body']);
}
//dump($imageUrls); // 输出所有提取出的 'img.ichunt.com' 图片链接
$imageMap = self::downloadAndUploadToPicServer($imageUrls);
//进行全局替换
foreach ($imageMap as $originImage => $newImage) {
$news['body'] = str_replace($originImage, $newImage, $news['body']);
}
DB::connection('liexin')->table('article_addon')->where('art_id', $news['art_id'])->update([
'body' => $news['body'],
]);
// DB::connection('liexin')->table('article')->where('art_id', $news['art_id'])->update([
// 'deal_status' => 1,
// ]);
dump('处理文章id : ' . $news['art_id']);
}
}
//处理cms的图片链接
public static function dealCmsImage()
{
$redis = new RedisModel();
//先去找出所有带有图片的cms数据
$bcatIdList = DB::connection('mysql')->table('lie_base_cat')->where('bcat_name', 'like', "%爱智%")->pluck('bcat_id');
$baseList = DB::connection('mysql')->table('lie_base')->whereIn('bcat_id', $bcatIdList)->where('images', '!=', '')->limit(1000)->get();
foreach ($baseList as $base) {
$imageUrl = self::checkImage($base['images']);
if (empty($imageUrl)) {
continue;
}
if (!$redis->hget('image_cms_backup_xian', $base['base_id'])) {
$redis->hset('image_cms_backup_xian', $base['base_id'], $base['images']);
}
$imageMap = self::downloadAndUploadToPicServer([$imageUrl]);
//进行全局替换
foreach ($imageMap as $originImage => $newImage) {
$base['images'] = str_replace($originImage, $newImage, $base['images']);
}
dump($base['base_id']);
//回写到数据库
DB::connection('mysql')->table('lie_base')->where('base_id', $base['base_id'])->update([
'images' => $base['images']
]);
}
}
public static function replaceCmsImage()
{
$bcatIdList = DB::connection('mysql')->table('lie_base_cat')->where('bcat_name', 'like', "%爱智%")->pluck('bcat_id');
$baseList = DB::connection('mysql')->table('lie_base')->whereIn('bcat_id', $bcatIdList)->where('images', '!=', '')->limit(1000)->get();
foreach ($baseList as $base) {
if (strpos($base['images'], 'imgscdn.ichunt.com/show/big') !== false || strpos($base['images'], 'image.liexindev.net/show/big') !== false) {
$base['images'] = str_replace('big', 'origin', $base['images']);
//回写到数据库
DB::connection('mysql')->table('lie_base')->where('base_id', $base['base_id'])->update([
'images' => $base['images']
]);
}
dump($base['base_id']);
}
}
//处理新闻的缩略图
public static function dealNewsPic()
{
$newsList = DB::connection('liexin')->table('article')->orderBy('art_id', 'desc')->limit(20)->get();
$redis = new RedisModel();
foreach ($newsList as $news) {
$imageUrl = self::checkImage($news['litpic']);
if (empty($imageUrl)) {
continue;
}
if (!$redis->hget('pic_news_backup_xian', $news['art_id'])) {
$redis->hset('pic_news_backup_xian', $news['art_id'], $news['litpic']);
}
$imageMap = self::downloadAndUploadToPicServer([$imageUrl]);
//进行全局替换
foreach ($imageMap as $originImage => $newImage) {
$news['litpic'] = str_replace($originImage, $newImage, $news['litpic']);
}
dump($news['art_id']);
//回写到数据库
DB::connection('liexin')->table('article')->where('art_id', $news['art_id'])->update([
'litpic' => $news['litpic']
]);
}
}
//处理sku详细描述
public static function dealSkuDetailAndImage()
{
//先找出所有爱智的sku,按搜索的来
//先去搜索找出所有华云的数据
$data = self::searchIedgeSku();
//获取总数
$total = !empty($data['data']['total']) ? $data['data']['total'] : 0;
if (!$total) {
dump("找不到sku数据");
return;
}
dump("需要处理的总数 : " . $total);
$count = 0;
$totalPage = (int)ceil($total / 20);
$redis = new RedisModel();
//进入修复循环
for ($i = 1; $i <= $totalPage; $i = $i + 1) {
$itemList = self::searchIedgeSku($i);
if (empty($itemList['data']['goods_id'])) {
continue;
}
foreach ($itemList['data']['goods_id'] as $skuId) {
$skuDetail = DB::connection('mongo')->table('sku_detail')->where('sku_id', (string)$skuId)->first();
$detail = $skuDetail['detail'];
if (empty($detail)) {
continue;
}
//替换图片地址并且上传
$imageUrls = self::getAllImage($detail);
if (empty($imageUrls)) {
continue;
}
if (!$redis->hget('image_sku_detail_backup_xian', $skuId)) {
$redis->hset('image_sku_detail_backup_xian', $skuId, $detail);
}
//dump($imageUrls); // 输出所有提取出的 'img.ichunt.com' 图片链接
$imageMap = self::downloadAndUploadToPicServer($imageUrls);
//进行全局替换
foreach ($imageMap as $originImage => $newImage) {
$detail = str_replace($originImage, $newImage, $detail);
}
//回写到mongo
DB::connection('mongo')->table('sku_detail')->where('sku_id', (string)$skuId)->update([
'update_time' => time(),
'detail' => $detail,
]);
}
//break;
foreach ($itemList['data']['goods_id'] as $skuId) {
//处理主图
$dbInfo = getSpuSkuDb($skuId);
$connection = DB::connection($dbInfo["db"]);
$table = $dbInfo['table'];
$selectFields = ['goods_images', 'goods_id'];
$skuDBData = $connection->table($table)->select($selectFields)->where('goods_id', $skuId)->first();
$imageUrl = self::checkImage($skuDBData['goods_images']);
if (empty($imageUrl)) {
continue;
}
if (!$redis->hget('image_goods_backup_xian', $skuId)) {
$redis->hset('image_goods_backup_xian', $skuId, $skuDBData['goods_images']);
}
$imageMap = self::downloadAndUploadToPicServer([$imageUrl]);
//进行全局替换
foreach ($imageMap as $originImage => $newImage) {
$skuDBData['goods_images'] = str_replace($originImage, $newImage, $skuDBData['goods_images']);
}
$connection->table($table)->where('goods_id', $skuId)->update([
'goods_images' => $skuDBData['goods_images'],
]);
dump($skuId);
//redis也要修改
$skuCache = json_decode($redis->hget('sku', $skuId), true);
$skuCache['goods_images'] = $skuDBData['goods_images'];
$redis->hset('sku', $skuId, json_encode($skuCache));
$count++;
}
}
dump('已处理sku数量 : ' . $count);
}
public static function getSearchDomain()
{
$host = request()->getHost();
if (strpos($host, 'ichunt.net') !== false) {
return 'https://icso.ichunt.com';
} else {
return 'http://search.liexindev.net';
}
}
public static function searchIedgeSku($page = 1)
{
$url = self::getSearchDomain() . '/search/es/searchSku';
$map['p'] = $page;
$map['show_status'] = 1;
$map['offset'] = 20;
$map['supplier_id/sr'] = "gt,0";
$map['admin'] = 1; // 后台搜索
$map['no_rule'] = "1122"; // 后台搜索
$map['org_id/eq'] = 3;
$client = new \GuzzleHttp\Client();
//$res = Http::get($url, $map)->body();
//$data = json_decode($res, true);
$response = $client->request('POST', $url, [
'form_params' => $map
]);
if ($response->getStatusCode() != 200) {
throw new InvalidArgumentException('搜索服务不正常!');
}
$content = $response->getBody()->getContents();
$content = json_decode($content, true);
$code = array_get($content, 'error_code', -1);
if ($code !== 0) {
return [];
}
return $content;
}
//根据url下载图片并且上传到图片服务
public static function downloadAndUploadToPicServer($urlList)
{
$imageMap = [];
$path = '';
foreach ($urlList as $url) {
if (str_contains($url, 'comhttp')) {
continue;
}
try {
$info = pathinfo($url);
$path = storage_path('logs/') . md5($url);
$client = new \GuzzleHttp\Client();
$response = $client->get($url);
$contents = $response->getBody()->getContents();
file_put_contents($path, $contents);
//然后上传到图片服务器
$response = $client->request('POST', env('IMAGE_SERVER_URL') . '/uploadImage?sys_type=5&create_uid=1000', [
'multipart' => [
[
'name' => 'file',
'contents' => fopen($url, 'r')
]
]
]);
if ($response->getStatusCode() != 200) {
dump('上传网络错误');
continue;
}
$res = json_decode($response->getBody()->getContents(), true);
if (isset($res['code'])) {
if ($res['code'] == 0) {
$ossFileUrl = $res['data']['oss_image_url'];
$imageMap[$url] = $ossFileUrl;
} else {
dump('上传服务接口返回错误 : ' . json_encode($res));
continue;
}
} else {
dump('上传网络错误,返回不一致的响应 : ' . json_encode($res));
continue;
}
} catch (\Exception $exception) {
dump("发生错误 : " . $exception->getMessage());
} finally {
if (file_exists($path)) {
//最后删除本地的文件
unlink($path);
}
}
}
return $imageMap;
}
}