This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/model/Wxapp.php

59 lines
1.3 KiB
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\common\model;
use think\Cache;
2020-04-25 22:34:57 +08:00
use app\common\exception\BaseException;
2020-04-25 22:20:29 +08:00
/**
* 微信小程序模型
* Class Wxapp
* @package app\common\model
*/
class Wxapp extends BaseModel
{
protected $name = 'wxapp';
/**
* 小程序页面
* @return \think\model\relation\HasOne
*/
public function diyPage()
{
return $this->hasOne('WxappPage');
}
/**
* 获取小程序信息
* @param null $wxapp_id
* @return static|null
* @throws \think\exception\DbException
*/
public static function detail($wxapp_id = null)
{
return self::get($wxapp_id ?: []);
}
/**
* 从缓存中获取小程序信息
* @param null $wxapp_id
* @return mixed|null|static
* @throws BaseException
* @throws \think\exception\DbException
*/
public static function getWxappCache($wxapp_id = null)
{
if (is_null($wxapp_id)) {
$self = new static();
$wxapp_id = $self::$wxapp_id;
}
if (!$data = Cache::get('wxapp_' . $wxapp_id)) {
$data = self::detail($wxapp_id);
if (empty($data)) throw new BaseException(['msg' => '未找到当前小程序信息']);
Cache::tag('cache')->set('wxapp_' . $wxapp_id, $data);
}
return $data;
}
}