MediaService.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\wechat\service;
  15. use think\admin\Service;
  16. use think\admin\Storage;
  17. use WeChat\Contracts\MyCurlFile;
  18. /**
  19. * 微信素材管理
  20. * Class MediaService
  21. * @package app\wechat\service
  22. */
  23. class MediaService extends Service
  24. {
  25. /**
  26. * 通过图文ID读取图文信息
  27. * @param mixed $id 本地图文ID
  28. * @param array $map 额外的查询条件
  29. * @return array
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\DbException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. */
  34. public function news($id, $map = []): array
  35. {
  36. // 文章主体数据
  37. $query = $this->app->db->name('WechatNews');
  38. $data = $query->where(['id' => $id])->where($map)->find();
  39. if (empty($data)) return [];
  40. // 文章内容编号
  41. [$data['articles'], $articleIds] = [[], explode(',', $data['article_id'])];
  42. if (empty($data['article_id']) || empty($articleIds)) return $data;
  43. // 文章内容集合
  44. $query = $this->app->db->name('WechatNewsArticle');
  45. $query->whereIn('id', $articleIds)->orderField('id', $articleIds);
  46. $data['articles'] = $query->withoutField('create_by,create_at')->select()->toArray();
  47. return $data;
  48. }
  49. /**
  50. * 上传图片永久素材
  51. * @param string $url 文件地址
  52. * @param string $type 文件类型
  53. * @param array $video 视频信息
  54. * @return string media_id
  55. * @throws \WeChat\Exceptions\InvalidResponseException
  56. * @throws \WeChat\Exceptions\LocalCacheException
  57. * @throws \think\Exception
  58. * @throws \think\db\exception\DataNotFoundException
  59. * @throws \think\db\exception\DbException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. */
  62. public function upload(string $url, string $type = 'image', array $video = []): string
  63. {
  64. $map = ['md5' => md5($url), 'appid' => WechatService::instance()->getAppid()];
  65. if (($mediaId = $this->app->db->name('WechatMedia')->where($map)->value('media_id'))) return $mediaId;
  66. $result = WechatService::WeChatMedia()->addMaterial(self::_buildCurlFile($url), $type, $video);
  67. data_save('WechatMedia', [
  68. 'local_url' => $url, 'md5' => $map['md5'], 'type' => $type, 'appid' => $map['appid'],
  69. 'media_url' => $result['url'] ?? '', 'media_id' => $result['media_id'],
  70. ], 'type', $map);
  71. return $result['media_id'];
  72. }
  73. /**
  74. * 创建 CURL 文件对象
  75. * @param string $local 文件路径或网络地址
  76. * @return MyCurlFile
  77. * @throws \WeChat\Exceptions\LocalCacheException
  78. */
  79. private function _buildCurlFile(string $local): MyCurlFile
  80. {
  81. if (file_exists($local)) {
  82. return new MyCurlFile($local);
  83. } else {
  84. return new MyCurlFile(Storage::down($local)['file']);
  85. }
  86. }
  87. }