PATH:
home
/
bkunreyz
/
managedmedia.org
/
wp-content
/
plugins
/
optinmonster
/
OMAPI
<?php /** * Api Auth class. * * @since 2.6.5 * * @package OMAPI * @author Justin Sternberg */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Api Auth class. * * @since 2.6.5 */ class OMAPI_ApiAuth { /** * Get the auth token from the DB.. * * @since 2.6.5 * * @return array Auth token array. */ public static function get_token() { return get_option( 'optinmonster_site_token', array( 'expires' => 0, 'tt' => '', ) ); } /** * Check if token exists in DB. * * @since 2.6.5 * * @return boolean Whether it exists. */ public static function has_token() { $token = self::get_token(); return ! empty( $token['expires'] ) && ! empty( $token['tt'] ); } /** * Get the tt value from the auth token (or generate the auth token). * * @since 2.6.5 * * @return string The tt value from the auth token. */ public static function get_tt() { $token = self::get_token(); if ( empty( $token['tt'] ) ) { // if TT is empty, generate a new one, save it and then return it. $token = array( 'expires' => time() + ( 2 * MINUTE_IN_SECONDS ), 'tt' => self::generate_tt(), ); update_option( 'optinmonster_site_token', $token ); } return $token['tt']; } /** * Generate the tt value (long random string). * * @since 2.6.5 * * @return string Tt value. */ public static function generate_tt() { return hash( 'sha512', wp_generate_password( 128, true, true ) . AUTH_SALT . uniqid( '', true ) ); } /** * Validate whether given tt value matches auth token tt value, * and whether the auth token has expired. * * @since 2.6.5 * * @param string $passed_tt The tt value to validate. * * @return bool Whether tt value is validated with the token. */ public static function validate_token( $passed_tt = '' ) { if ( empty( $passed_tt ) ) { return false; } $token = self::get_token(); if ( empty( $token ) ) { return false; } $expired = ! empty( $token['expires'] ) ? $token['expires'] < time() : true; $tt = ! empty( $token['tt'] ) ? $token['tt'] : ''; $matches = hash_equals( $tt, $passed_tt ); return $matches && ! $expired; } /** * Delete the auth token. * * @since 2.6.5 * * @return bool True if the option was deleted, false otherwise. */ public static function delete_token() { return delete_option( 'optinmonster_site_token' ); } }
[-] Refresh.php
[edit]
[-] InstallSkin.php
[edit]
[-] Inserter.php
[edit]
[-] Promos.php
[edit]
[-] Review.php
[edit]
[+]
Shortcodes
[-] ApiKey.php
[edit]
[-] ConstantContact.php
[edit]
[+]
Rules
[-] Actions.php
[edit]
[-] Pages.php
[edit]
[-] Widget.php
[edit]
[-] MailPoet.php
[edit]
[-] MemberPress.php
[edit]
[-] Menu.php
[edit]
[-] Ajax.php
[edit]
[-] Save.php
[edit]
[-] Shortcode.php
[edit]
[-] Debug.php
[edit]
[-] ClassicEditor.php
[edit]
[-] Sites.php
[edit]
[-] RevenueAttribution.php
[edit]
[-] Partners.php
[edit]
[-] Blocks.php
[edit]
[-] Api.php
[edit]
[+]
WPForms
[+]
Elementor
[-] Support.php
[edit]
[-] InstallSkinCompat.php
[edit]
[-] Validate.php
[edit]
[+]
..
[-] Output.php
[edit]
[-] OmuApi.php
[edit]
[+]
Integrations
[-] WpErrorException.php
[edit]
[-] Welcome.php
[edit]
[-] RestApi.php
[edit]
[-] EasyDigitalDownloads.php
[edit]
[-] WooCommerce.php
[edit]
[+]
EasyDigitalDownloads
[-] Rules.php
[edit]
[-] Urls.php
[edit]
[+]
WooCommerce
[-] Elementor.php
[edit]
[-] Notifications.php
[edit]
[-] Utils.php
[edit]
[+]
MemberPress
[+]
Plugins
[-] WPForms.php
[edit]
[-] ApiAuth.php
[edit]
[-] Type.php
[edit]
[-] Plugins.php
[edit]
[-] BaseRestApi.php
[edit]
[+]
Promos
[-] AssetLoader.php
[edit]