MediaService.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.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 library\File;
  16. use think\Db;
  17. use WeChat\Contracts\MyCurlFile;
  18. /**
  19. * 微信素材管理
  20. * Class MediaService
  21. * @package app\wechat\service
  22. */
  23. class MediaService
  24. {
  25. /**
  26. * 通过图文ID读取图文信息
  27. * @param integer $id 本地图文ID
  28. * @param array $where 额外的查询条件
  29. * @return array
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. * @throws \think\exception\DbException
  33. */
  34. public static function news($id, $where = [])
  35. {
  36. $data = Db::name('WechatNews')->where(['id' => $id])->where($where)->find();
  37. list($data['articles'], $articleIds) = [[], explode(',', $data['article_id'])];
  38. $articles = Db::name('WechatNewsArticle')->whereIn('id', $articleIds)->select();
  39. foreach ($articleIds as $article_id) foreach ($articles as $article) {
  40. if (intval($article['id']) === intval($article_id)) array_push($data['articles'], $article);
  41. unset($article['create_by'], $article['create_at']);
  42. }
  43. return $data;
  44. }
  45. /**
  46. * 上传图片永久素材,返回素材media_id
  47. * @param string $url 文件URL地址
  48. * @param string $type 文件类型
  49. * @param array $videoInfo 视频信息
  50. * @return string|null
  51. * @throws \WeChat\Exceptions\InvalidResponseException
  52. * @throws \WeChat\Exceptions\LocalCacheException
  53. * @throws \think\Exception
  54. * @throws \think\exception\PDOException
  55. */
  56. public static function upload($url, $type = 'image', $videoInfo = [])
  57. {
  58. $where = ['md5' => md5($url), 'appid' => WechatService::getAppid()];
  59. if (($mediaId = Db::name('WechatMedia')->where($where)->value('media_id'))) return $mediaId;
  60. $result = WechatService::WeChatMedia()->addMaterial(self::getServerPath($url), $type, $videoInfo);
  61. data_save('WechatMedia', [
  62. 'local_url' => $url, 'md5' => $where['md5'], 'appid' => WechatService::getAppid(), 'type' => $type,
  63. 'media_url' => isset($result['url']) ? $result['url'] : '', 'media_id' => $result['media_id'],
  64. ], 'type', $where);
  65. return $result['media_id'];
  66. }
  67. /**
  68. * 文件位置处理
  69. * @param string $local
  70. * @return string
  71. * @throws \WeChat\Exceptions\LocalCacheException
  72. */
  73. private static function getServerPath($local)
  74. {
  75. if (file_exists($local)) return new MyCurlFile($local);
  76. return new MyCurlFile(File::down($local)['file']);
  77. }
  78. }