12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace app\common\repositories\store;
- use app\common\repositories\BaseRepository;
- use think\facade\Cache;
- class IntegralRepository extends BaseRepository
- {
- const CACHE_KEY = 'sys_int_next_day';
- public function getNextDay()
- {
- return strtotime(date('Y-m-d', strtotime('first day of +1 month 00:00:00')));
- }
- public function getInvalidDay()
- {
- $month = systemConfig('integral_clear_time');
- if ($month <= 0) return 0;
- return strtotime('last day of -' . $month . ' month 23:59:59', $this->getTimeoutDay() - 1);
- }
- public function getTimeoutDay($clear = false)
- {
- $driver = Cache::store('file');
- if (!$driver->has(self::CACHE_KEY) || $clear) {
- $driver->set(self::CACHE_KEY, $this->getNextDay(), (20 * 24 * 3600) + 3600 * 12);
- }
- return $driver->get(self::CACHE_KEY);
- }
- public function clearTimeoutDay()
- {
- Cache::store('file')->delete(self::CACHE_KEY);
- }
- }
|