403Webshell
Server IP : 192.158.238.246  /  Your IP : 3.133.113.227
Web Server : LiteSpeed
System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
User : jenniferflocom ( 1321)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/7779/cwd/plugins/give/src/DonationForms/Migrations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/7779/cwd/plugins/give/src/DonationForms/Migrations/RemoveDuplicateMeta.php
<?php

namespace Give\DonationForms\Migrations;

use Give\Donations\ValueObjects\DonationMetaKeys;
use Give\Framework\Database\DB;
use Give\Framework\Migrations\Contracts\Migration;

/**
 * Remove duplicate meta keys and set correct value for form earnings
 *
 * @since 3.3.0
 */
class RemoveDuplicateMeta extends Migration
{
    /**
     * @inheritdoc
     */
    public static function id()
    {
        return 'donation-forms-remove-duplicate-meta';
    }

    /**
     * @inheritdoc
     */
    public static function title()
    {
        return 'Remove duplicate meta';
    }

    /**
     * @inheritdoc
     */
    public static function timestamp()
    {
        return strtotime('2023-06-12');
    }

    /**
     * @since 3.3.0
     */
    public function run()
    {
        $posts = DB::table('posts')
            ->select('ID')
            ->where('post_type', 'give_forms')
            ->getAll();

        foreach ($posts as $post) {
            $formEarnings = give_get_meta($post->ID, '_give_form_earnings');
            $formSales = give_get_meta($post->ID, '_give_form_sales');

            // Update meta with duplicate keys only
            if (count($formEarnings) > 1) {
                // Delete all meta
                give_delete_meta($post->ID, '_give_form_earnings');

                // Get earnings from donations
                $earnings = $this->getEarningsFromDonations($post->ID);
                give_update_meta($post->ID, '_give_form_earnings', $earnings);
            }

            if (count($formSales) > 1) {
                // Delete all meta
                give_delete_meta($post->ID, '_give_form_sales');

                // Get sales count from donations
                $sales = $this->getSalesCountFromDonations($post->ID);
                give_update_meta($post->ID, '_give_form_sales', $sales);
            }
        }
    }

    /**
     * Get earnings from donations by Form ID
     *
     * @param $formId
     *
     * @return float | int
     */
    private function getEarningsFromDonations($formId)
    {
        $donations = DB::table('posts')
            ->attachMeta(
                'give_donationmeta',
                'ID',
                'donation_id',
                [DonationMetaKeys::FORM_ID, 'formId'],
                [DonationMetaKeys::AMOUNT, 'amount'])
            ->where('post_type', 'give_payment')
            ->where('give_donationmeta_attach_meta_formId.meta_value', $formId)
            ->getAll('ARRAY_A');

        $amounts = array_column($donations, 'amount');

        return array_sum($amounts);
    }

    /**
     * Get sales count from donations by Form ID
     *
     * @param $formId
     *
     * @return int
     */
    private function getSalesCountFromDonations($formId): int
    {
        return DB::table('posts')
            ->attachMeta(
                'give_donationmeta',
                'ID',
                'donation_id',
                [DonationMetaKeys::FORM_ID, 'formId']
            )
            ->where('post_type', 'give_payment')
            ->where('post_status', 'publish')
            ->where('give_donationmeta_attach_meta_formId.meta_value', $formId)
            ->count('ID');
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit