# gdpr-framework/2.1.0/src/DataSubject/DataSubjectAuthenticator.php

The GDPR Framework By Data443, version 2.1.0. 136 lines.

- Page: https://pluginprobe.com/plugins/gdpr-framework/2.1.0/code/src/DataSubject/DataSubjectAuthenticator.php
- Raw: https://pluginprobe.com/plugins/gdpr-framework/2.1.0/raw/src/DataSubject/DataSubjectAuthenticator.php
- Modified: 2024-02-27T19:41:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gdpr-framework/2.1.0/code/src/DataSubject/DataSubjectAuthenticator.php#L10-L20`.

```php
<?php

namespace Codelight\GDPR\DataSubject;

/**
 * Handle authenticating the data subject either by logged in user or by email/cookie
 *
 * Class DataSubjectAuthenticator
 *
 * @package Codelight\GDPR\DataSubject
 */
class DataSubjectAuthenticator
{
    var $dataSubjectManager;
    var $dataSubjectIdentificator;

    /**
     * DataSubjectAuthenticator constructor.
     *
     * @param DataSubjectManager       $dataSubjectManager
     * @param DataSubjectIdentificator $dataSubjectIdentificator
     */
    public function __construct(DataSubjectManager $dataSubjectManager, DataSubjectIdentificator $dataSubjectIdentificator)
    {
        $this->dataSubjectManager = $dataSubjectManager;
        $this->dataSubjectIdentificator = $dataSubjectIdentificator;
    }

    /**
     * Attempt to authenticate the data subject
     *
     * @return bool|\Codelight\GDPR\DataSubject\DataSubject
     */
    public function authenticate()
    {
        // If the user is logged in, authenticate them
        if (is_user_logged_in()) {
            return apply_filters('gdpr/authenticate', $this->dataSubjectManager->getByLoggedInUser());
        }

        // If the request contains the identification cookie, validate it and identify the
        // current user
        $cookieData = $this->getIdentificationCookieData();
        if ($cookieData && $this->dataSubjectIdentificator->isKeyValid($cookieData[0], $cookieData[1])) {
            return apply_filters('gdpr/authenticate', $this->dataSubjectManager->getByEmail($cookieData[0]));
        }

        // Otherwise, we are not authenticated
        return apply_filters('gdpr/authenticate', false);
    }

    /**
     * If the request contains a new identification key, validate it, then set a new key
     * to make the previous link obsolete.
     */
    public function identify()
    {
        global $gdpr;
        // Do not attempt to identify logged in users
        if (is_user_logged_in()) {
            return;
        }

        if (isset($_REQUEST['gdpr_key']) && isset($_REQUEST['email'])) { 
            $gdpr_email = sanitize_email($_REQUEST['email']);
            $privacyToolsPageUrl = get_permalink($gdpr->Options->get('tools_page'));
			$privacyToolsPageUrl = apply_filters('privacy_tools_gdprf_page_url',$privacyToolsPageUrl);
			
            if ($this->dataSubjectIdentificator->isKeyValid($gdpr_email, $_REQUEST['gdpr_key'])) {
                $this->setIdentificationCookie($gdpr_email);
                $url = $privacyToolsPageUrl;
            } else {
                $url = add_query_arg([
                    'gdpr_notice' => 'invalid_key',
                ], $privacyToolsPageUrl);
			}
			
			wp_redirect($url);
            exit;
        }
    }

    /**
     * Set the identification cookie with the given key
     *
     * @param $key
     */
    public function setIdentificationCookie($email)
    {
        $key = $this->dataSubjectIdentificator->generateKey($email);

        setcookie(
            'gdpr_key',
            $email . '|' . $key,
            time() + (15 * 60),
            COOKIEPATH,
            COOKIE_DOMAIN,
            false,
            true
        );
    }

    /**
     * @return string
     */
    public function getIdentificationCookieData()
    {
        return isset($_COOKIE['gdpr_key']) ? explode('|', $_COOKIE['gdpr_key']) : null;
    }

    /**
     * Remove the cookie
     */
    public function deleteSession($logout = true)
    {
        unset($_COOKIE['gdpr_key']);

        setcookie(
            'gdpr_key',
            '',
            time() - 3600,
            COOKIEPATH,
            COOKIE_DOMAIN,
            false,
            true
        );

        if ($logout) {
            wp_logout();
        } else {
            wp_destroy_current_session();
            wp_clear_auth_cookie();
        }
    }
}

```
