Admin
6 months ago
Ajax
6 months ago
ApplyFilter
6 months ago
Asset
6 months ago
Capabilities
6 months ago
Check
6 months ago
Column
6 months ago
ColumnRepository
6 months ago
ColumnSize
6 months ago
Controller
6 months ago
Deprecated
6 months ago
Entity
6 months ago
Exception
6 months ago
Form
6 months ago
Helper
6 months ago
Integration
6 months ago
ListScreen
6 months ago
ListScreenFactory
6 months ago
ListScreenRepository
6 months ago
ListTable
6 months ago
Message
6 months ago
Meta
6 months ago
Nonce
6 months ago
Plugin
6 months ago
Preferences
6 months ago
Promo
6 months ago
Relation
6 months ago
Request
6 months ago
RequestHandler
6 months ago
Response
6 months ago
Sanitize
6 months ago
Screen
6 months ago
Service
6 months ago
Settings
6 months ago
Storage
6 months ago
Table
6 months ago
ThirdParty
6 months ago
Transient
6 months ago
Type
6 months ago
View
6 months ago
AdminColumns.php
6 months ago
ArrayIterator.php
6 months ago
Capabilities.php
6 months ago
Collection.php
6 months ago
Column.php
6 months ago
ColumnGroups.php
6 months ago
ColumnRepository.php
6 months ago
Config.php
6 months ago
Container.php
6 months ago
DefaultColumnsRepository.php
6 months ago
Dependencies.php
6 months ago
Expirable.php
6 months ago
Groups.php
6 months ago
Helper.php
6 months ago
Integration.php
6 months ago
IntegrationRepository.php
6 months ago
Integrations.php
6 months ago
Iterator.php
6 months ago
ListScreen.php
6 months ago
ListScreenCollection.php
6 months ago
ListScreenFactory.php
6 months ago
ListScreenGroupsFactory.php
6 months ago
ListScreenPost.php
6 months ago
ListScreenRepository.php
6 months ago
ListScreenRepositoryWritable.php
6 months ago
ListTable.php
6 months ago
ListTableFactory.php
6 months ago
Message.php
6 months ago
MetaType.php
6 months ago
Middleware.php
6 months ago
OpCacheInvalidateTrait.php
6 months ago
PluginActionLinks.php
6 months ago
PluginActionUpgrade.php
6 months ago
PluginUpdate.php
6 months ago
PostType.php
6 months ago
PostTypeRepository.php
6 months ago
Preferences.php
6 months ago
Promo.php
6 months ago
PromoCollection.php
6 months ago
Registerable.php
6 months ago
Relation.php
6 months ago
Renderable.php
6 months ago
Request.php
6 months ago
RequestAjaxHandler.php
6 months ago
RequestAjaxHandlers.php
6 months ago
RequestAjaxParser.php
6 months ago
Sanitize.php
6 months ago
Screen.php
6 months ago
ScreenController.php
6 months ago
Services.php
6 months ago
Stringable.php
6 months ago
Transient.php
6 months ago
TypedArrayIterator.php
6 months ago
View.php
6 months ago
ViewCollection.php
6 months ago
WpListTableFactory.php
6 months ago
Transient.php
71 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC; |
| 4 | |
| 5 | use LogicException; |
| 6 | |
| 7 | class Transient implements Expirable |
| 8 | { |
| 9 | |
| 10 | /** |
| 11 | * @var Storage\Option |
| 12 | */ |
| 13 | protected $option; |
| 14 | |
| 15 | /** |
| 16 | * @var Storage\Timestamp |
| 17 | */ |
| 18 | protected $timestamp; |
| 19 | |
| 20 | public function __construct(string $key, bool $network_only = false) |
| 21 | { |
| 22 | $option_factory = $network_only |
| 23 | ? new Storage\NetworkOptionFactory() |
| 24 | : new Storage\OptionFactory(); |
| 25 | |
| 26 | $this->option = $option_factory->create($key); |
| 27 | $this->timestamp = new Storage\Timestamp( |
| 28 | $option_factory->create($key . '_timestamp') |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | public function is_expired(int $timestamp = null): bool |
| 33 | { |
| 34 | return $this->timestamp->is_expired($timestamp); |
| 35 | } |
| 36 | |
| 37 | public function has_expiration_time(): bool |
| 38 | { |
| 39 | return false !== $this->timestamp->get(); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * @return mixed |
| 44 | */ |
| 45 | public function get() |
| 46 | { |
| 47 | return $this->option->get(); |
| 48 | } |
| 49 | |
| 50 | public function delete(): void |
| 51 | { |
| 52 | $this->option->delete(); |
| 53 | $this->timestamp->delete(); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * @param mixed $data |
| 58 | * @param int $expiration Time until expiration in seconds. |
| 59 | * |
| 60 | * @return bool |
| 61 | * @throws LogicException |
| 62 | */ |
| 63 | public function save($data, int $expiration): bool |
| 64 | { |
| 65 | // Always store timestamp before option data. |
| 66 | $this->timestamp->save(time() + $expiration); |
| 67 | |
| 68 | return $this->option->save($data); |
| 69 | } |
| 70 | |
| 71 | } |