From c854252784e21690915fa1a8d2106d82719d3ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 15 Sep 2021 23:48:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BE=AE=E4=BF=A1=E5=AA=92?= =?UTF-8?q?=E4=BD=93=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/model/WechatMedia.php | 28 ++++++++++++++++++++++++++++ app/wechat/service/MediaService.php | 5 +++-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 app/wechat/model/WechatMedia.php diff --git a/app/wechat/model/WechatMedia.php b/app/wechat/model/WechatMedia.php new file mode 100644 index 000000000..4119e5b3b --- /dev/null +++ b/app/wechat/model/WechatMedia.php @@ -0,0 +1,28 @@ + md5($url), 'appid' => WechatService::instance()->getAppid()]; - if (($mediaId = $this->app->db->name('WechatMedia')->where($map)->value('media_id'))) return $mediaId; + if (($mediaId = WechatMedia::mk()->where($map)->value('media_id'))) return $mediaId; $result = WechatService::WeChatMedia()->addMaterial(self::buildCurlFile($url), $type, $video); - data_save('WechatMedia', [ + data_save(WechatMedia::class, [ 'local_url' => $url, 'md5' => $map['md5'], 'type' => $type, 'appid' => $map['appid'], 'media_url' => $result['url'] ?? '', 'media_id' => $result['media_id'], ], 'type', $map);