Example #1
0
/**
 * @usage Generate play button for link template
 * @param $package
 * @param bool $return
 * @return mixed|string|void
 */
function wpdm_audio_player($package, $return = true)
{
    $audiohtml = "";
    if (wpdm_is_locked($package['ID'])) {
        return wpdm_sample_audio_single($package, $return);
    }
    if (!is_array($package['files']) || count($package['files']) == 0) {
        return;
    }
    $audios = array();
    $nonce = wp_create_nonce($_SERVER['REQUEST_URI']);
    foreach ($package['files'] as $index => $file) {
        $realpath = file_exists($file) ? $file : UPLOAD_DIR . $file;
        $filetype = wp_check_filetype($realpath);
        $tmpvar = explode('/', $filetype['type']);
        if ($tmpvar[0] == 'audio') {
            $audios[$index] = $file;
        }
    }
    if (count($audios) > 0) {
        $song = home_url("/?wpdmdl={$package['ID']}&ind=0&play=" . basename(array_shift($audios)));
        $audiohtml = do_shortcode("[audio {$song}]");
    }
    if ($return) {
        return $audiohtml;
    }
    echo $audiohtml;
}
 /**
  * @usage Callback function for [file_list_extended] tag
  * @param $file
  * @return string
  * @usage Generate file list with preview
  */
 public static function Box($file)
 {
     global $current_user;
     $file['files'] = maybe_unserialize($file['files']);
     $fhtml = '';
     $idvdl = \WPDM\Package::isSingleFileDownloadAllowed($file['ID']);
     //isset($file['individual_file_download']) ? $file['individual_file_download'] : 0;
     $pd = isset($file['publish_date']) && $file['publish_date'] != "" ? strtotime($file['publish_date']) : 0;
     $xd = isset($file['expire_date']) && $file['expire_date'] != "" ? strtotime($file['expire_date']) : 0;
     $cur = is_user_logged_in() ? $current_user->roles : array('guest');
     $_SESSION['wpdmfilelistcd_' . $file['ID']] = 1;
     if ($xd > 0 && $xd < time() || $pd > 0 && $pd > time()) {
         $idvdl = 0;
     }
     $dir = isset($file['package_dir']) ? $file['package_dir'] : '';
     $dfiles = array();
     if ($dir != '') {
         $dfiles = wpdm_get_files($dir, false);
     }
     $file['access'] = wpdm_allowed_roles($file['ID']);
     if (count($file['files']) > 0 || count($dfiles) > 0) {
         $fileinfo = isset($file['fileinfo']) ? $file['fileinfo'] : array();
         $pwdlock = isset($file['password_lock']) ? $file['password_lock'] : 0;
         //Check if any other lock option apllied for this package
         $olock = wpdm_is_locked($file['ID']) ? 1 : 0;
         $swl = 0;
         if (!isset($file['quota']) || $file['quota'] <= 0) {
             $file['quota'] = 9999999999999;
         }
         if (is_user_logged_in()) {
             $cur[] = 'guest';
         }
         if (!isset($file['access']) || count($file['access']) == 0 || !wpdm_user_has_access($file['ID']) || wpdm_is_download_limit_exceed($file['ID']) || $file['quota'] <= $file['download_count']) {
             $olock = 1;
         }
         $pwdcol = $dlcol = '';
         if ($pwdlock && $idvdl) {
             $pwdcol = "<th>" . __("Password", "wpdmpro") . "</th>";
         }
         if ($idvdl && ($pwdlock || !$olock)) {
             $dlcol = "<th align=center>" . __("Download", "wpdmpro") . "</th>";
             $swl = 1;
         }
         $allfiles = is_array($file['files']) ? $file['files'] : array();
         //$allfiles = array_merge($allfiles, $dfiles);
         $fhtml = "<div class='row' id='xfilelist'>";
         if (is_array($allfiles)) {
             foreach ($allfiles as $fileID => $sfile) {
                 $fhtml .= "<div class='col-md-4 col-sm-6 col-xs-6'><div class='panel panel-default'>";
                 $ind = \WPDM_Crypt::Encrypt($sfile);
                 if (!isset($fileinfo[$sfile]) || !@is_array($fileinfo[$sfile])) {
                     $fileinfo[$sfile] = array();
                 }
                 if (!@is_array($fileinfo[$fileID])) {
                     $fileinfo[$fileID] = array();
                 }
                 $filePass = isset($fileinfo[$sfile]['password']) ? $fileinfo[$sfile]['password'] : (isset($fileinfo[$fileID]['password']) ? $fileinfo[$fileID]['password'] : '');
                 $fileTitle = isset($fileinfo[$sfile]['title']) && $fileinfo[$sfile]['title'] != '' ? $fileinfo[$sfile]['title'] : (isset($fileinfo[$fileID]['title']) && $fileinfo[$fileID]['title'] != '' ? $fileinfo[$fileID]['title'] : preg_replace("/([0-9]+)_/", "", wpdm_basename($sfile)));
                 if ($filePass == '' && $pwdlock) {
                     $filePass = $file['password'];
                 }
                 $fhtml .= "<div class='panel-heading ttip' title='{$fileTitle}'>{$fileTitle}</div>";
                 $imgext = array('png', 'jpg', 'jpeg', 'gif');
                 $ext = explode(".", $sfile);
                 $ext = end($ext);
                 $ext = strtolower($ext);
                 $filepath = file_exists($sfile) ? $sfile : UPLOAD_DIR . $sfile;
                 $thumb = "";
                 if ($ext == '' || !file_exists(WPDM_BASE_DIR . 'assets/file-type-icons/' . $ext . '.png')) {
                     $ext = '_blank';
                 }
                 if (in_array($ext, $imgext)) {
                     $thumb = wpdm_dynamic_thumb($filepath, array(88, 88));
                 }
                 if ($thumb) {
                     $fhtml .= "<div class='panel-body text-center'><img class='file-thumb' src='{$thumb}' alt='{$fileTitle}' /></div><div class='panel-footer footer-info'>" . wpdm_file_size($sfile) . "</div><div class='panel-footer'>";
                 } else {
                     $fhtml .= "<div class='panel-body text-center'><img class='file-ico' src='" . WPDM_BASE_URL . 'assets/file-type-icons/' . $ext . '.png' . "' alt='{$fileTitle}' /></div><div class='panel-footer footer-info'>" . wpdm_file_size($sfile) . "</div><div class='panel-footer'>";
                 }
                 if ($swl) {
                     if ($filePass != '' && $pwdlock) {
                         $fhtml .= "<div class='input-group'><input  onkeypress='jQuery(this).removeClass(\"input-error\");' size=10 type='password' value='' id='pass_{$file['ID']}_{$ind}' placeholder='Password' name='pass' class='form-control input-sm inddlps' />";
                     }
                     if ($filePass != '' && $pwdlock) {
                         $fhtml .= "<span class='input-group-btn'><button class='inddl btn btn-primary btn-sm' file='{$sfile}' rel='" . wpdm_download_url($file) . "&ind=" . $ind . "' pass='******'ID']}_{$ind}'><i class='fa fa-download'></i></button></span></div>";
                     } else {
                         $fhtml .= "<a class='btn btn-primary btn-sm btn-block' href='" . wpdm_download_url($file) . "&ind=" . $ind . "'><span class='pull-left'><i class='fa fa-download'></i></span>&nbsp;" . __("Download", "wpdmpro") . "</a>";
                     }
                 }
                 $fhtml .= "</div></div></div>";
             }
         }
         if (is_array($dfiles)) {
             foreach ($dfiles as $ind => $sfile) {
                 $ind = \WPDM_Crypt::Encrypt($sfile);
                 $fhtml .= "<div class='col-md-4 col-sm-6 col-xs-6'><div class='panel panel-default'>";
                 if (!isset($fileinfo[$sfile]) || !@is_array($fileinfo[$sfile])) {
                     $fileinfo[$sfile] = array();
                 }
                 if (!isset($fileinfo[$sfile]['password'])) {
                     $fileinfo[$sfile]['password'] = "";
                 }
                 if ($fileinfo[$sfile]['password'] == '' && $pwdlock) {
                     $fileinfo[$sfile]['password'] = $file['password'];
                 }
                 $ttl = isset($fileinfo[$sfile]['title']) && $fileinfo[$sfile]['title'] != "" ? $fileinfo[$sfile]['title'] : preg_replace("/([0-9]+)_/", "", wpdm_basename($sfile));
                 $cttl = is_dir($sfile) ? "<a href='#' class='wpdm-indir' data-dir='{$ttl}' data-pid='{$file['ID']}'>{$ttl}/</a>" : $ttl;
                 $fhtml .= "<div class='panel-heading ttip' title='{$ttl}'>{$cttl}</div>";
                 $imgext = array('png', 'jpg', 'jpeg', 'gif');
                 $ext = explode(".", $sfile);
                 $ext = end($ext);
                 $ext = strtolower($ext);
                 if (is_dir($sfile)) {
                     $ext = 'folder';
                 }
                 $filepath = file_exists($sfile) ? $sfile : UPLOAD_DIR . $sfile;
                 $thumb = "";
                 $showt = 1;
                 if (in_array($ext, $imgext) && apply_filters('file_list_extended_show_thumbs', $showt)) {
                     $thumb = wpdm_dynamic_thumb($filepath, array(88, 88));
                 }
                 $fticon = WPDM_BASE_URL . 'assets/file-type-icons/' . $ext . '.png';
                 if (!file_exists(WPDM_BASE_DIR . 'assets/file-type-icons/' . $ext . '.png')) {
                     $fticon = WPDM_BASE_URL . 'assets/file-type-icons/ini.png';
                 }
                 if ($thumb) {
                     $fhtml .= "<div class='panel-body text-center'><img class='file-thumb' src='{$thumb}' alt='{$ttl}' /></div><div class='panel-footer footer-info'>" . wpdm_file_size($sfile) . "</div><div class='panel-footer'>";
                 } else {
                     $fhtml .= "<div class='panel-body text-center'><img class='file-ico' src='" . $fticon . "' alt='{$ttl}' /></div><div class='panel-footer footer-info'>" . wpdm_file_size($sfile) . "</div><div class='panel-footer'>";
                 }
                 if ($swl) {
                     $fileinfo[$sfile]['password'] = $fileinfo[$sfile]['password'] == '' ? $file['password'] : $fileinfo[$sfile]['password'];
                     if ($fileinfo[$sfile]['password'] != '' && $pwdlock && !is_dir($sfile)) {
                         $fhtml .= "<div class='input-group'><input  onkeypress='jQuery(this).removeClass(\"input-error\");' size=10 type='password' value='' id='pass_{$file['ID']}_{$ind}' placeholder='Password' name='pass' class='form-control input-sm inddlps' />";
                     }
                     if ($fileinfo[$sfile]['password'] != '' && $pwdlock && !is_dir($sfile)) {
                         $fhtml .= "<span class='input-group-btn'><button class='inddl btn btn-primary btn-sm' file='{$sfile}' rel='" . wpdm_download_url($file) . "&ind=" . $ind . "' pass='******'ID']}_{$ind}'><i class='fa fa-download'></i></button></span></div>";
                     } else {
                         if (!is_dir($sfile)) {
                             $fhtml .= "<a class='btn btn-primary btn-sm btn-block' href='" . wpdm_download_url($file) . "&ind=" . $ind . "'><span class='pull-left'><i class='fa fa-download'></i></span>&nbsp;" . __("Download", "wpdmpro") . "</a>";
                         } else {
                             $fhtml .= "<a class='btn btn-primary btn-sm btn-block wpdm-indir' href='#'  data-dir='{$ttl}' data-pid='{$file['ID']}'><span class='pull-left'><i class='fa fa-folder'></i></span> &nbsp;" . __("Browse", "wpdmpro") . "</a>";
                         }
                     }
                 }
                 $fhtml .= "</div></div></div>";
             }
         }
         $fhtml .= "</div>";
         $siteurl = home_url('/');
         $fhtml .= "<script type='text/javascript' language='JavaScript'> jQuery('.inddl').click(function(){ var tis = this; jQuery.post('{$siteurl}',{wpdmfileid:'{$file['ID']}',wpdmfile:jQuery(this).attr('file'),actioninddlpvr:1,filepass:jQuery(jQuery(this).attr('pass')).val()},function(res){ res = res.split('|'); var ret = res[1]; if(ret=='error') jQuery(jQuery(tis).attr('pass')).addClass('input-error'); if(ret=='ok') location.href=jQuery(tis).attr('rel')+'&_wpdmkey='+res[2];});}); </script> ";
     }
     return $fhtml;
 }
 function wpdm_embed_tree()
 {
     if (wpdm_query_var('task', 'txt') != 'wpdm_tree') {
         return;
     }
     global $wpdb;
     $cats = get_terms('wpdmcategory', array('hide_empty' => false));
     echo "<ul class=\"jqueryFileTree\" style=\"display: none;\">";
     // All Cats
     $scat = wpdm_query_var('dir') == '/' ? '' : wpdm_query_var('dir', 'txt');
     foreach ($cats as $id => $cat) {
         if ($cat->parent == intval($scat)) {
             echo "<li class=\"directory collapsed\"><a href=\"#\" rel=\"" . $cat->term_id . "\">" . $cat->name . "</a></li>";
         }
     }
     // All files
     $params = array('post_type' => 'wpdmpro', 'posts_per_page' => 9999);
     //if($scat!='')
     $params['tax_query'] = array(array('taxonomy' => 'wpdmcategory', 'field' => 'term_id', 'terms' => $scat, 'include_children' => false));
     $packs = new WP_Query($params);
     while ($packs->have_posts()) {
         $packs->the_post();
         $files = maybe_unserialize(get_post_meta(get_the_ID(), '__wpdm_files', true));
         if (count($files) == 1) {
             $ext = explode(".", $files[0]);
             $ext = end($ext);
         }
         if (count($files) > 1) {
             $ext = 'zip';
         }
         if (!is_array($files) || count($files) == 0) {
             $ext = '_blank';
         }
         if (wpdm_query_var('ddl', 'int') == 0 || wpdm_is_locked(get_the_ID())) {
             echo "<li  class=\"file ext_{$ext}\"><a href='" . get_permalink(get_the_ID()) . "' rel='" . get_permalink(get_the_ID()) . "'>" . get_the_title() . "</a></li>";
         } else {
             echo "<li  class=\"file ext_{$ext}\"><a href='" . wpdm_download_url(get_the_ID()) . "' rel='" . wpdm_download_url(get_the_ID()) . "'>" . get_the_title() . "</a></li>";
         }
     }
     echo "</ul>";
     die;
 }
