user = $user; $this->cache = ObjectCache::getInstance( 'db-replicated' ); } /** * @param User $user * @return EchoSeenTime */ public static function newFromUser( User $user ) { return new self( $user ); } /** * @param int $flags BagOStuff::READ_LATEST to use the master * @return string|bool false if no stored time */ public function getTime( $type = 'all', $flags = 0 ) { $vals = array(); if ( $type === 'all' ) { foreach ( self::$allowedTypes as $allowed ) { $vals[] = $this->getTime( $allowed ); } return max( $vals ); } if ( $this->validateType( $type ) ) { $key = wfMemcKey( 'echo', 'seen', $type, 'time', $this->user->getId() ); $cas = 0; // Unused, but we have to pass something by reference $data = $this->cache->get( $key, $cas, $flags ); if ( $data === false ) { // Check if the user still has it set in their preferences $data = $this->user->getOption( 'echo-seen-time', false ); } } return $data; } public function setTime( $time, $type = 'all' ) { if ( $type === 'all' ) { foreach ( self::$allowedTypes as $allowed ) { $this->setTime( $time, $allowed ); } } else { if ( $this->validateType( $type ) ) { $key = wfMemcKey( 'echo', 'seen', $type, 'time', $this->user->getId() ); return $this->cache->set( $key, $time ); } } } /** * Validate the given type, make sure it is allowed. * * @param string $type Given type * @return bool Type is allowed */ private function validateType( $type ) { return in_array( $type, self::$allowedTypes ); } }