_wp_user_id = Freemius::get_current_wp_user_id(); $this->_thread_id = mt_rand( 0, 32000 ); } /** * Try to acquire lock. If the lock is already set or is being acquired by another locker, don't do anything. * * @author Vova Feldman (@svovaf) * @since 2.1.0 * * @param int $expiration * * @return bool TRUE if successfully acquired lock. */ function try_lock( $expiration = 0 ) { if ( $this->is_locked() ) { // Already locked. return false; } set_site_transient( "locked_{$this->_wp_user_id}", $this->_thread_id, $expiration ); if ( $this->has_lock() ) { set_site_transient( "locked_{$this->_wp_user_id}", true, $expiration ); return true; } return false; } /** * Acquire lock regardless if it's already acquired by another locker or not. * * @author Vova Feldman (@svovaf) * @since 2.1.0 * * @param int $expiration */ function lock( $expiration = 0 ) { set_site_transient( "locked_{$this->_wp_user_id}", true, $expiration ); } /** * Checks if lock is currently acquired. * * @author Vova Feldman (@svovaf) * @since 2.1.0 * * @return bool */ function is_locked() { return ( false !== get_site_transient( "locked_{$this->_wp_user_id}" ) ); } /** * Unlock the lock. * * @author Vova Feldman (@svovaf) * @since 2.1.0 */ function unlock() { delete_site_transient( "locked_{$this->_wp_user_id}" ); } /** * Checks if lock is currently acquired by the current locker. * * @return bool */ private function has_lock() { return ( $this->_thread_id == get_site_transient( "locked_{$this->_wp_user_id}" ) ); } }