ThinkAdmin/app/wechat/service/MediaService.php
2020-06-19 10:33:07 +08:00

90 lines
3.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: https://thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\wechat\service;
use think\admin\Service;
use think\admin\Storage;
use WeChat\Contracts\MyCurlFile;
/**
* 微信素材管理
* Class MediaService
* @package app\wechat\service
*/
class MediaService extends Service
{
/**
* 通过图文ID读取图文信息
* @param integer $id 本地图文ID
* @param array $where 额外的查询条件
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function news($id, $where = [])
{
// 文章主体数据
$data = $this->app->db->name('WechatNews')->where(['id' => $id])->where($where)->find();
list($data['articles'], $articleIds) = [[], explode(',', $data['article_id'])];
if (empty($data['article_id']) || empty($articleIds)) return $data;
// 文章列表组合
$query = $this->app->db->name('WechatNewsArticle')->whereIn('id', $articleIds)->orderField('id', $articleIds);
$data['articles'] = $query->withoutField('create_by,create_at')->select()->toArray();
return $data;
}
/**
* 上传图片永久素材
* @param string $url 文件地址
* @param string $type 文件类型
* @param array $video 视频信息
* @return string media_id
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function upload($url, $type = 'image', $video = [])
{
$map = ['md5' => md5($url), 'appid' => WechatService::instance()->getAppid()];
if (($mediaId = $this->app->db->name('WechatMedia')->where($map)->value('media_id'))) return $mediaId;
$result = WechatService::WeChatMedia()->addMaterial(self::getServerPath($url), $type, $video);
data_save('WechatMedia', [
'local_url' => $url, 'md5' => $map['md5'], 'appid' => $map['appid'], 'type' => $type,
'media_url' => isset($result['url']) ? $result['url'] : '', 'media_id' => $result['media_id'],
], 'type', $map);
return $result['media_id'];
}
/**
* 文件位置处理
* @param string $local
* @return string
* @throws \WeChat\Exceptions\LocalCacheException
*/
private function getServerPath($local)
{
if (file_exists($local)) {
return new MyCurlFile($local);
} else {
return new MyCurlFile(Storage::down($local)['file']);
}
}
}