HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/digisferach.sumar.com.py/wp-content/plugins/peepso/classes/userfollower.php
<?php

class PeepSoUserFollower {

    const TABLE = 'peepso_user_followers';

    const CACHE_TIME = 120;

    public $passive_user_id;
    public $active_user_id;

    public $is_follower = 0; // indicated if the DB record exists

    public $follow      = 0;
    public $notify      = 0;
    public $email       = 0;

    private $_table;

    public function __construct($passive_user_id, $active_user_id = NULL, $create = FALSE) {

        if(NULL == $active_user_id) {
            $active_user_id = get_current_user_id();
        }

        global $wpdb;

        $this->passive_user_id = intval($passive_user_id);
        $this->active_user_id = intval($active_user_id);

        $this->_table = $wpdb->prefix.PeepSoUserFollower::TABLE;


        if( $this->active_user_id > 0 && $this->passive_user_id > 0) {
            $this->init($create);
        }
    }

    public function init($create = FALSE)
    {
        // Reset all flags
        $this->is_follower  = 0;
        $this->follow       = 0;
        $this->notify		= 0;
        $this->email        = 0;

        // Calculate flags based on the database state
        global $wpdb;

        $query = "SELECT * FROM $this->_table WHERE `uf_passive_user_id`=%d AND `uf_active_user_id`=%d LIMIT 1";
        $query = $wpdb->prepare($query, array($this->passive_user_id, $this->active_user_id));

        $follower = $wpdb->get_row($query);

        if (NULL !== $follower) {

            $this->is_follower  = 1;
            $this->notify		= $follower->uf_notify;
            $this->email        = $follower->uf_email;

            if ($create) {
                $this->follow = 1;
            } else {
                $this->follow = $follower->uf_follow;
            }

            $this->save();

        } else if (TRUE == $create) {
            $query = "INSERT INTO $this->_table (`uf_active_user_id`, `uf_passive_user_id`, `uf_follow`) VALUES (%d, %d, 1)";
            $wpdb->query($wpdb->prepare($query, $this->active_user_id, $this->passive_user_id));

            $this->is_follower  = 1;
            $this->follow       = 1;
            $this->notify		= 0;
            $this->email        = 0;
        }
    }

    public function set($prop, $value) {
        if(!$this->is_follower || !property_exists($this, $prop)) {
            return NULL;
        }

        $this->$prop = $value;

        self::count_followers($this->active_user_id, TRUE);
        self::count_followers($this->passive_user_id, TRUE);

        self::count_following($this->active_user_id, TRUE);
        self::count_following($this->passive_user_id, TRUE);


        return $this->save();
    }

    public function save() {
        if(!$this->is_follower) {
            return NULL;
        }

        global $wpdb;
        return $wpdb->update($this->_table, array( 'uf_follow'=>$this->follow, 'uf_notify'=>$this->notify,'uf_email'=>$this->email), array('uf_passive_user_id'=>$this->passive_user_id, 'uf_active_user_id'=>$this->active_user_id) );
    }

    public static function count_followers(int $user_id, $reset = FALSE) {

        $count = 0;

        if($user_id) {
            $key = 'followers_count_' . $user_id;

            // MayFly cache?
            if(!$reset) {
                $cache_count = PeepSo3_Mayfly_Int::get($key);

                if (NULL !== $cache_count) {
                    return $cache_count;
                }
            }

            // Refresh count
            global $wpdb;
            $count = intval($wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->prefix.PeepSoUserFollower::TABLE." WHERE uf_passive_user_id = $user_id AND uf_follow = 1"));
            PeepSo3_Mayfly_Int::set($key, $count, self::CACHE_TIME);
        }

        return $count;
    }

    public static function count_following($user_id, $reset = FALSE) {
        $count = 0;

        if($user_id) {
            $key = 'following_count_' . $user_id;

            // MayFly cache?
            if(!$reset) {
                $cache_count = PeepSo3_Mayfly_Int::get($key);

                if (NULL !== $cache_count) {
                    return $cache_count;
                }
            }

            // Refresh count
            global $wpdb;
            $count = intval($wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->prefix.PeepSoUserFollower::TABLE." WHERE uf_active_user_id = $user_id AND uf_follow = 1"));
            PeepSo3_Mayfly_Int::set($key, $count, self::CACHE_TIME);
        }

        return $count;
    }

    public static function get_followers($args) {
        global $wpdb;
        return $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix.PeepSoUserFollower::TABLE . " WHERE uf_passive_user_id = %d AND uf_follow = 1 LIMIT %d, %d", $args['user_id'], $args['offset'], $args['limit']));
    }

    
    public static function get_following($args) {
        global $wpdb;
        return $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix.PeepSoUserFollower::TABLE . " WHERE uf_active_user_id = %d AND uf_follow = 1 LIMIT %d, %d", $args['user_id'], $args['offset'], $args['limit']));
    }
}