/**
 * @usage Handles ajax file list request for dir attachment
 */
function wpdm_print_file_list()
{
    if (isset($_POST['action']) && $_POST['action'] == 'wpdmfilelistcd') {
        if (isset($_SESSION['wpdmfilelistcd_' . $_POST['pid']])) {
            $file = wpdm_get_package((int) $_POST['pid']);
            $fhtml = '';
            $idvdl = \WPDM\Package::isSingleFileDownloadAllowed($file['ID']);
            //isset($file['individual_file_download']) ? $file['individual_file_download'] : 0;
            $pd = isset($file['publish_date']) && $file['publish_date'] != "" ? strtotime($file['publish_date']) : 0;
            $xd = isset($file['expire_date']) && $file['expire_date'] != "" ? strtotime($file['expire_date']) : 0;
            $fileinfo = isset($file['fileinfo']) ? $file['fileinfo'] : array();
            $pwdlock = isset($file['password_lock']) ? $file['password_lock'] : 0;
            $olock = wpdm_is_locked($file['ID']) ? 1 : 0;
            $swl = 0;
            if (!isset($file['quota']) || $file['quota'] <= 0) {
                $file['quota'] = 9999999999999;
            }
            if (is_user_logged_in()) {
                $cur[] = 'guest';
            }
            if (!wpdm_user_has_access($file['ID']) || wpdm_is_download_limit_exceed($file['ID']) || $file['quota'] <= $file['download_count']) {
                $olock = 1;
            }
            $pwdcol = $dlcol = '';
            if ($pwdlock && $idvdl) {
                $pwdcol = "<th>" . __("Password", "wpdmpro") . "</th>";
            }
            if ($idvdl && ($pwdlock || !$olock)) {
                $dlcol = "<th align=center>" . __("Download", "wpdmpro") . "</th>";
                $swl = 1;
            }
            $dir = get_post_meta($_POST['pid'], '__wpdm_package_dir', true);
            $cd = esc_attr($_POST['cd']);
            $cd = str_replace(array('../', './'), '', $cd);
            if ($cd == '/') {
                $cd = '';
            }
            $dfiles = array();
            if ($dir != '') {
                $realpath = realpath($dir . $cd) . '/';
                if (strpos("--" . $realpath, $dir) > 0) {
                    $dfiles = wpdm_get_files($dir . $cd, false);
                } else {
                    $dfiles = array();
                }
            }
            $drs = explode('/', $cd);
            $bcrm[] = "<a href='#' class='wpdm-indir' data-dir='/' data-pid='{$file['ID']}'>" . __('Home', 'wpdmpro') . "</a>";
            $brdp = '';
            foreach ($drs as $tdir) {
                $brdp .= $tdir . '/';
                if ($tdir != '') {
                    $bcrm[] = "<a href='#' class='wpdm-indir' data-dir='{$brdp}' data-pid='{$file['ID']}'>{$tdir}</a>";
                }
            }
            $breadcrumb = implode(" <i class='fa fa-angle-right'></i> ", $bcrm);
            $fhtml = "<div class='breadcrumb'>{$breadcrumb}</div><div class='row' id='xfilelist'>";
            if (is_array($dfiles)) {
                foreach ($dfiles as $ind => $sfile) {
                    $ind = WPDM_Crypt::Encrypt($sfile);
                    $fhtml .= "<div class='col-md-4 col-sm-6 col-xs-6'><div class='panel panel-default'>";
                    if (!isset($fileinfo[$sfile]) || !@is_array($fileinfo[$sfile])) {
                        $fileinfo[$sfile] = array();
                    }
                    if (!isset($fileinfo[$sfile]['password'])) {
                        $fileinfo[$sfile]['password'] = "";
                    }
                    if ($fileinfo[$sfile]['password'] == '' && $pwdlock) {
                        $fileinfo[$sfile]['password'] = $file['password'];
                    }
                    $ttl = isset($fileinfo[$sfile]['title']) && $fileinfo[$sfile]['title'] != "" ? $fileinfo[$sfile]['title'] : preg_replace("/([0-9]+)_/", "", wpdm_basename($sfile));
                    $cttl = is_dir($sfile) ? "<a href='#' class='wpdm-indir' data-dir='{$cd}/{$ttl}' data-pid='{$file['ID']}'>{$ttl}/</a>" : $ttl;
                    $fhtml .= "<div class='panel-heading ttip' title='{$ttl}'>{$cttl}</div>";
                    $imgext = array('png', 'jpg', 'jpeg', 'gif');
                    $ext = explode(".", $sfile);
                    $ext = end($ext);
                    $ext = strtolower($ext);
                    $info = wpdm_file_size($sfile);
                    if (is_dir($sfile)) {
                        $ext = 'folder';
                        $info = count(scandir($sfile)) . " " . __('files', 'wpdmpro');
                    }
                    $filepath = file_exists($sfile) ? $sfile : UPLOAD_DIR . $sfile;
                    $thumb = "";
                    if (in_array($ext, $imgext)) {
                        $thumb = wpdm_dynamic_thumb($filepath, array(88, 88));
                    }
                    $fticon = WPDM_BASE_URL . 'assets/file-type-icons/' . $ext . '.png';
                    if (!file_exists(WPDM_BASE_DIR . 'assets/file-type-icons/' . $ext . '.png')) {
                        $fticon = WPDM_BASE_URL . 'assets/file-type-icons/ini.png';
                    }
                    if ($thumb) {
                        $fhtml .= "<div class='panel-body text-center'><img class='file-thumb' src='{$thumb}' alt='{$ttl}' /></div><div class='panel-footer footer-info'>" . $info . "</div><div class='panel-footer'>";
                    } else {
                        $fhtml .= "<div class='panel-body text-center'><img class='file-ico' src='" . $fticon . "' alt='{$ttl}' /></div><div class='panel-footer footer-info'>" . $info . " </div><div class='panel-footer'>";
                    }
                    if ($swl) {
                        $fileinfo[$sfile]['password'] = $fileinfo[$sfile]['password'] == '' ? $file['password'] : $fileinfo[$sfile]['password'];
                        if ($fileinfo[$sfile]['password'] != '' && $pwdlock && !is_dir($sfile)) {
                            $fhtml .= "<div class='input-group'><input  onkeypress='jQuery(this).removeClass(\"input-error\");' size=10 type='password' value='' id='pass_{$file['ID']}_{$ind}' placeholder='Password' name='pass' class='form-control input-sm inddlps' />";
                        }
                        if ($fileinfo[$sfile]['password'] != '' && $pwdlock && !is_dir($sfile)) {
                            $fhtml .= "<span class='input-group-btn'><button class='inddl btn btn-default btn-sm' file='{$sfile}' rel='" . wpdm_download_url($file) . "&ind=" . $ind . "' pass='******'ID']}_{$ind}'><i class='fa fa-download'></i></button></span></div>";
                        } else {
                            if (!is_dir($sfile)) {
                                $fhtml .= "<a class='btn btn-primary btn-sm btn-block' href='" . wpdm_download_url($file) . "&ind=" . $ind . "'><i class='fa fa-download'></i> &nbsp;" . __("Download", "wpdmpro") . "</a>";
                            } else {
                                $fhtml .= "<a class='btn btn-primary btn-sm btn-block wpdm-indir' href='#'  data-dir='{$cd}/{$ttl}' data-pid='{$file['ID']}'><span class='pull-left'><i class='fa fa-folder'></i></span>&nbsp;" . __("Browse", "wpdmpro") . "</a>";
                            }
                        }
                    }
                    $fhtml .= "</div></div></div>";
                }
            }
            $fhtml .= "</div>";
            echo $fhtml;
        } else {
            die('Session Expired! Please refresh and try again.');
        }
        die;
    }
}