123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <?php
- namespace app\common\model;
- use app\common\library\Service;
- use think\Cache;
- use think\Db;
- use think\Model;
- use think\View;
- /**
- * 区块模型
- */
- class Block extends Model
- {
- protected $name = "shop_block";
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
- // 追加属性
- protected $append = [
- ];
- protected static $config = [];
- protected static $tagCount = 0;
- protected static function init()
- {
- $config = get_addon_config('shop');
- self::$config = $config;
- }
- public function getImageAttr($value, $data)
- {
- $value = $value ? $value : self::$config['default_block_img'];
- return cdnurl($value, true);
- }
- public function getContentAttr($value, $data)
- {
- if (isset($data['parsetpl']) && $data['parsetpl']) {
- $view = View::instance();
- $view->engine->layout(false);
- return $view->display($data['content']);
- }
- return $data['content'];
- }
- public function getHasimageAttr($value, $data)
- {
- return $this->getData("image") ? true : false;
- }
- /**
- * 通过名称获取区块列表
- * @param $name
- * @return false|\PDOStatement|string|\think\Collection
- */
- public static function getBlockListByName($name)
- {
- return self::getBlockList(['name' => $name]);
- }
- /**
- * 获取区块列表
- * @param $params
- * @return false|\PDOStatement|string|\think\Collection
- */
- public static function getBlockList($params)
- {
- $name = empty($params['name']) ? '' : $params['name'];
- $type = empty($params['type']) ? '' : $params['type'];
- $condition = empty($params['condition']) ? '' : $params['condition'];
- $field = empty($params['field']) ? '*' : $params['field'];
- $row = empty($params['row']) ? 10 : (int)$params['row'];
- $orderby = empty($params['orderby']) ? 'id' : $params['orderby'];
- $orderway = empty($params['orderway']) ? 'desc' : strtolower($params['orderway']);
- $limit = empty($params['limit']) ? $row : $params['limit'];
- $imgwidth = empty($params['imgwidth']) ? '' : $params['imgwidth'];
- $imgheight = empty($params['imgheight']) ? '' : $params['imgheight'];
- $orderway = in_array($orderway, ['asc', 'desc']) ? $orderway : 'desc';
- $paginate = !isset($params['paginate']) ? false : $params['paginate'];
- // list($cacheKey, $cacheExpire) = Service::getCacheKeyExpire('blocklist', $params);
- self::$tagCount++;
- $where = ['status' => 'normal'];
- if ($name !== '') {
- $where['name'] = $name;
- }
- if (!empty($type)) {
- $where['type'] = ['in', $type];
- }
- $order = $orderby == 'rand' ? Db::raw('rand()') : (preg_match("/\,|\s/", $orderby) ? $orderby : "{$orderby} {$orderway}");
- $order = $orderby == 'weigh' ? $order . ',id DESC' : $order;
- $blockModel = self::where($where)
- ->where($condition)
- ->field($field)
- ->orderRaw($order);
- if ($paginate) {
- $paginateArr = explode(',', $paginate);
- $listRows = is_numeric($paginate) ? $paginate : (is_numeric($paginateArr[0]) ? $paginateArr[0] : $row);
- $config = [];
- $config['var_page'] = $paginateArr[2] ?? 'bpage' . self::$tagCount;
- $config['path'] = $paginateArr[3] ?? '';
- $config['fragment'] = $paginateArr[4] ?? '';
- $config['query'] = request()->get();
- $config['type'] = '\\addons\\shop\\library\\Bootstrap';
- $list = $blockModel->paginate($listRows, ($paginateArr[1] ?? false), $config);
- } else {
- //$list = $blockModel->limit($limit)->cache($cacheKey, $cacheExpire, 'shop')->select();
- $list = $blockModel->limit($limit)->select();
- }
- self::render($list, $imgwidth, $imgheight);
- return $list;
- }
- public static function render(&$list, $imgwidth, $imgheight)
- {
- $width = $imgwidth ? 'width="' . $imgwidth . '"' : '';
- $height = $imgheight ? 'height="' . $imgheight . '"' : '';
- $time = time();
- foreach ($list as $k => &$v) {
- if (($v['begintime'] && $time < $v['begintime']) || ($v['endtime'] && $time > $v['endtime'])) {
- unset($list[$k]);
- continue;
- }
- $v['textlink'] = '<a href="' . $v['url'] . '">' . $v['title'] . '</a>';
- $v['imglink'] = '<a href="' . $v['url'] . '"><img src="' . $v['image'] . '" border="" ' . $width . ' ' . $height . ' /></a>';
- $v['img'] = '<img src="' . $v['image'] . '" border="" ' . $width . ' ' . $height . ' />';
- }
- return $list;
- }
- /**
- * 获取区块内容
- * @param $params
- * @return string
- */
- public static function getBlockContent($params)
- {
- $fieldName = isset($params['id']) ? 'id' : 'name';
- $value = $params[$fieldName] ?? '';
- $field = $params['field'] ?? '';
- list($cacheKey, $cacheExpire) = Service::getCacheKeyExpire('blockinfo', $params);
- $row = self::where($fieldName, $value)
- ->where('status', 'normal')
- ->cache($cacheKey, $cacheExpire, 'shop')
- ->find();
- $result = '';
- if ($row) {
- $content = $row->getData('content');
- if ($field && isset($row[$field])) {
- $result = $row->getData($field);
- } else {
- if ($content) {
- $result = $content;
- } elseif ($row['image']) {
- $result = '<img src="' . $row['image'] . '" class="img-responsive"/>';
- } else {
- $result = $row['title'];
- }
- if ($row['url'] && !$content) {
- $result = $row['url'] ? '<a href="' . (preg_match("/^https?:\/\/(.*)/i", $row['url']) ? $row['url'] : url($row['url'])) . '" target="_blank">' . $result . '</a>' : $result;
- }
- }
- $row['begintime'] = (int)$row['begintime'];
- $row['endtime'] = (int)$row['endtime'];
- if (!$content) {
- return $result;
- } else {
- if (!$row['parsetpl']) {
- $tagIdentify = "taglib_shop_block_content_" . $row['id'];
- Cache::set($tagIdentify, $result);
- $result = "{:cache('{$tagIdentify}')}";
- }
- }
- //未开始或过期处理
- $result = "{if (!{$row['begintime']} || time()>{$row['begintime']})&&(!{$row['endtime']} || time()<{$row['endtime']})}{$result}{/if}";
- }
- return $result;
- }
- }
|