File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pabloaso/public_html/wp-content/plugins/pretty-link/app/controllers/PrliToolsController.php
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }

class PrliToolsController extends PrliBaseController {
  public function load_hooks() {
    // Purely for reverse compatibility
    add_action('init',array($this,'redirect'));
  }

  public function route() {
    global $prli_options;

    $update_message = '';
    $action = isset($_GET['action']) ? $_GET['action'] : '';
    $nonce = isset($_GET['_wpnonce']) ? $_GET['_wpnonce'] : '';

    if($action == 'clear_all_clicks' && wp_verify_nonce($nonce, 'prli-clear-clicks-all')) {
      $update_message = $this->clear_clicks();
    }
    else if($action == 'clear_30day_clicks' && wp_verify_nonce($nonce, 'prli-clear-clicks-30day')) {
      $update_message = $this->clear_clicks(30);
    }
    else if($action == 'clear_90day_clicks' && wp_verify_nonce($nonce, 'prli-clear-clicks-90day')) {
      $update_message = $this->clear_clicks(90);
    }

    $update_message = apply_filters('prli_tools_update_message', $update_message);
    require_once(PRLI_VIEWS_PATH . '/tools/form.php');
  }

  public static function standalone_route() {
    global $prli_options;

    $action = isset($_GET['action']) ? $_GET['action'] : '';
    if(isset($_GET['k']) && $_GET['k']==$prli_options->bookmarklet_auth) {
      if( $action == 'prli_bookmarklet' && isset($_GET['target_url']) &&
          PrliUtils::is_url($_GET['target_url']) ) {
        return self::bookmark($_GET['target_url']);
      }
    }
    else {
      wp_redirect(home_url());
      exit;
    }
  }

  public static function bookmark($target_url) {
    global $prli_options, $prli_blogurl, $prli_link, $plp_update;

    $redirect_type = isset($_GET['rt']) && is_string($_GET['rt']) && $_GET['rt'] != '-1' ? sanitize_key(stripslashes($_GET['rt'])) : '';
    $track = isset($_GET['trk']) && is_numeric($_GET['trk']) && $_GET['trk'] != '-1' ? (int) $_GET['trk'] : '';
    $category = isset($_GET['ct']) && is_numeric($_GET['ct']) && $_GET['ct'] != '-1' ? (int) $_GET['ct'] : '';

    $result = prli_create_pretty_link( esc_url_raw($target_url, array('http','https')), '', '', '', 0, $track, '', '', $redirect_type );

    $plink = $prli_link->getOne($result);

    if ($plp_update->is_installed() && $category) {
      wp_set_object_terms($plink->link_cpt_id, $category, PlpLinkCategoriesController::$ctax);
    }

    $target_url = $plink->url;
    $target_url_title = $plink->name;
    $pretty_link = $prli_blogurl . PrliUtils::get_permalink_pre_slug_uri() . $plink->slug;

    $twitter_status = substr($target_url_title,0,(114 - strlen($pretty_link))) . ((strlen($target_url_title) > 114)?"...":'') . " | $pretty_link";
    $pretty_link_id = $plink->id;

    require( PRLI_VIEWS_PATH . '/shared/public_link.php' );
  }

  // This is for reverse compatibility ...
  public function redirect() {
    $path = preg_replace( '!'.home_url().'!', '', PRLI_URL.'/prli-bookmarklet.php' );

    if($_SERVER['REQUEST_URI']==$path) {
      $accepted_params = array('k','target_url','action','rt','trk','grp');
      $param_str = '';

      foreach($_GET as $k => $v) {
        if(in_array($k,$accepted_params)) {
          $param_str .= "&{$k}={$v}";
        }
      }

      header("location: /index.php?action=prli_bookmarklet{$param_str}");
      exit;
    }
  }

  private function clear_clicks($days=false) {
    global $prli_click;

    if($days===false) {
      $prli_click->clearAllClicks();
      $update_message = __('Click Database was Cleared.', 'pretty-link');
    }
    else {
      $num_clicks = $prli_click->clear_clicks_by_age_in_days($days);

      if($num_clicks) {
        $update_message = sprintf(__('Clicks older than %1$d days (%2$d Clicks) were deleted' , 'pretty-link'), $days, $num_clicks);
      }
      else {
        $update_message = sprintf(__('No clicks older than %1$d days were found, so nothing was deleted' , 'pretty-link'), $days);
      }
    }

    return $update_message;
  }
}