HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/give/src/Log/Migrations/RemoveSensitiveLogs.php
<?php

declare(strict_types=1);

namespace Give\Log\Migrations;

use Give\Framework\Database\DB;
use Give\Framework\Migrations\Contracts\Migration;
use Give\Log\Log;

/**
 * Removes logs that contain sensitive information.
 *
 * @since 2.20.0
 */
class RemoveSensitiveLogs extends Migration
{
    /**
     * @inheritdoc
     */
    public static function id(): string
    {
        return 'remove_sensitive_logs';
    }

    /**
     * @inheritdoc
     */
    public static function title(): string
    {
        return 'Remove logs wth sensitive information';
    }

    /**
     * @inheritdoc
     */
    public static function timestamp()
    {
        return strtotime('2022-05-04');
    }

    /**
     * @inheritdoc
     */
    public function run()
    {
        $tableName = DB::prefix('give_log');
        $redactions = implode('|', Log::getRedactionList());

        DB::query(" DELETE FROM $tableName WHERE data REGEXP '$redactions' ");
    }
}