You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.3 KiB
87 lines
3.3 KiB
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkAdmin
|
|
// +----------------------------------------------------------------------
|
|
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网站: http://demo.thinkadmin.top
|
|
// +----------------------------------------------------------------------
|
|
// | 开源协议 ( https://mit-license.org )
|
|
// +----------------------------------------------------------------------
|
|
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
|
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\wechat\service;
|
|
|
|
use library\File;
|
|
use think\Db;
|
|
use WeChat\Contracts\MyCurlFile;
|
|
|
|
/**
|
|
* 微信素材管理
|
|
* Class MediaService
|
|
* @package app\wechat\service
|
|
*/
|
|
class MediaService
|
|
{
|
|
/**
|
|
* 通过图文ID读取图文信息
|
|
* @param integer $id 本地图文ID
|
|
* @param array $where 额外的查询条件
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function news($id, $where = [])
|
|
{
|
|
$data = Db::name('WechatNews')->where(['id' => $id])->where($where)->find();
|
|
list($data['articles'], $articleIds) = [[], explode(',', $data['article_id'])];
|
|
$articles = Db::name('WechatNewsArticle')->whereIn('id', $articleIds)->select();
|
|
foreach ($articleIds as $article_id) foreach ($articles as $article) {
|
|
if (intval($article['id']) === intval($article_id)) array_push($data['articles'], $article);
|
|
unset($article['create_by'], $article['create_at']);
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 上传图片永久素材,返回素材media_id
|
|
* @param string $url 文件URL地址
|
|
* @param string $type 文件类型
|
|
* @param array $videoInfo 视频信息
|
|
* @return string|null
|
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
|
* @throws \WeChat\Exceptions\LocalCacheException
|
|
* @throws \think\Exception
|
|
* @throws \think\exception\PDOException
|
|
*/
|
|
public static function upload($url, $type = 'image', $videoInfo = [])
|
|
{
|
|
$where = ['md5' => md5($url), 'appid' => WechatService::getAppid()];
|
|
if (($mediaId = Db::name('WechatMedia')->where($where)->value('media_id'))) return $mediaId;
|
|
$result = WechatService::WeChatMedia()->addMaterial(self::getServerPath($url), $type, $videoInfo);
|
|
data_save('WechatMedia', [
|
|
'local_url' => $url, 'md5' => $where['md5'], 'appid' => WechatService::getAppid(), 'type' => $type,
|
|
'media_url' => isset($result['url']) ? $result['url'] : '', 'media_id' => $result['media_id'],
|
|
], 'type', $where);
|
|
return $result['media_id'];
|
|
}
|
|
|
|
/**
|
|
* 文件位置处理
|
|
* @param string $local
|
|
* @return string
|
|
* @throws \WeChat\Exceptions\LocalCacheException
|
|
*/
|
|
private static function getServerPath($local)
|
|
{
|
|
if (file_exists($local)) {
|
|
return new MyCurlFile($local);
|
|
} else {
|
|
return new MyCurlFile(File::down($local)['file']);
|
|
}
|
|
}
|
|
}
|
|
|