Bez popisu
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.

Paginator.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: zhangyajun <448901948@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace think;
  12. use ArrayAccess;
  13. use ArrayIterator;
  14. use Countable;
  15. use IteratorAggregate;
  16. use JsonSerializable;
  17. use Traversable;
  18. abstract class Paginator implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
  19. {
  20. /** @var bool 是否为简洁模式 */
  21. protected $simple = false;
  22. /** @var Collection 数据集 */
  23. protected $items;
  24. /** @var integer 当前页 */
  25. public $currentPage;
  26. /** @var integer 最后一页 */
  27. public $lastPage;
  28. /** @var integer|null 数据总数 */
  29. public $total;
  30. /** @var integer 每页的数量 */
  31. protected $listRows;
  32. /** @var bool 是否有下一页 */
  33. public $hasMore;
  34. /** @var array 一些配置 */
  35. protected $options = [
  36. 'var_page' => 'page',
  37. 'path' => '/',
  38. 'query' => [],
  39. 'fragment' => '',
  40. ];
  41. /** @var mixed simple模式下的下个元素 */
  42. protected $nextItem;
  43. public function __construct($items, $listRows, $currentPage = null, $total = null, $simple = false, $options = [])
  44. {
  45. $this->options = array_merge($this->options, $options);
  46. $this->options['path'] = '/' != $this->options['path'] ? rtrim($this->options['path'], '/') : $this->options['path'];
  47. $this->simple = $simple;
  48. $this->listRows = $listRows;
  49. if (!$items instanceof Collection) {
  50. $items = Collection::make($items);
  51. }
  52. if ($simple) {
  53. $this->currentPage = $this->setCurrentPage($currentPage);
  54. $this->hasMore = count($items) > ($this->listRows);
  55. if ($this->hasMore) {
  56. $this->nextItem = $items->slice($this->listRows, 1);
  57. }
  58. $items = $items->slice(0, $this->listRows);
  59. } else {
  60. $this->total = $total;
  61. $this->lastPage = (int) ceil($total / $listRows);
  62. $this->currentPage = $this->setCurrentPage($currentPage);
  63. $this->hasMore = $this->currentPage < $this->lastPage;
  64. }
  65. $this->items = $items;
  66. }
  67. /**
  68. * @param $items
  69. * @param $listRows
  70. * @param null $currentPage
  71. * @param bool $simple
  72. * @param null $total
  73. * @param array $options
  74. * @return Paginator
  75. */
  76. public static function make($items, $listRows, $currentPage = null, $total = null, $simple = false, $options = [])
  77. {
  78. return new static($items, $listRows, $currentPage, $total, $simple, $options);
  79. }
  80. protected function setCurrentPage($currentPage)
  81. {
  82. if (!$this->simple && $currentPage > $this->lastPage) {
  83. return $this->lastPage > 0 ? $this->lastPage : 1;
  84. }
  85. return $currentPage;
  86. }
  87. /**
  88. * 获取页码对应的链接
  89. *
  90. * @param $page
  91. * @return string
  92. */
  93. protected function url($page)
  94. {
  95. // tag标签ID by 小虎哥
  96. static $tagid = 0;
  97. if (!empty($this->options['query']['tagid'])) {
  98. $tagid = intval($this->options['query']['tagid']);
  99. }
  100. // 栏目ID by 小虎哥
  101. static $typeid = 0;
  102. if (!empty($this->options['query']['typeid_tmp'])) {
  103. $typeid = intval($this->options['query']['typeid_tmp']);
  104. unset($this->options['query']['typeid_tmp']);
  105. }
  106. if ($page <= 0) {
  107. $page = 1;
  108. }
  109. if (strpos($this->options['path'], '[PAGE]') === false) {
  110. $parameters = [$this->options['var_page'] => $page];
  111. $path = $this->options['path'];
  112. } else {
  113. $parameters = [];
  114. $path = str_replace('[PAGE]', $page, $this->options['path']);
  115. }
  116. if (count($this->options['query']) > 0) {
  117. $parameters = array_merge($this->options['query'], $parameters);
  118. }
  119. $url = $path;
  120. /*-----------------URL模式------------------*/
  121. $tags_html = 0;
  122. $tags_seo_pseudo = 0;
  123. if (is_dir('./weapp/Tags/')) {
  124. $tags_html = config('tpcache.plus_tags_html');
  125. if (!empty($tags_html)) {
  126. $tagsModel = new \weapp\Tags\model\TagsModel;
  127. $tagsConfData = $tagsModel->getWeappData();
  128. $tags_seo_pseudo = empty($tagsConfData['data']['seo_pseudo']) ? 2 : intval($tagsConfData['data']['seo_pseudo']);
  129. }
  130. }
  131. // URL模式
  132. static $seo_pseudo = null;
  133. null === $seo_pseudo && $seo_pseudo = config('ey_config.seo_pseudo');
  134. // 筛选标识
  135. static $url_screen_var = null;
  136. null === $url_screen_var && $url_screen_var = config('global.url_screen_var');
  137. if (3 == $seo_pseudo) { // 伪静态模式 by 小虎哥
  138. if (!isset($this->options['query'][$url_screen_var])) { // 不是筛选URL
  139. // 栏目分页
  140. if (!empty($typeid)) {
  141. if (stristr($url, '.html')) {
  142. if (1 >= $this->currentPage) {
  143. 1 < $page && $url = preg_replace('/\.html$/i', "/list_{$typeid}_{$page}.html", $url);
  144. } else {
  145. $url = preg_replace('/\/list_'.$typeid.'_(\d+)\.html$/i', '.html', $url);
  146. 1 < $page && $url = preg_replace('/\.html$/i', "/list_{$typeid}_{$page}.html", $url);
  147. }
  148. } else {
  149. $url .= '/';
  150. if (1 >= $this->currentPage) {
  151. 1 < $page && $url .= "list_{$typeid}_{$page}/";
  152. } else {
  153. $url = preg_replace('/\/list_'.$typeid.'_(\d+)\/$/i', '/', $url);
  154. 1 < $page && $url .= "list_{$typeid}_{$page}/";
  155. }
  156. }
  157. unset($parameters[$this->options['var_page']]);
  158. }
  159. }
  160. /*--end*/
  161. }
  162. /*------------------------end*/
  163. // tag静态化插件与内置的tag伪静态路由通用
  164. $ctl_act = MODULE_NAME.'@'.CONTROLLER_NAME.'@'.ACTION_NAME;
  165. if (($ctl_act != 'plugins@Tags@buildpclists' && 2 == $tags_seo_pseudo) || 3 == $tags_seo_pseudo || (3 == $seo_pseudo && empty($tags_html))) {
  166. if (!isset($this->options['query'][$url_screen_var])) { // 不是筛选URL
  167. // tag标签分页
  168. if (!empty($tagid)) {
  169. if (1 >= $this->currentPage) {
  170. 1 < $page && $url = preg_replace('/\.html$/i', "_{$page}.html", $url);
  171. } else {
  172. $url = preg_replace('/\/'.$tagid.'_(\d+)\.html$/i', "/{$tagid}.html", $url);
  173. 1 < $page && $url = preg_replace('/\.html$/i', "_{$page}.html", $url);
  174. }
  175. unset($parameters[$this->options['var_page']]);
  176. unset($parameters['tagid']);
  177. unset($this->options['query']['tagid']);
  178. }
  179. }
  180. }
  181. if (empty($tags_html)) {
  182. if (2 != $seo_pseudo && 1 == $page) { // 排除静态页面模式
  183. unset($parameters[$this->options['var_page']]);
  184. }
  185. }
  186. if (!empty($parameters)) {
  187. if (!stristr($url, 'index.php') && !stristr($url, '.html')) {
  188. $url = rtrim($url, '/').'/';
  189. }
  190. $url .= '?' . http_build_query($parameters, null, '&');
  191. }
  192. $url = get_absolute_url($url,"url");
  193. //分页路径处理
  194. if(strpos($url, 'zczl') !== false){
  195. //职称分类列表
  196. $url = $this->urlhandle($url);
  197. }else if(strpos($url, 'gonglve') !== false){
  198. $url = $this->urlhandle($url);
  199. $url = str_replace("gonglve","/gonglve",$url);
  200. $url = str_replace("//gonglve","/gonglve",$url);
  201. }else if(strpos($url, 'zhengce') !== false){
  202. //return $this->buildFragment();
  203. $url = $this->urlhandle($url);
  204. $url = str_replace("zhengce","/zhengce",$url);
  205. $url = str_replace("//zhengce","/zhengce",$url);
  206. }else if(strpos($url, 'fpzn') !== false){
  207. $url = $this->urlhandle($url);
  208. }else if(strpos($url, 'zcdb') !== false){
  209. $url = $this->urlhandle($url);
  210. }else if(strpos($url, 'lnzt') !== false){
  211. $url = $this->urlhandle($url);
  212. }else if(strpos($url, 'wthz') !== false){
  213. $url = $this->urlhandle($url);
  214. }else if(strpos($url, 'zcsb') !== false){
  215. $url = $this->urlhandle($url);
  216. }else if(strpos($url, 'anli') !== false){
  217. $url = $this->urlhandle($url);
  218. }else if(strpos($url, 'xgwt') !== false){
  219. $url = $this->urlhandle($url);
  220. }else if(strpos($url, 'zclw') !== false){
  221. $url = $this->urlhandle($url);
  222. }else if(strpos($url, 'lwck') !== false){
  223. $url = $this->urlhandle($url);
  224. }else{
  225. }
  226. return $url . $this->buildFragment();
  227. }
  228. public function urlhandle($url){
  229. $url_arr = parse_url($url);
  230. parse_str($url_arr['query'], $params);
  231. $url_arr['path'] = str_replace('/', "", $url_arr['path']);
  232. if(strpos($url_arr['path'], '-') !== false) {
  233. $url_path = explode('-',$url_arr['path']);
  234. $url_arr['path'] = $url_path[0];
  235. }
  236. //var_dump($url_arr);
  237. if(isset($params['page'])){
  238. $url = '/'.$url_arr['path'].'-'.$params['page'];
  239. }else{
  240. $url = '/'.$url_arr['path'];
  241. }
  242. return $url;
  243. }
  244. /**
  245. * 自动获取当前页码
  246. * @param string $varPage
  247. * @param int $default
  248. * @return int
  249. */
  250. public static function getCurrentPage($varPage = 'page', $default = 1)
  251. {
  252. $page = (int) Request::instance()->param($varPage);
  253. if (filter_var($page, FILTER_VALIDATE_INT) !== false && $page >= 1) {
  254. return $page;
  255. }
  256. return $default;
  257. }
  258. /**
  259. * 自动获取当前的path
  260. * @return string
  261. */
  262. public static function getCurrentPath()
  263. {
  264. return Request::instance()->baseUrl();
  265. }
  266. public function total()
  267. {
  268. if ($this->simple) {
  269. throw new \DomainException('not support total');
  270. }
  271. return $this->total;
  272. }
  273. public function listRows()
  274. {
  275. return $this->listRows;
  276. }
  277. public function currentPage()
  278. {
  279. return $this->currentPage;
  280. }
  281. public function lastPage()
  282. {
  283. if ($this->simple) {
  284. throw new \DomainException('not support last');
  285. }
  286. return $this->lastPage;
  287. }
  288. /**
  289. * 数据是否足够分页
  290. * @return boolean
  291. */
  292. public function hasPages()
  293. {
  294. return !(1 == $this->currentPage && !$this->hasMore);
  295. }
  296. /**
  297. * 创建一组分页链接
  298. *
  299. * @param int $start
  300. * @param int $end
  301. * @return array
  302. */
  303. public function getUrlRange($start, $end)
  304. {
  305. $urls = [];
  306. for ($page = $start; $page <= $end; $page++) {
  307. $urls[$page] = $this->url($page);
  308. }
  309. return $urls;
  310. }
  311. /**
  312. * 设置URL锚点
  313. *
  314. * @param string|null $fragment
  315. * @return $this
  316. */
  317. public function fragment($fragment)
  318. {
  319. $this->options['fragment'] = $fragment;
  320. return $this;
  321. }
  322. /**
  323. * 添加URL参数
  324. *
  325. * @param array|string $key
  326. * @param string|null $value
  327. * @return $this
  328. */
  329. public function appends($key, $value = null)
  330. {
  331. if (!is_array($key)) {
  332. $queries = [$key => $value];
  333. } else {
  334. $queries = $key;
  335. }
  336. foreach ($queries as $k => $v) {
  337. if ($k !== $this->options['var_page']) {
  338. $this->options['query'][$k] = $v;
  339. }
  340. }
  341. return $this;
  342. }
  343. /**
  344. * 构造锚点字符串
  345. *
  346. * @return string
  347. */
  348. protected function buildFragment()
  349. {
  350. return $this->options['fragment'] ? '#' . $this->options['fragment'] : '';
  351. }
  352. /**
  353. * 渲染分页html
  354. * @return mixed
  355. */
  356. abstract public function render();
  357. public function items()
  358. {
  359. return $this->items->all();
  360. }
  361. public function getCollection()
  362. {
  363. return $this->items;
  364. }
  365. public function isEmpty()
  366. {
  367. return $this->items->isEmpty();
  368. }
  369. /**
  370. * 给每个元素执行个回调
  371. *
  372. * @param callable $callback
  373. * @return $this
  374. */
  375. public function each(callable $callback)
  376. {
  377. foreach ($this->items as $key => $item) {
  378. $result = $callback($item, $key);
  379. if (false === $result) {
  380. break;
  381. } elseif (!is_object($item)) {
  382. $this->items[$key] = $result;
  383. }
  384. }
  385. return $this;
  386. }
  387. /**
  388. * Retrieve an external iterator
  389. * @return Traversable An instance of an object implementing <b>Iterator</b> or
  390. * <b>Traversable</b>
  391. */
  392. public function getIterator()
  393. {
  394. return new ArrayIterator($this->items->all());
  395. }
  396. /**
  397. * Whether a offset exists
  398. * @param mixed $offset
  399. * @return bool
  400. */
  401. public function offsetExists($offset)
  402. {
  403. return $this->items->offsetExists($offset);
  404. }
  405. /**
  406. * Offset to retrieve
  407. * @param mixed $offset
  408. * @return mixed
  409. */
  410. public function offsetGet($offset)
  411. {
  412. return $this->items->offsetGet($offset);
  413. }
  414. /**
  415. * Offset to set
  416. * @param mixed $offset
  417. * @param mixed $value
  418. */
  419. public function offsetSet($offset, $value)
  420. {
  421. $this->items->offsetSet($offset, $value);
  422. }
  423. /**
  424. * Offset to unset
  425. * @param mixed $offset
  426. * @return void
  427. * @since 5.0.0
  428. */
  429. public function offsetUnset($offset)
  430. {
  431. $this->items->offsetUnset($offset);
  432. }
  433. /**
  434. * Count elements of an object
  435. */
  436. public function count()
  437. {
  438. return $this->items->count();
  439. }
  440. public function __toString()
  441. {
  442. return (string) $this->render();
  443. }
  444. public function toArray()
  445. {
  446. if ($this->simple) {
  447. return [
  448. 'per_page' => $this->listRows,
  449. 'current_page' => $this->currentPage,
  450. 'has_more' => $this->hasMore,
  451. 'next_item' => $this->nextItem,
  452. 'data' => $this->items->toArray(),
  453. ];
  454. } else {
  455. return [
  456. 'total' => $this->total,
  457. 'per_page' => $this->listRows,
  458. 'current_page' => $this->currentPage,
  459. 'last_page' => $this->lastPage,
  460. 'data' => $this->items->toArray(),
  461. ];
  462. }
  463. }
  464. /**
  465. * Specify data which should be serialized to JSON
  466. */
  467. public function jsonSerialize()
  468. {
  469. return $this->toArray();
  470. }
  471. public function __call($name, $arguments)
  472. {
  473. $collection = $this->getCollection();
  474. $result = call_user_func_array([$collection, $name], $arguments);
  475. if ($result === $collection) {
  476. return $this;
  477. }
  478. return $result;
  479. }
  480. }